/* ===== Fuente Global ===== */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: #fafafa;
  color: #333;
  
}

/* ===== Navbar ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: #25D366;
  width: 100%;
   margin: 0; 
}

.logo {
  height: 55px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links .active {
  color: #ffd700;
}

/* ===== Sección principal ===== */
.page-section {
  max-width: 1000px;
  margin: 50px auto;
  padding: 0 20px;
}

.page-section h1 {
  font-size: 2rem;
  color: #004d40;
  margin-bottom: 5px;
  border-bottom: 3px solid #25D366;
  display: inline-block;
  padding-bottom: 5px;
}

.page-section h3 {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 25px;
}

/* ===== Lista de profesionales ===== */
.prof-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.prof-item {
  display: flex;
  justify-content: space-between;
  background: white;
  padding: 12px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.prof-item:hover {
  transform: translateY(-3px);
}

.name {
  font-weight: 600;
  color: #333;
}

.career {
  font-style: italic;
  color: #555;
}

/* ===== Footer ===== */
footer {
  background: #25D366;
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 0.9rem;
}
