/* General */
body {
  margin: 0;
  font-family: 'Urbanist', sans-serif;
  color: #333;
}

/* Contenedor general */
.wrapper {
  max-width: 1920px;
  margin: 0 auto;
  overflow-x: hidden; /* evita scroll lateral */
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  background: rgba(255, 255, 255, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  backdrop-filter: blur(5px);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px;
}

/* Logo */
.logo img {
  height: 52px;
}

/* Ajuste responsive del logo */
@media (max-width: 1024px) {
  .logo {
    padding: 10px 20px;
  }

  .logo img {
    height: 40px;   /* más pequeño en tablet */
  }
}

@media (max-width: 600px) {
  .logo {
    padding: 8px 15px;
  }

  .logo img {
    height: 32px;   /* más pequeño en móvil */
  }
}


/* Navegación escritorio */
nav {
  background: #83cccc;
  padding: 10px 40px;
  border-radius: 20px;
  margin-right: 100px;
  max-width: 1920px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 80px;
  margin: 0;
  padding: 0;
}

nav ul li {
  position: relative;
}

nav ul li:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-54%);
  color: #fff;
  font-weight: 300;
  font-size: 39px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: color 0.3s;
  font-size: 22px;
}

nav ul li a:hover {
  color: #e0e0e0;
}

/* Botón hamburguesa */
.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 15px 30px;
  user-select: none;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  nav {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    border-radius: 0;
    margin: 0;
    display: none;
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
    background: rgba(131, 204, 204, 0.8); /* 0.8 = 80% opacidad */

    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  nav ul {
    flex-direction: column;
    gap: 20px;
  }

  nav ul li:not(:last-child)::after {
    content: none; /* Se quitan los separadores en móviles */
  }

  .menu-toggle {
    display: block;
  }

  nav.active {
    display: flex;
  }
}


/* =========================
HERO HISTERECTOMÍA
========================= */

.hero-histerectomia{

    position:relative;

    width:100%;
    height:700px;

    overflow:hidden;
}

/* IMAGEN */

.hero-histerectomia img{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;
}

/* TARJETA */

.hero-histerectomia-card{

    position:absolute;

    right:0;
    bottom:18px;

    width:82%;
    max-width:1150px;

    background:
    rgba(232,178,168,.92);

    border-radius:30px 0 0 0;

    padding:40px 60px;

    overflow:hidden;

    backdrop-filter:blur(4px);
}

/* PATRÓN */

.hero-histerectomia-card::before{

    content:"";

    position:absolute;
    inset:0;

    background-image:
    url("images/patron-gineco.svg");

    background-repeat:no-repeat;

    background-position:right center;

    background-size:700px;

    opacity:.12;
}

/* TITULO */

.hero-histerectomia-card h1{

    position:relative;
    z-index:2;

    margin:0;

    color:white;

    text-align:center;

    font-size:3rem;
    font-weight:700;

    line-height:1.15;
}

/* LINEA INFERIOR */

.hero-histerectomia-line{

    position:absolute;

    left:0;
    bottom:0;

    width:100%;
    height:18px;

    background:#7dc7c8;
}



/* =====================================
   TABLET
===================================== */

@media (max-width: 1024px){

    .hero-histerectomia{
        height:580px;
    }

    .hero-histerectomia-card{

        width:90%;

        padding:30px 35px;

        border-radius:25px 0 0 0;
    }

    .hero-histerectomia-card::before{

        background-size:500px;
    }

    .hero-histerectomia-card h1{

        font-size:2.5rem;

        line-height:1.2;
    }

    .hero-histerectomia-line{
        height:15px;
    }
}


/* =====================================
   MÓVIL
===================================== */

@media (max-width: 768px){

    .hero-histerectomia{
        height:500px;
    }

    .hero-histerectomia img{
        object-position:center;
    }

    .hero-histerectomia-card{

        width:94%;

        right:0;

        bottom:12px;

        padding:22px 20px;

        border-radius:20px 0 0 0;
    }

    .hero-histerectomia-card::before{

        background-size:320px;
        background-position:center;
    }

    .hero-histerectomia-card h1{

        font-size:2rem;

        line-height:1.25;
    }

    .hero-histerectomia-line{
        height:12px;
    }
}


/* =====================================
   MÓVILES PEQUEÑOS
===================================== */

@media (max-width: 480px){

    .hero-histerectomia{
        height:420px;
    }

    .hero-histerectomia-card{

        width:96%;

        padding:18px 15px;

        border-radius:18px 0 0 0;
    }

    .hero-histerectomia-card h1{

        font-size:1.6rem;

        line-height:1.3;
    }

    .hero-histerectomia-line{
        height:10px;
    }
}



/* =========================
HISTERECTOMÍA INFO
========================= */

.histerectomia-info{

    padding:80px 0;

    background:#f7f7f7;
}

.histerectomia-grid{

    width:min(1150px,92%);

    margin:auto;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;
}

/* TARJETA */

.histerectomia-card{

    border-radius:35px;

    overflow:hidden;

    background:white;

    box-shadow:
    0 10px 25px rgba(0,0,0,.08);

    display:flex;
    flex-direction:column;
}

/* IMAGEN */

.card-image{

    height:350px;
}

.card-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;
}

/* BLOQUE TURQUESA */

.card-content{

    background:#82c8c8;

    padding:30px 35px 40px;

    text-align:center;

    flex:1;

    display:flex;
    align-items:center;
    justify-content:center;
}

/* TEXTO */

.card-content p{

    margin:0;

    color:#fff;

    font-size:1.9rem;

    line-height:1.25;

    font-weight:300;
}

.card-content strong{

    font-weight:700;
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 1024px){

    .histerectomia-info{
        padding:70px 0;
    }

    .histerectomia-grid{
        gap:25px;
    }

    .card-image{
        height:280px;
    }

    .card-content{
        padding:25px 25px 30px;
    }

    .card-content p{
        font-size:1.5rem;
        line-height:1.5;
    }
}


/* =====================================
   MÓVIL
===================================== */

@media (max-width: 768px){

    .histerectomia-info{
        padding:50px 0;
    }

    .histerectomia-grid{

        grid-template-columns:1fr;

        gap:25px;
    }

    .histerectomia-card{

        max-width:550px;

        margin:0 auto;

        border-radius:25px;
    }

    .card-image{
        height:240px;
    }

    .card-content{
        padding:22px 20px 25px;
    }

    .card-content p{
        font-size:1.35rem;
        line-height:1.6;
    }
}


/* =====================================
   MÓVILES PEQUEÑOS
===================================== */

@media (max-width: 480px){

    .histerectomia-grid{
        width:94%;
    }

    .card-image{
        height:200px;
    }

    .card-content{
        padding:18px 15px 20px;
    }

    .card-content p{
        font-size:1.15rem;
        line-height:1.7;
    }

    .histerectomia-card{
        border-radius:20px;
    }
}


/* =========================
¿QUÉ ES LA HISTERECTOMÍA?
========================= */

.hyst-definition{

    position:relative;

    background:#eef8f8;

    padding:90px 0;

    overflow:hidden;
}

/* PATRÓN */

.hyst-definition::before{

    content:"";

    position:absolute;
    inset:0;
    background:
    url("images/FONDO-3.jpg");
    background-repeat:repeat;
    background-size:1100px;
    pointer-events:none;
}

/* CONTENEDOR */

.hyst-definition-container{

    width:min(1250px,92%);
    margin:auto;

    display:grid;

    grid-template-columns:1fr 360px;

    gap:80px;

    align-items:center;

    position:relative;
    z-index:2;
}

/* CONTENIDO */

.hyst-definition-content{

    max-width:700px;
}

.hyst-definition-content h2{

    margin:0 0 25px;

    color:#7dc7c8;

    font-size:4rem;
    font-weight:700;

    line-height:1.05;
}

.hyst-definition-content p{

    margin:0;

    color:#666;

    font-size:2rem;
    line-height:1.35;
}

.hyst-definition-content strong{

    font-weight:700;
}

/* IMAGEN */

.hyst-definition-image{

    border-radius:22px;

    overflow:hidden;

    box-shadow:
    0 10px 25px rgba(0,0,0,.08);
}

.hyst-definition-image img{

    width:100%;
    height:100%;

    display:block;

    object-fit:cover;
}



/* =====================================
   TABLET
===================================== */

@media (max-width: 1024px){

    .hyst-definition{
        padding:70px 0;
    }

    .hyst-definition-container{

        grid-template-columns:1fr 300px;

        gap:40px;
    }

    .hyst-definition-content h2{

        font-size:3rem;

        line-height:1.1;

        margin-bottom:20px;
    }

    .hyst-definition-content p{

        font-size:1.6rem;

        line-height:1.6;
    }
}


/* =====================================
   MÓVIL
===================================== */

@media (max-width: 768px){

    .hyst-definition{
        padding:50px 0;
    }

    .hyst-definition-container{

        grid-template-columns:1fr;

        gap:25px;
    }

    .hyst-definition-image{

        max-width:500px;

        margin:0 auto;

        order:-1;
    }

    .hyst-definition-content{

        max-width:100%;

        text-align:center;
    }

    .hyst-definition-content h2{

        font-size:2.2rem;

        line-height:1.2;

        margin-bottom:18px;
    }

    .hyst-definition-content p{

        font-size:1.35rem;

        line-height:1.7;
    }
}


/* =====================================
   MÓVILES PEQUEÑOS
===================================== */

@media (max-width: 480px){

    .hyst-definition-container{
        width:94%;
    }

    .hyst-definition-content h2{

        font-size:1.8rem;
    }

    .hyst-definition-content p{

        font-size:1.15rem;

        line-height:1.8;
    }

    .hyst-definition-image{

        border-radius:18px;
    }
}



/* =========================
CUÁNDO SE RECOMIENDA
========================= */

.hyst-indications{

    position:relative;

    padding:90px 0 0;

    background:#f8efed;

    overflow:hidden;
}

/* PATRÓN */

.hyst-indications::before{

    content:"";

    position:absolute;
    inset:0;
    background:url("images/Fondo-rosa-4.jpg");
    background-repeat:repeat;
    background-size:1100px;
    pointer-events:none;
}

/* CONTENEDOR */

.hyst-indications-container{

    width:min(1250px,92%);
    margin:auto;

    display:grid;

    grid-template-columns:430px 1fr;

    gap:60px;

    align-items:center;

    position:relative;
    z-index:2;
}

/* IMAGEN */

.hyst-image{

    border-radius:35px;

    overflow:hidden;

    box-shadow:
    0 10px 25px rgba(0,0,0,.08);
}

.hyst-image img{

    width:100%;
    height:100%;

    display:block;

    object-fit:cover;
}

/* TITULO */

.hyst-content h2{

    margin:0 0 25px;

    color:#e8aea2;

    font-size:3.5rem;

    line-height:1.05;
}

.hyst-content h2 span{

    display:block;

    font-weight:700;
}

.hyst-content h3{

    color:#666;

    font-size:2rem;

    margin-bottom:35px;
}

/* LISTAS */

.hyst-list{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:40px;
}

.hyst-list ul{

    list-style:none;

    padding:0;
    margin:0;
}

.hyst-list li{

    position:relative;

    padding-left:32px;

    margin-bottom:28px;

    color:#666;

    font-size:1.5rem;

    line-height:1.3;
}

.hyst-list li::before{

    content:"";

    position:absolute;

    left:0;
    top:10px;

    width:14px;
    height:14px;

    border-radius:50%;

    background:#e8aea2;
}

/* FOOTER */

.hyst-footer{

    width:min(900px,75%);

    margin:50px 0 0 auto;

    background:#e8aea2;

    color:white;

    text-align:center;

    padding:22px 35px;

    font-size:1.5rem;
    font-weight:700;

    border-radius:25px 25px 0 0;

    position:relative;
    z-index:2;
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 1024px){

    .hyst-indications{
        padding:70px 0 0;
    }

    .hyst-indications-container{

        grid-template-columns:320px 1fr;

        gap:35px;
    }

    .hyst-content h2{

        font-size:2.8rem;

        line-height:1.1;

        margin-bottom:20px;
    }

    .hyst-content h3{

        font-size:1.6rem;

        margin-bottom:25px;
    }

    .hyst-list{

        gap:25px;
    }

    .hyst-list li{

        font-size:1.25rem;

        margin-bottom:18px;

        line-height:1.5;
    }

    .hyst-footer{

        width:85%;

        font-size:1.3rem;
    }
}


/* =====================================
   MÓVIL
===================================== */

@media (max-width: 768px){

    .hyst-indications{
        padding:50px 0 0;
    }

    .hyst-indications-container{

        grid-template-columns:1fr;

        gap:30px;
    }

    .hyst-image{

        max-width:500px;

        margin:0 auto;
    }

    .hyst-content{

        text-align:center;
    }

    .hyst-content h2{

        font-size:2.2rem;

        line-height:1.2;

        margin-bottom:15px;
    }

    .hyst-content h3{

        font-size:1.3rem;

        line-height:1.6;

        margin-bottom:25px;
    }

    .hyst-list{

        grid-template-columns:1fr;

        gap:0;

        text-align:left;
    }

    .hyst-list li{

        font-size:1.2rem;

        line-height:1.6;

        margin-bottom:15px;

        padding-left:24px;
    }

    .hyst-list li::before{

        width:10px;
        height:10px;

        top:8px;
    }

    .hyst-footer{

        width:100%;

        margin-top:30px;

        padding:18px 20px;

        font-size:1.15rem;

        border-radius:20px 20px 0 0;
    }
}


/* =====================================
   MÓVILES PEQUEÑOS
===================================== */

@media (max-width: 480px){

    .hyst-indications-container{
        width:94%;
    }

    .hyst-content h2{

        font-size:1.8rem;
    }

    .hyst-content h3{

        font-size:1.15rem;
    }

    .hyst-list li{

        font-size:1.05rem;

        line-height:1.7;
    }

    .hyst-image{

        border-radius:20px;
    }

    .hyst-footer{
        font-size:1rem;
        padding:15px;
		max-width: 350px;
		margin: auto;
    }
}


/* =========================
TIPOS DE HISTERECTOMÍA
========================= */

.types-hyst{

    padding:90px 0;
}

.types-container{

    width:min(1250px,92%);
    margin:auto;
}

/* TITULO */

.types-title{

    width:650px;
    max-width:100%;

    margin:0 auto 60px;

    background:#7ec7c8;

    border-radius:35px;

    padding:24px;
}

.types-title h2{

    margin:0;

    color:white;

    text-align:center;

    font-size:3rem;
    font-weight:700;
}

/* GRID */

.types-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;
}

/* TARJETA */

.type-card{

    background:#fff;

    border-radius:28px;

    padding:35px 30px 40px;

    text-align:center;

    min-height:650px;

    display:flex;
    flex-direction:column;

    box-shadow:
    0 8px 20px rgba(0,0,0,.10);

    transition:.5s ease;
}

/* ACTIVA */

.type-card.active{

    background:#7ec7c8;

    transform:translateY(-5px);
}

/* TITULO */

.type-card h3{

    color:#7ec7c8;

    font-size:2rem;
    font-weight:700;

    margin-bottom:30px;

    min-height:70px;

    transition:.5s;
}

.type-card.active h3{

    color:white;
}

/* TEXTO */

.type-card p{

    color:#666;

    font-size:1.45rem;

    line-height:1.35;

    margin-bottom:25px;

    transition:.5s;
}

.type-card.active p{

    color:white;
}

/* ICONO */

.type-icon{

    width:180px;
    height:180px;

    margin:0 auto 35px;

    border-radius:50%;

    background:#7ec7c8;

    position:relative;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.5s ease;
}

/* ACTIVO */

.type-card.active .type-icon{

    background:white;
}

/* DOS ICONOS */

.type-icon img{

    position:absolute;

    width:180px;
    height:180px;

    object-fit:contain;

    transition:.4s ease;
}

/* INACTIVO */

.icon-green{

    opacity:0;
}

.icon-white{

    opacity:1;
}

/* ACTIVO */

.type-card.active .icon-green{

    opacity:1;
}

.type-card.active .icon-white{

    opacity:0;
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 1024px){

    .types-hyst{
        padding:70px 0;
    }

    .types-title{
        margin-bottom:40px;
    }

    .types-title h2{
        font-size:2.5rem;
    }

    .types-grid{
        gap:20px;
    }

    .type-card{
        min-height:auto;
        padding:25px 20px 30px;
    }

    .type-card h3{
        font-size:1.6rem;
        min-height:60px;
        margin-bottom:20px;
    }

    .type-card p{
        font-size:1.2rem;
        line-height:1.6;
    }

    .type-icon{
        width:130px;
        height:130px;
        margin-bottom:25px;
    }

    .type-icon img{
        width:130px;
        height:130px;
    }
}


/* =====================================
   MÓVIL
===================================== */

@media (max-width: 768px){

    .types-hyst{
        padding:50px 0;
		max-width: 360px;
    }

    .types-title{
        margin-bottom:30px;
        padding:18px;
        border-radius:20px;
    }

    .types-title h2{
        font-size:2rem;
        line-height:1.2;
    }

    .types-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .type-card{
        max-width:550px;
        margin:0 auto;
        min-height:auto;
        border-radius:22px;
        padding:25px 20px;
    }

    .type-card.active{
        transform:none;
    }

    .type-card h3{
        font-size:1.5rem;
        min-height:auto;
        margin-bottom:15px;
    }

    .type-card p{
        font-size:1.15rem;
        line-height:1.7;
        margin-bottom:15px;
    }

    .type-icon{
        width:110px;
        height:110px;
        margin-bottom:20px;
    }

    .type-icon img{
        width:110px;
        height:110px;
    }
}


/* =====================================
   MÓVILES PEQUEÑOS
===================================== */

@media (max-width: 480px){

    .types-container{
        width:94%;
    }

    .types-title h2{
        font-size:1.7rem;
    }

    .type-card{
        padding:20px 15px;
        border-radius:18px;
    }

    .type-card h3{
        font-size:1.3rem;
    }

    .type-card p{
        font-size:1rem;
        line-height:1.8;
    }

    .type-icon{
        width:90px;
        height:90px;
    }

    .type-icon img{
        width:90px;
        height:90px;
    }
}



/* =========================
PROCEDIMIENTO QUIRÚRGICO
========================= */

.procedure-section{
    padding:100px 20px;
    position:relative;

    /* INSERTA AQUÍ TU FONDO */
    background-image:url("images/FONDO-5.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.procedure-container{
    max-width:1100px;
    margin:auto;
}

.procedure-title{
    display:flex;
    justify-content:center;
    margin-bottom:60px;
}

.procedure-title h2{
    background:#84c8c7;
    color:#fff;
    padding:25px 60px;
    border-radius:0 0 30px 30px;
    font-size:2rem;
    font-weight:700;
    text-align:center;
}

.procedure-row{
    display:flex;
    align-items:center;
    gap:25px;
    margin-bottom:28px;
}

.procedure-row.right{
    justify-content:center;
}

.procedure-row.left{
    justify-content:center;
}

.procedure-card{
    background:#f7f7f7;
    max-width:500px;
    padding:28px 30px;
    border-radius:18px;
    font-size:1.25rem;
    line-height:1.5;
    color:#666;

    box-shadow:
    0 4px 10px rgba(0,0,0,.08);
}

.procedure-card strong{
    color:#5b5b5b;
    font-weight:700;
}

.procedure-icon{
    width:110px;
    height:110px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.35);
    flex-shrink:0;
}

.procedure-icon img{
    width:120px;
    height:auto;
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 1024px){

    .procedure-section{
        padding:80px 20px;
    }

    .procedure-title h2{
        font-size:1.8rem;
        padding:22px 45px;
    }

    .procedure-card{
        max-width:420px;
        padding:24px;
        font-size:1.1rem;
        line-height:1.6;
    }

    .procedure-icon{
        width:90px;
        height:90px;
    }

    .procedure-icon img{
        width:95px;
    }
}


/* =====================================
   MÓVIL
===================================== */

@media (max-width: 768px){

    .procedure-section{
        padding:60px 15px;
    }

    .procedure-title{
        margin-bottom:35px;
    }

    .procedure-title h2{
        width:100%;
        font-size:1.4rem;
        line-height:1.3;
        padding:18px;
        border-radius:18px;
    }

    .procedure-row{
        display:flex;
        align-items:center;
        gap:12px;
        margin-bottom:20px;
    }

    /* Mantener intercalado */
    .procedure-row.left{
        justify-content:flex-start;
    }

    .procedure-row.right{
        justify-content:flex-end;
    }

    .procedure-card{
        max-width:calc(100% - 90px);
        padding:18px;
        font-size:1rem;
        line-height:1.7;
    }

    .procedure-icon{
        width:70px;
        height:70px;
        min-width:70px;
    }

    .procedure-icon img{
        width:75px;
    }
}


/* =====================================
   MÓVILES PEQUEÑOS
===================================== */

@media (max-width: 480px){

    .procedure-row{
        gap:10px;
    }

    .procedure-card{
        max-width:calc(100% - 75px);
        padding:15px;
        font-size:.95rem;
        line-height:1.75;
    }

    .procedure-icon{
        width:60px;
        height:60px;
        min-width:60px;
    }

    .procedure-icon img{
        width:65px;
    }
}



/* ===================================
ANTES Y DESPUÉS DE LA CIRUGÍA
=================================== */

.surgery-info{
    padding:90px 20px;
    position:relative;

    background-image:url("images/FONDO-43.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    overflow:hidden;
}

.surgery-info .container{
    max-width:1200px;
    margin:auto;
}

/* TITULO */

.main-title{
    width:fit-content;
    margin:0 auto 60px;

    background:#e8afa5;
    color:#fff;

    padding:18px 45px;
    border-radius:20px;

    font-size:2rem;
    text-align:center;
    font-weight:300;
}

.main-title strong{
    font-weight:700;
}

/* ETIQUETAS */

.section-label{
    width:fit-content;
    margin:0 auto 40px;

    background:#82c9ca;
    color:#fff;

    padding:14px 35px;
    border-radius:18px;

    font-size:1.4rem;
    font-weight:700;
}

/* TIMELINE */

.timeline{
    position:relative;

    display:flex;
    justify-content:center;
    align-items:flex-start;
    gap:28px;

    margin-bottom:80px;
}

.timeline-line{
    position:absolute;

    width:75%;
    height:8px;

    background:#efc1b8;

    top:95px;
    left:50%;

    transform:translateX(-50%);
    z-index:1;
}

/* TARJETAS */

.info-card{
    width:240px;

    background:#fff;
    border-radius:20px;

    overflow:hidden;

    position:relative;
    z-index:2;

    box-shadow:
    0 5px 15px rgba(0,0,0,.08);
}

.info-card img{
    width:100%;
    height:150px;
    object-fit:cover;
    display:block;
}

.info-text{
    padding:16px;

    text-align:center;

    font-size:1.05rem;
    line-height:1.3;
    font-weight:600;
    color:#666;

    min-height:95px;

    display:flex;
    align-items:center;
    justify-content:center;
}

/* DESTACADAS */

.info-card.featured{
    background:#e8afa5;
}

.info-card.featured .info-text{
    color:#fff;
}

/* MENSAJE FINAL */

.bottom-message{
    max-width:850px;

    margin:20px auto 0;

    background:#e8afa5;
    color:#fff;

    text-align:center;

    padding:22px 35px;

    border-radius:22px 22px 0 0;

    font-size:1.35rem;
    font-weight:700;
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 1024px){

    .surgery-info{
        padding:70px 20px;
    }

    .main-title{
        font-size:1.7rem;
        margin-bottom:45px;
    }

    .section-label{
        font-size:1.2rem;
        margin-bottom:30px;
    }

    .timeline{
        gap:15px;
    }

    .timeline-line{
        width:80%;
        top:85px;
    }

    .info-card{
        width:190px;
    }

    .info-card img{
        height:120px;
    }

    .info-text{
        font-size:.95rem;
        min-height:85px;
    }

    .bottom-message{
        font-size:1.2rem;
    }
}


/* =====================================
   MÓVIL
===================================== */

@media (max-width: 768px){

    .surgery-info{
        padding:50px 15px;
    }

    .main-title{
        width:100%;
        font-size:1.4rem;
        padding:16px 20px;
        margin-bottom:35px;
    }

    .section-label{
        font-size:1.1rem;
        padding:12px 20px;
        margin-bottom:25px;
    }

    .timeline{

        flex-direction:column;

        align-items:center;

        gap:20px;

        margin-bottom:40px;
    }

    /* Línea vertical */

    .timeline-line{

        width:6px;
        height:100%;

        left:50%;
        top:0;

        transform:translateX(-50%);
    }

    .info-card{

        width:100%;
        max-width:420px;
    }

    .info-card img{
        height:180px;
    }

    .info-text{
        min-height:auto;
        padding:18px;
        font-size:1rem;
        line-height:1.6;
    }

    .bottom-message{
        padding:18px 20px;
        font-size:1.1rem;
        border-radius:18px 18px 0 0;
    }
}


/* =====================================
   MÓVILES PEQUEÑOS
===================================== */

@media (max-width: 480px){

    .main-title{
        font-size:1.2rem;
        padding: 15px 10px;
		max-width: 350px;
    }

    .section-label{
        font-size:1rem;
    }

    .info-card img{
        height:150px;
    }

    .info-text{
        font-size:.95rem;
        line-height:1.7;
    }

    .bottom-message{
        font-size:1rem;
        padding:15px;
    }
}



/*=====================================
EFECTOS SECUNDARIOS Y RECUPERACIÓN
=====================================*/

.recovery-section{
    padding:90px 20px;
}

.recovery-container{
    max-width:1200px;
    margin:auto;

    display:flex;
    align-items:center;
    gap:0px;
}

.recovery-image{
    flex:0 0 420px;
}

.recovery-image img{
    width:100%;
    display:block;

    border-radius:25px;

    box-shadow:
    0 12px 30px rgba(0,0,0,.08);
}

.recovery-content{
    flex:1;
}

.recovery-content h2{
    font-size:2.5rem;
    line-height:1.05;
    color:#6b6b6b;
    font-weight:700;
    margin-bottom:20px;
	margin-left: 30px;
}

.recovery-subtitle{
    color:#7a7a7a;
    font-size:1.35rem;
    margin-bottom:25px;
	margin-left: 30px;
}

.recovery-item{
    background:#7fc8c8;
    color:#fff;

    padding:16px 22px;
    margin-bottom:20px;

    border-radius:0 20px 20px 0;

    font-size:1.15rem;
    line-height:1.4;
    font-weight:500;

    width:100%;
    max-width:650px;

    box-shadow:
    0 4px 12px rgba(0,0,0,.06);
}

.recovery-message{
    margin-top:35px;
	margin-left: 30px;
	text-align: right;
    font-size:1.45rem;
    line-height:1.4;
    color:#777;
}

.recovery-message span{
    color:#7fc8c8;
    font-weight:700;
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 1024px){

    .recovery-section{
        padding:70px 20px;
    }

    .recovery-container{
        gap:30px;
    }

    .recovery-image{
        flex:0 0 320px;
    }

    .recovery-content h2{
        font-size:2rem;
        margin-left:0;
    }

    .recovery-subtitle{
        font-size:1.2rem;
        margin-left:0;
    }

    .recovery-item{
        font-size:1rem;
        padding:14px 18px;
    }

    .recovery-message{
        margin-left:0;
        font-size:1.2rem;
    }
}


/* =====================================
   MÓVIL
===================================== */

@media (max-width: 768px){

    .recovery-section{
        padding:50px 15px;
    }

    .recovery-container{

        flex-direction:column;

        gap:25px;
    }

    .recovery-image{
        flex:none;
        width:100%;
        max-width:450px;
    }

    .recovery-content{
        width:100%;
    }

    .recovery-content h2{

        text-align:center;

        font-size:2rem;

        line-height:1.2;

        margin-left:0;
        margin-bottom:15px;
    }

    .recovery-subtitle{

        text-align:center;

        margin-left:0;

        font-size:1.15rem;

        line-height:1.6;
    }

    .recovery-item{

        max-width:100%;

        padding:15px;

        font-size:1rem;

        line-height:1.6;

        border-radius:18px;
    }

    .recovery-message{

        margin-left:0;

        margin-top:25px;

        text-align:center;

        font-size:1.15rem;

        line-height:1.6;
    }
}


/* =====================================
   MÓVILES PEQUEÑOS
===================================== */

@media (max-width: 480px){

    .recovery-content h2{
        font-size:1.7rem;
    }

    .recovery-subtitle{
        font-size:1rem;
    }

    .recovery-item{
        font-size:.95rem;
        padding: 14px 0px 14px 10px;
    }

    .recovery-message{
        font-size:1rem;
    }

    .recovery-image img{
        border-radius:20px;
    }
}



/*====================================
ALTERNATIVAS A LA HISTERECTOMÍA
====================================*/

.alternatives-section{
    padding:0;
    position:relative;

    /* Fondo decorativo */
    background-image:url("images/FONDO-3.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.alternatives-container{
    max-width:1200px;
    margin:auto;
}

/* TITULO */

.alternatives-title{
    display:flex;
    justify-content:center;
    margin-bottom:-40px;
}

.alternatives-title h2{
    background:#7ec8c8;
    color:#fff;
    padding:24px 60px;
    border-radius:0 0 30px 30px;
	margin-top: 0;
    font-size:2.2rem;
    font-weight:700;
    text-align:center;
}

/* INTRO */

.alternatives-intro{
    text-align:center;

    font-size:1.4rem;
    color:#666;

    margin-bottom:45px;
}

.alternatives-intro strong{
    font-weight:700;
}

/* GRID */

.alternatives-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;

    max-width:900px;
    margin:auto;
}

/* TARJETAS */

.alternative-card{
	background: #ffffff;
    border-radius:16px;
    padding:35px 30px;
    text-align:center;
    min-height:250px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    box-shadow:
    0 4px 12px rgba(0,0,0,.08);
    transition:.3s;
}

.alternative-card:hover{
    transform:translateY(-5px);
}

.alternative-card img{
    width:110px;
    height:auto;
    margin-bottom:-15px;
}

.alternative-card h3{
    color:#666;
    font-size:1.7rem;
    font-weight:700;
    margin-bottom:-20px;
}

.alternative-card p{
    color:#777;
    font-size:1.35rem;
    line-height:1.3;
}

/* FOOTER */

.alternatives-footer{
    max-width:760px;

    margin:50px auto 0;

    background:#7ec8c8;
    color:#fff;

    text-align:center;

    padding:20px 30px;

    font-size:1.6rem;
    font-weight:700;

    border-radius:20px 20px 0 0;
}



/* =====================================
   TABLET
===================================== */

@media (max-width: 1024px){

    .alternatives-title h2{
        font-size:1.9rem;
        padding:20px 45px;
    }

    .alternatives-intro{
        font-size:1.2rem;
        margin-bottom:35px;
    }

    .alternatives-grid{
        gap:20px;
    }

    .alternative-card{
        padding:25px 20px;
        min-height:220px;
    }

    .alternative-card img{
        width:90px;
    }

    .alternative-card h3{
        font-size:1.4rem;
        margin-bottom:10px;
    }

    .alternative-card p{
        font-size:1.1rem;
        line-height:1.5;
    }

    .alternatives-footer{
        font-size:1.3rem;
    }
}


/* =====================================
   MÓVIL
===================================== */

@media (max-width: 768px){

    .alternatives-section{
        padding-bottom:0;
    }

    .alternatives-title{
        margin-bottom:20px;
    }

    .alternatives-title h2{
        width:100%;
        font-size:1.6rem;
        padding:18px 20px;
        border-radius:0 0 20px 20px;
    }

    .alternatives-intro{
        font-size:1.1rem;
        line-height:1.6;
        padding:0 10px;
        margin-bottom:25px;
    }

    .alternatives-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .alternative-card{
        min-height:auto;
        padding:25px 20px;
    }

    .alternative-card:hover{
        transform:none;
    }

    .alternative-card img{
        width:80px;
        margin-bottom:10px;
    }

    .alternative-card h3{
        font-size:1.3rem;
        margin-bottom:10px;
    }

    .alternative-card p{
        font-size:1rem;
        line-height:1.6;
    }

    .alternatives-footer{
        margin-top:30px;
        font-size:1.1rem;
        padding:18px 20px;
        border-radius:18px 18px 0 0;
    }
}


/* =====================================
   MÓVILES PEQUEÑOS
===================================== */

@media (max-width: 480px){

    .alternatives-container{
        width:94%;
    }

    .alternatives-title h2{
        font-size:1.3rem;
    }

    .alternative-card{
        padding:20px 15px;
    }

    .alternative-card img{
        width:70px;
    }

    .alternative-card h3{
        font-size:1.15rem;
    }

    .alternative-card p{
        font-size:.95rem;
        line-height:1.7;
    }

    .alternatives-footer{
        font-size:1rem;
        padding:15px;
    }
}



/*====================================
HISTERECTOMÍA Y SALUD HORMONAL
====================================*/

.hormonal-section{
    background:#f4ebe8;
}

/*=========================
BLOQUE SUPERIOR
=========================*/

.hormonal-top{
    display:grid;
    grid-template-columns:1fr 420px;
    align-items:center;
	max-width: 1500px;
	margin: auto;
    background:#f4ebe8;
    overflow:hidden;
}

.hormonal-text{
    padding:70px 8%;
}

.hormonal-text h2{
    color:#e7b1a7;
    font-size:3rem;
    font-weight:700;
    margin-bottom:25px;
    line-height:1.1;
}

.hormonal-text p{
    font-size:1.35rem;
    line-height:1.55;
    color:#666;
}

.hormonal-text strong{
    color:#666;
    font-weight:700;
}

.hormonal-image{
    height:100%;
}

.hormonal-image img{
    width:100%;
    height:100%;
    object-fit:cover;

    border-bottom-left-radius:50px;
}



/*=========================
AGENDA TU VALORACIÓN
=========================*/

.appointment-section{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:420px 1fr;
    gap:50px;

    align-items:center;

    padding:0px 20px 40px;
}

.appointment-image img{
    width:100%;
    display:block;

    border-radius:28px;
    background:#efefef;
}

.appointment-content h2{
    font-size:3rem;
    line-height:1.1;
    margin-bottom:20px;

    color:#7ec7c8;
    font-weight:700;
}

.appointment-content h2 span{
    display:block;
}

.appointment-content p{
    font-size:1.4rem;
    line-height:1.5;
    color:#666;
    margin-bottom:18px;
}

.appointment-highlight{
    font-weight:700;
}

.appointment-button{
    text-align:center;
    padding-bottom:60px;
}

.appointment-button a{
    display:inline-block;

    background:#7ec7c8;
    color:#fff;
    text-decoration:none;

    padding:22px 55px;

    border-radius:30px;

    font-size:1.7rem;
    font-weight:700;

    transition:.3s;
}

.appointment-button a:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 25px rgba(126,199,200,.35);
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 1024px){

    /* SALUD HORMONAL */

    .hormonal-top{

        grid-template-columns:1fr 320px;
    }

    .hormonal-text{

        padding:50px 40px;
    }

    .hormonal-text h2{

        font-size:2.4rem;

        line-height:1.15;

        margin-bottom:20px;
    }

    .hormonal-text p{

        font-size:1.15rem;

        line-height:1.7;
    }

    .hormonal-image img{

        border-bottom-left-radius:35px;
    }

    /* AGENDA TU VALORACIÓN */

    .appointment-section{

        grid-template-columns:320px 1fr;

        gap:35px;

        padding:60px 20px 30px;
    }

    .appointment-content h2{

        font-size:2.4rem;
    }

    .appointment-content p{

        font-size:1.2rem;

        line-height:1.7;
    }

    .appointment-button a{

        font-size:1.4rem;

        padding:18px 40px;
    }
}


/* =====================================
   MÓVIL
===================================== */

@media (max-width: 768px){

    /* SALUD HORMONAL */

    .hormonal-top{

        grid-template-columns:1fr;
    }

    .hormonal-image{

        order:-1;
    }

    .hormonal-image img{

        height:320px;

        border-bottom-left-radius:0;

        border-radius:0 0 25px 25px;
    }

    .hormonal-text{

        padding:35px 20px 40px;

        text-align:center;
    }

    .hormonal-text h2{

        font-size:2rem;

        line-height:1.2;
    }

    .hormonal-text p{

        font-size:1.05rem;

        line-height:1.8;
    }

    /* AGENDA TU VALORACIÓN */

    .appointment-section{

        grid-template-columns:1fr;

        gap:25px;

        padding:50px 15px 25px;
    }

    .appointment-image{

        max-width:450px;

        margin:0 auto;
    }

    .appointment-content{

        text-align:center;
    }

    .appointment-content h2{

        font-size:2rem;

        line-height:1.2;

        margin-bottom:15px;
    }

    .appointment-content p{

        font-size:1.05rem;

        line-height:1.8;
    }

    .appointment-button{

        padding-bottom:40px;
		margin: 0 50px 0 20px;
    }

    .appointment-button a{

        width:100%;
        max-width:420px;

        font-size:1.2rem;

        padding:18px 20px;

        border-radius:20px;
    }

    .appointment-button a:hover{
        transform:none;
    }
}


/* =====================================
   MÓVILES PEQUEÑOS
===================================== */

@media (max-width: 480px){

    .hormonal-text{

        padding:30px 15px;
    }

    .hormonal-text h2{

        font-size:1.7rem;
    }

    .hormonal-text p{

        font-size:.95rem;

        line-height:1.9;
    }

    .hormonal-image img{
        height:250px;
        border-radius:0 0 20px 20px;
		margin-top: 25px;
    }

    .appointment-content h2{

        font-size:1.7rem;
    }

    .appointment-content p{

        font-size:.95rem;

        line-height:1.9;
    }

    .appointment-button a{

        font-size:1.05rem;

        padding:16px;
    }
}