/* ===============================
   HERO DEL DOCTOR (BANNER)
   COMPLETAMENTE RESPONSIVE
   =============================== */

.doctor-hero-full {
  background: linear-gradient(135deg, #1f4dab 0%, #4a90e2 100%);
  width: 100%;
  padding: 80px 20px 60px;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: left;
}

/* CONTENEDOR GRID PRINCIPAL */
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 50px;
  align-items: center;
}

/* FOTO DEL DOCTOR */
.doctor-avatar-hero {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

/* ANILLO ANIMADO PULSE */
.doctor-avatar-hero::before {
  content: '';
  position: absolute;
  inset: -12px;
  background: linear-gradient(45deg, rgba(255,255,255,0.3), rgba(255,255,255,0.05));
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
  z-index: 0;
}

/* ANIMACIÓN */
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.08); opacity: 0.8; }
}

/* FOTO REDONDA */
.doctor-avatar-hero img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 15px 50px rgba(0,0,0,0.35);
  position: relative;
  z-index: 1;
  display: block;
  transition: transform 0.4s ease;
}

.doctor-avatar-hero:hover img {
  transform: scale(1.05);
}

/* TEXTO */
.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

.hero-specialties {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.95);
}

/* BOTONES */
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.hero-btn-wa {
  background: #25D366;
  color: #fff;
}

.hero-btn-outline {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}

.hero-btn-wa:hover,
.hero-btn-outline:hover {
  background: #fff;
  color: #1f4dab;
}

/* ===============================
   RESPONSIVE — TABLET
   =============================== */

@media (max-width: 992px) {
  .doctor-hero-full {
    text-align: center;
    padding: 70px 20px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-content h1 {
    font-size: 2.6rem;
  }

  .doctor-avatar-hero {
    width: 240px;
    height: 240px;
  }
}

/* ===============================
   RESPONSIVE — CELULAR
   =============================== */

@media (max-width: 600px) {
  .doctor-hero-full {
    padding: 60px 20px;
  }

  .doctor-avatar-hero {
    width: 200px;
    height: 200px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-specialties {
    font-size: 1.1rem;
    margin-bottom: 25px;
  }

  .hero-btn {
    padding: 12px 22px;
    font-size: 0.95rem;
  }
}
/* CONTENEDOR GENERAL ELEGANTE */
.doctor-content-wrapper.elegant {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 45px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  font-size: 1.15rem;
  line-height: 1.75;
  color: #2a2a2a;
}

/* TITULOS */
.doctor-content-wrapper.elegant h3 {
  margin-top: 40px;
  margin-bottom: 15px;
  font-size: 1.8rem;
  color: #1f4dab;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ÍCONOS */
.doctor-content-wrapper.elegant h3 i {
  font-size: 1.3rem;
  color: #1f4dab;
}

/* LISTAS PREMIUM */
.styled-list {
  margin: 10px 0 30px 0;
  padding-left: 25px;
}

.styled-list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 10px;
}

.styled-list li::before {
  content: "•";
  position: absolute;
  left: -12px;
  top: 0;
  color: #1f4dab;
  font-weight: bold;
}

/* RESPONSIVE MÓVIL */
@media (max-width: 600px) {
  .doctor-content-wrapper.elegant {
    padding: 25px 20px !important; /* Evita que toque los bordes */
    font-size: 1.05rem;
  }

  .doctor-content-wrapper.elegant h3 {
    font-size: 1.5rem;
  }

  .styled-list {
    padding-left: 20px;
  }
}
/* ===============================
   CONTENEDOR PRINCIPAL
   =============================== */
.content-main {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    line-height: 1.7;
    font-size: 1.1rem;
    color: #1a1a1a;
}

/* Más margen en móvil */
@media (max-width: 768px) {
    .content-main {
        padding: 0 28px;
        font-size: 1.05rem;
    }
}

/* ===============================
   TÍTULOS
   =============================== */
.content-main h3 {
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #0d2b45; /* azul profundo elegante */
}

@media (max-width: 768px) {
    .content-main h3 {
        font-size: 1.35rem;
        margin-top: 32px;
    }
}

/* ===============================
   PÁRRAFOS
   =============================== */
.content-main p {
    margin-bottom: 18px;
}

/* ===============================
   LISTAS
   =============================== */
.content-main ul {
    margin-left: 20px;
    padding-left: 10px;
    margin-bottom: 25px;
}

.content-main ul li {
    margin-bottom: 10px;
    padding-left: 4px;
}

/* puntos más elegantes */
.content-main ul li::marker {
    color: #00a58c; /* verde clínico elegante */
    font-size: 1.2rem;
}

