/* 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 MIOMAS
========================= */

.hero-miomas{

    position:relative;

    width:100%;
    height:650px;

    overflow:hidden;
}

/* IMAGEN */

.hero-miomas img{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;
}

/* TARJETA */

.hero-miomas-card{

    position:absolute;

    left:50%;
    bottom:18px;

    transform:translateX(-50%);

    width:min(1050px,85%);

    background:
    rgba(125,199,200,.88);

    border-radius:28px 28px 0 0;

    padding:35px 40px;

    text-align:center;

    overflow:hidden;

    backdrop-filter:blur(4px);
}

/* PATRÓN DECORATIVO */

.hero-miomas-card::before{

    content:"";

    position:absolute;
    inset:0;

    background:
    url("images/patron-gineco.svg");

    background-repeat:no-repeat;

    background-position:center;

    background-size:contain;

    opacity:.12;
}

/* TITULO */

.hero-miomas-card h1{

    position:relative;
    z-index:2;

    margin:0;

    color:#fff;

    font-size:4rem;
    font-weight:300;

    line-height:1.15;
}

.hero-miomas-card strong{
    font-weight:700;
}

/* BARRA INFERIOR */

.hero-miomas-line{

    position:absolute;

    left:0;
    bottom:0;

    width:100%;
    height:20px;

    background:#7dc7c8;
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 1024px){

    .hero-miomas{
        height:550px;
    }

    .hero-miomas-card{

        width:90%;

        padding:30px;

        border-radius:24px 24px 0 0;
    }

    .hero-miomas-card h1{

        font-size:3.2rem;
        line-height:1.2;
    }

    .hero-miomas-line{
        height:16px;
    }
}


/* =====================================
   MÓVIL
===================================== */

@media (max-width: 768px){

    .hero-miomas{
        height:500px;
    }

    .hero-miomas img{
        object-position:center;
    }

    .hero-miomas-card{

        width:92%;

        bottom:15px;

        padding:22px 20px;

        border-radius:20px 20px 0 0;
    }

    .hero-miomas-card h1{

        font-size:2.3rem;
        line-height:1.25;
    }

    .hero-miomas-line{
        height:12px;
    }
}


/* =====================================
   MÓVILES PEQUEÑOS
===================================== */

@media (max-width: 480px){

    .hero-miomas{
        height:420px;
    }

    .hero-miomas-card{

        width:94%;

        padding:18px 15px;

        border-radius:18px 18px 0 0;
    }

    .hero-miomas-card h1{

        font-size:1.8rem;
        line-height:1.3;
    }

    .hero-miomas-line{
        height:10px;
    }
}


/* =========================
INTRO MIOMAS
========================= */

.miomas-intro{

    padding:90px 0;
}

.miomas-intro-container{

    width:min(1250px,92%);
    margin:auto;

    position:relative;

    min-height:520px;
}

/* IMAGEN */

.miomas-image{

    width:520px;
    height:520px;
    border-radius:35px;
    overflow:hidden;
    box-shadow:
    0 10px 25px rgba(0,0,0,.10);
}

.miomas-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;
}

/* TARJETA */

.miomas-card{

    position:absolute;

    right:0;
    top:25px;

    width:65%;

    background:white;

    border-radius:35px;

    padding:35px 40px;

    box-shadow:
    0 8px 20px rgba(0,0,0,.08);
}

.miomas-card p{

    color:#6d6d6d;

    font-size:2rem;
    line-height:1.3;

    margin:0 0 28px;
}

.miomas-card p:last-child{
    margin-bottom:0;
}

.miomas-card span{

    color:#86cfd0;
    font-weight:700;
}

.miomas-card strong{

    font-weight:700;
}

/* ICONOS */

.miomas-icons{

    width:min(700px,90%);
	margin: -80px 0px 0px 800px;
    display:flex;
    justify-content:center;
    gap:80px;
}

.miomas-icons img{

    width:95px;
    height:95px;

    object-fit:contain;
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 1024px){

    .miomas-intro{
        padding:70px 0;
    }

    .miomas-intro-container{
        width:92%;
        min-height:auto;
    }

    .miomas-image{
        width:420px;
        height:420px;
    }

    .miomas-card{

        width:60%;

        top:20px;

        padding:30px;
    }

    .miomas-card p{
        font-size:1.6rem;
        line-height:1.6;
    }

    .miomas-icons{

        width:100%;

        margin:40px auto 0;

        gap:50px;
    }

    .miomas-icons img{
        width:80px;
        height:80px;
    }
}


/* =====================================
   MÓVIL
===================================== */

@media (max-width: 768px){

    .miomas-intro{
        padding:50px 0;
    }

    .miomas-intro-container{

        display:flex;
        flex-direction:column;

        align-items:center;

        min-height:auto;
    }

    .miomas-image{

        width:100%;
        max-width:500px;

        height:350px;

        border-radius:25px;
    }

    .miomas-card{

        position:relative;

        width:100%;

        top:auto;
        right:auto;

        margin-top:25px;

        border-radius:25px;

        padding:25px 22px;
    }

    .miomas-card p{

        font-size:1.45rem;
        line-height:1.7;

        margin-bottom:18px;
    }

    .miomas-icons{

        width:100%;

        margin:30px auto 0;

        gap:25px;

        flex-wrap:wrap;
    }

    .miomas-icons img{

        width:65px;
        height:65px;
    }
}


/* =====================================
   MÓVILES PEQUEÑOS
===================================== */

@media (max-width: 480px){

    .miomas-image{
        height:280px;
    }

    .miomas-card{
        padding:20px 18px;
    }

    .miomas-card p{
        font-size:1.3rem;
        line-height:1.75;
    }

    .miomas-icons{
        gap:18px;
    }

    .miomas-icons img{
        width:55px;
        height:55px;
    }
}


/* =========================
¿QUÉ SON LOS MIOMAS?
========================= */

.fibroids-info{

    position:relative;

    background:#f7efec;

    padding:80px 0;

    overflow:hidden;
}

/* PATRÓN */

.fibroids-info::before{

    content:"";

    position:absolute;
    inset:0;

    background:url("images/Fondo-rosa-2.jpg");

    background-repeat:repeat;

    background-size:900px;


    pointer-events:none;
}

/* CONTENEDOR */

.fibroids-container{

    width:min(1250px,92%);

    margin:auto;

    display:grid;

    grid-template-columns:380px 1fr;

    gap:40px;

    align-items:center;

    position:relative;
    z-index:2;
}

/* IMAGEN */

.fibroids-image{
    border-radius: 35px 35px 0 0;
    background: #f7efec;
    overflow: hidden;
    margin-bottom: -218px;
    width: 420px;

    /* Sombra */
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.fibroids-image img{

    width:100%;

    display:block;
}

/* CONTENIDO */

.fibroids-content h2{

    margin:0 0 25px;

    color:#e7aea2;

    font-size:3rem;

    font-weight:700;

    line-height:1.1;
}

.fibroids-content p{

    color:#666;

    font-size:2rem;

    line-height:1.3;

    margin:0 18px 35px;
}

.fibroids-content strong{

    font-weight:700;
}

/* FRANJA ROSA */

.fibroids-note{

    background:#e7aea2;

    color:white;

    font-size:1.6rem;

    line-height:1.3;

    padding:20px 40px;

    border-radius:0 40px 40px 0;

    width:100%;

    box-sizing:border-box;
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 1024px){

    .fibroids-info{
        padding:70px 0;
    }

    .fibroids-container{

        grid-template-columns:320px 1fr;

        gap:30px;
    }

    .fibroids-image{

        width:100%;

        margin-bottom:-120px;

        border-radius:30px 30px 0 0;
    }

    .fibroids-content h2{

        font-size:2.5rem;

        margin-bottom:20px;
    }

    .fibroids-content p{

        font-size:1.7rem;

        margin:0 0 25px;

        line-height:1.6;
    }

    .fibroids-note{

        font-size:1.4rem;

        padding:18px 25px;
    }
}


/* =====================================
   MÓVIL
===================================== */

@media (max-width: 768px){

    .fibroids-info{
        padding:50px 0;
    }

    .fibroids-container{

        grid-template-columns:1fr;

        gap:25px;
    }

    .fibroids-image{

        width:100%;

        max-width:500px;

        margin:0 auto;

        border-radius:25px;
    }

    .fibroids-content{

        text-align:left;
    }

    .fibroids-content h2{

        font-size:2.1rem;

        line-height:1.2;

        margin-bottom:18px;
    }

    .fibroids-content p{

        font-size:1.45rem;

        line-height:1.7;

        margin:0 0 20px;
    }

    .fibroids-note{

        border-radius:20px;

        padding:18px 20px;

        font-size:1.35rem;

        line-height:1.6;
    }
}


/* =====================================
   MÓVILES PEQUEÑOS
===================================== */

@media (max-width: 480px){

    .fibroids-content h2{

        font-size:1.8rem;
    }

    .fibroids-content p{

        font-size:1.3rem;
    }

    .fibroids-note{

        font-size:1.2rem;

        padding:15px;
    }

    .fibroids-image{

        border-radius:20px;
    }
}


/* =========================
CUÁNDO ACUDIR A CONSULTA
========================= */

.consult-miomas{

    position:relative;

    background:#eef8f8;

    padding:90px 0;

    overflow:hidden;
}

/* PATRÓN */

.consult-miomas::before{

    content:"";
    position:absolute;
    inset:0;
    background:url("images/FONDO 2.webp");
    background-repeat:repeat;
    background-size:1000px;
    pointer-events:none;
}

/* CONTENEDOR */

.consult-miomas-container{

    width:min(1300px,92%);
    margin:auto;

    display:grid;

    grid-template-columns:1fr 420px;

    gap:60px;

    align-items:center;

    position:relative;
    z-index:2;
}

/* TITULO */

.consult-content h2{

    text-align:center;

    color:#7ec7c8;

    font-size:3rem;
    font-weight:700;

    margin:0 0 25px;
}

.consult-subtitle{

    text-align:center;

    color:#666;

    font-size:2rem;

    margin-bottom:50px;
}

/* GRID */

.consult-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:40px 30px;
}

/* ITEMS */

.consult-item{

    text-align:center;
}

.consult-item img{

    width:120px;
    height:120px;

    object-fit:contain;

    margin-bottom:20px;

    background:#fff;

    border-radius:50%;

    padding:20px;

    box-shadow:
    0 6px 15px rgba(0,0,0,.08);
}

.consult-item h3{

    margin:0;

    color:#666;

    font-size:1.5rem;
    line-height:1.35;

    font-weight:600;
}

/* IMAGEN */

.consult-image{

    border-radius:30px;

    overflow:hidden;

    box-shadow:
    0 10px 25px rgba(0,0,0,.10);
}

.consult-image img{

    width:100%;
    height:100%;

    display:block;

    object-fit:cover;
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 1024px){

    .consult-miomas{
        padding:70px 0;
    }

    .consult-miomas-container{

        grid-template-columns:1fr 340px;

        gap:40px;
    }

    .consult-content h2{

        font-size:2.5rem;
    }

    .consult-subtitle{

        font-size:1.7rem;

        margin-bottom:35px;
    }

    .consult-grid{

        grid-template-columns:repeat(3,1fr);

        gap:30px 20px;
    }

    .consult-item img{

        width:95px;
        height:95px;

        padding:16px;
    }

    .consult-item h3{

        font-size:1.2rem;
    }
}


/* =====================================
   MÓVIL
===================================== */

@media (max-width: 768px){

    .consult-miomas{
        padding:50px 0;
    }

    .consult-miomas-container{

        grid-template-columns:1fr;

        gap:35px;
    }

    .consult-image{

        max-width:500px;

        margin:0 auto;

        order:-1;
    }

    .consult-content h2{

        font-size:2.1rem;

        line-height:1.2;

        margin-bottom:15px;
    }

    .consult-subtitle{

        font-size:1.45rem;

        line-height:1.6;

        margin-bottom:30px;
    }

    .consult-grid{

        grid-template-columns:repeat(2,1fr);

        gap:25px 15px;
    }

    .consult-item img{

        width:85px;
        height:85px;

        padding:14px;

        margin-bottom:12px;
    }

    .consult-item h3{

        font-size:1.15rem;

        line-height:1.5;
    }
}


/* =====================================
   MÓVILES PEQUEÑOS
===================================== */

@media (max-width: 480px){

    .consult-miomas-container{
        width:94%;
    }

    .consult-content h2{

        font-size:1.8rem;
    }

    .consult-subtitle{

        font-size:1.3rem;
    }

    .consult-grid{

        grid-template-columns:1fr;

        gap:20px;
    }

    .consult-item{

        max-width:280px;

        margin:0 auto;
    }

    .consult-item img{

        width:75px;
        height:75px;

        padding:12px;
    }

    .consult-item h3{

        font-size:1.05rem;
    }

    .consult-image{

        border-radius:20px;
    }
}



/* =========================
SÍNTOMAS DE MIOMAS
========================= */

.mioma-symptoms{

    padding:90px 0;
}

/* FRANJA SUPERIOR */

.symptoms-title{

    width:72%;

    background:#7ec7c8;

    border-radius:0 35px 35px 0;

    padding:22px 40px;

    margin-bottom:60px;
}

.symptoms-title h2{

    margin:0;

    text-align:center;

    color:#fff;

    font-size:3rem;
    font-weight:700;
}

/* CONTENIDO */

.symptoms-content{

    width:min(1200px,92%);
    margin:auto;

    display:grid;

    grid-template-columns:450px 1fr;

    gap:0px;

    align-items:center;
}

/* IMAGEN */

.symptoms-image{

    border-radius:30px;

    overflow:hidden;

    box-shadow:
    0 10px 25px rgba(0,0,0,.08);
}

.symptoms-image img{

    width:100%;
    display:block;
}

/* TEXTO */

.symptoms-info h3{

    margin:0 40px 20px;

    color:#666;

    font-size:2rem;
    font-weight:600;
}

/* CAJA */

.symptoms-box{

    background:#7ec7c8;

    padding:35px 40px;

    border-radius:0 30px 30px 0;
}

.symptoms-box ul{

    list-style:none;

    margin:0;
    padding:0;
}

.symptoms-box li{

    position:relative;

    padding-left:40px;

    margin-bottom:25px;

    color:#fff;

    font-size:1.8rem;
    line-height:1.3;
}

.symptoms-box li:last-child{
    margin-bottom:0;
}

.symptoms-box li::before{

    content:"";

    position:absolute;

    left:0;
    top:12px;

    width:14px;
    height:14px;

    border-radius:50%;

    background:#fff;
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 1024px){

    .mioma-symptoms{
        padding:70px 0;
    }

    .symptoms-title{

        width:85%;

        padding:20px 30px;

        margin-bottom:40px;
    }

    .symptoms-title h2{

        font-size:2.4rem;
    }

    .symptoms-content{

        width:92%;

        grid-template-columns:350px 1fr;

        gap:25px;
    }

    .symptoms-info h3{

        margin:0 0 18px;

        font-size:1.7rem;
    }

    .symptoms-box{

        padding:30px;
    }

    .symptoms-box li{

        font-size:1.5rem;

        padding-left:30px;

        margin-bottom:18px;
    }

    .symptoms-box li::before{

        width:12px;
        height:12px;

        top:10px;
    }
}


/* =====================================
   MÓVIL
===================================== */

@media (max-width: 768px){

    .mioma-symptoms{
        padding:50px 0;
    }

    .symptoms-title{

        width:95%;

        padding:18px 20px;

        border-radius:0 20px 20px 0;

        margin-bottom:30px;
    }

    .symptoms-title h2{

        font-size:2rem;

        line-height:1.2;
    }

    .symptoms-content{

        width:92%;

        grid-template-columns:1fr;

        gap:25px;
    }

    .symptoms-image{

        max-width:500px;

        margin:0 auto;
    }

    .symptoms-info h3{

        margin:0 0 15px;

        text-align:center;

        font-size:1.5rem;

        line-height:1.5;
    }

    .symptoms-box{

        padding:25px 20px;

        border-radius:20px;
    }

    .symptoms-box li{

        font-size:1.35rem;

        line-height:1.6;

        padding-left:25px;

        margin-bottom:15px;
    }

    .symptoms-box li::before{

        width:10px;
        height:10px;

        top:8px;
    }
}


/* =====================================
   MÓVILES PEQUEÑOS
===================================== */

@media (max-width: 480px){

    .symptoms-title{

        width:100%;

        padding:15px;
    }

    .symptoms-title h2{

        font-size:1.7rem;
    }

    .symptoms-info h3{

        font-size:1.3rem;
    }

    .symptoms-box{

        padding:20px 15px;
    }

    .symptoms-box li{

        font-size:1.2rem;

        line-height:1.7;
    }

    .symptoms-image{

        border-radius:20px;
    }
}

/* =========================
ESTUDIOS MIOMAS
========================= */

.studies-miomas{

    background:#f7f7f7;

    padding-bottom:90px;
}

/* CABECERA */

.studies-header{

    background:#e8b2a8;

    padding:25px;
    margin-bottom:40px;
}

.studies-header h2{

    margin:0;

    color:white;

    text-align:center;

    font-size:3rem;
    font-weight:700;
}

/* CONTENEDOR */

.studies-container{

    width:min(1250px,92%);
    margin:auto;
}

.studies-subtitle{

    text-align:center;

    color:#666;

    font-size:2rem;

    margin-bottom:50px;
}

/* GRID */

.studies-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;
}

/* TARJETAS */

.study-card{

    position:relative;

    border-radius:35px;

    overflow:hidden;

    background:white;

    box-shadow:
    0 8px 20px rgba(0,0,0,.08);
}

.study-card img{

    width:100%;
    height:520px;

    object-fit:cover;

    display:block;
}

/* PANEL INFERIOR */

.study-info{

    position:absolute;

    left:0;
    right:0;
    bottom:0;

    background:#e8b2a8;

    padding:10px;

    min-height:145px;

    display:flex;
    flex-direction:column;
    justify-content:center;

    text-align:center;

    border-radius:35px 35px 0 0;
}

.study-info h3{

    margin:0 0 8px;

    color:white;

    font-size:2rem;
    font-weight:700;

    line-height:1.2;
}

.study-info p{

    margin:0;

    color:white;

    font-size:1.2rem;
    line-height:1.35;
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 1024px){

    .studies-miomas{
        padding-bottom:70px;
    }

    .studies-header h2{
        font-size:2.5rem;
    }

    .studies-subtitle{
        font-size:1.7rem;
        margin-bottom:35px;
    }

    .studies-grid{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

    .study-card img{
        height:420px;
    }

    .study-info{
        min-height:130px;
        padding:15px;
    }

    .study-info h3{
        font-size:1.6rem;
    }

    .study-info p{
        font-size:1rem;
        line-height:1.5;
    }
}


/* =====================================
   MÓVIL
===================================== */

@media (max-width: 768px){

    .studies-miomas{
        padding-bottom:50px;
    }

    .studies-header{
        padding:18px;
        margin-bottom:25px;
    }

    .studies-header h2{
        font-size:2rem;
        line-height:1.2;
    }

    .studies-subtitle{
        font-size:1.4rem;
        line-height:1.6;
        margin-bottom:25px;
    }

    .studies-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .study-card{
        max-width:500px;
        margin:0 auto;
    }

    .study-card img{
        height:350px;
    }

    .study-info{
        min-height:auto;
        padding:18px;
    }

    .study-info h3{
        font-size:1.5rem;
        margin-bottom:8px;
    }

    .study-info p{
        font-size:1.15rem;
        line-height:1.6;
    }
}


/* =====================================
   MÓVILES PEQUEÑOS
===================================== */

@media (max-width: 480px){

    .studies-container{
        width:94%;
    }

    .studies-header h2{
        font-size:1.7rem;
    }

    .studies-subtitle{
        font-size:1.25rem;
    }

    .study-card{
        border-radius:25px;
    }

    .study-card img{
        height:280px;
    }

    .study-info{
        border-radius:25px 25px 0 0;
        padding:15px;
    }

    .study-info h3{
        font-size:1.3rem;
    }

    .study-info p{
        font-size:1rem;
        line-height:1.6;
    }
}


/* =========================
¿QUÉ ES LA MIOMECTOMÍA?
========================= */

.miomectomy-intro{

    position:relative;

    background:#f7efec;

    padding:70px 0;

    overflow:hidden;
}

/* PATRÓN */

.miomectomy-intro::before{

    content:"";

    position:absolute;
    inset:0;
    background:
    url("images/Fondo-rosa-2.jpg");
    background-repeat:repeat;
    background-size:900px;
    pointer-events:none;
}

/* CONTENIDO */

.miomectomy-intro-content{

    width:min(1100px,92%);

    margin:auto;

    position:relative;
    z-index:2;

    text-align:center;
}

/* TITULO */

.miomectomy-intro h2{

    margin:0 0 30px;

    color:#e7aea2;

    font-size:3.5rem;
    font-weight:700;

    line-height:1.1;
}

/* TEXTO */

.miomectomy-intro p{

    margin:0 auto;

    max-width:1200px;

    color:#666;

    font-size:1.8rem;
    line-height:1.3;
}

.miomectomy-intro strong{

    font-weight:700;
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 1024px){

    .miomectomy-intro{
        padding:60px 0;
    }

    .miomectomy-intro-content{
        width:92%;
    }

    .miomectomy-intro h2{

        font-size:2.8rem;

        margin-bottom:25px;

        line-height:1.15;
    }

    .miomectomy-intro p{

        font-size:1.6rem;

        line-height:1.6;
    }
}


/* =====================================
   MÓVIL
===================================== */

@media (max-width: 768px){

    .miomectomy-intro{
        padding:50px 0;
    }

    .miomectomy-intro-content{
        width:92%;
    }

    .miomectomy-intro h2{

        font-size:2.2rem;

        line-height:1.2;

        margin-bottom:20px;
    }

    .miomectomy-intro p{

        font-size:1.4rem;

        line-height:1.7;
    }
}


/* =====================================
   MÓVILES PEQUEÑOS
===================================== */

@media (max-width: 480px){

    .miomectomy-intro{
        padding:40px 0;
    }

    .miomectomy-intro h2{

        font-size:1.8rem;

        margin-bottom:15px;
    }

    .miomectomy-intro p{

        font-size:1.25rem;

        line-height:1.8;
    }
}


/* =========================
TIPOS DE MIOMECTOMÍA
========================= */

.miomectomy-types{

    padding:90px 0;
    background:#f7f7f7;
}

.miomectomy-types .container{

    width:min(1200px,92%);
    margin:auto;
}

/* FILAS */

.miomectomy-row{

    display:grid;

    grid-template-columns:340px 1fr;

    gap:60px;

    align-items:center;

    margin-bottom:70px;
}

.miomectomy-row:last-child{
    margin-bottom:0;
}

.miomectomy-row.reverse{

    grid-template-columns:1fr 340px;
}

/* IMAGEN */

.miomectomy-image{
    border-radius:12px;
    overflow:hidden;
    box-shadow:
    0 8px 18px rgba(0,0,0,.10);
	width: 400px;
}

.miomectomy-image img{

    width:100%;
    height:100%;

    display:block;

    object-fit:cover;
}

/* TITULO */

.miomectomy-title{

    display:inline-block;
    background:#7dc7c8;
    color:white;
    padding:14px 100px;
    border-radius: 0 40px 40px 0;
    font-size:2rem;
    font-weight:700;
    margin-bottom:25px;
}


.left{
border-radius: 40px 0px 0px 40px;
margin-right: -60px;
    
}


/* TEXTO */

.miomectomy-content p{
    margin:20px;
    color:#666;
    font-size:1.7rem;
    line-height:1.35;
}


.miomectomy-content strong{

    font-weight:700;
}

.tl{
text-align: right;
    
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 1024px){

    .miomectomy-types{
        padding:70px 0;
    }

    .miomectomy-row{

        grid-template-columns:300px 1fr;

        gap:35px;

        margin-bottom:50px;
    }

    .miomectomy-row.reverse{

        grid-template-columns:1fr 300px;
    }

    .miomectomy-image{

        width:100%;
        max-width:300px;
    }

    .miomectomy-title{

        padding:12px 50px;

        font-size:1.7rem;
    }

    .miomectomy-content p{

        margin:0;

        font-size:1.5rem;

        line-height:1.6;
    }

    .left{
        margin-right:0;
    }
}


/* =====================================
   MÓVIL
===================================== */

@media (max-width: 768px){

    .miomectomy-types{
        padding:50px 0;
    }

    .miomectomy-row,
    .miomectomy-row.reverse{

        grid-template-columns:1fr;

        gap:25px;

        margin-bottom:45px;
    }

    .miomectomy-image{

        width:100%;
        max-width:500px;

        margin:0 auto;
    }

    .miomectomy-content{

        text-align:left;
    }

    .miomectomy-title{

        display:block;

        width:100%;

        padding:15px 20px;

        text-align:center;

        font-size:1.5rem;

        border-radius:20px;

        margin-bottom:18px;
    }

    .left{

        border-radius:20px;

        margin-right:0;
    }

    .tl{
        text-align:center;
    }

    .miomectomy-content p{

        margin:0;

        font-size:1.35rem;

        line-height:1.7;
    }
}


/* =====================================
   MÓVILES PEQUEÑOS
===================================== */

@media (max-width: 480px){

    .miomectomy-types .container{
        width:94%;
    }

    .miomectomy-title{

        font-size:1.3rem;

        padding:14px 15px;
    }

    .miomectomy-content p{

        font-size:1.2rem;

        line-height:1.8;
    }

    .miomectomy-image{

        border-radius:20px;
    }
}



/* =========================
TRATAMIENTOS DISPONIBLES
========================= */

.treatments-options{

    position:relative;

    background:#eef8f8;

    padding:90px 0 0;

    overflow:hidden;
}

/* PATRÓN */

.treatments-options::before{

    content:"";

    position:absolute;
    inset:0;

    background:
    url("images/patron-gineco.svg");

    background-repeat:repeat;
    background-size:1100px;

    opacity:.08;

    pointer-events:none;
}

/* CONTENEDOR */

.treatments-options-container{

    width:min(1100px,92%);
    margin:auto;

    position:relative;
    z-index:2;
}

/* TITULO */

.treatments-options h2{

    text-align:center;

    color:#7dc7c8;

    font-size:3rem;
    font-weight:700;

    margin:0 0 15px;
}

.options-subtitle{

    text-align:center;

    color:#666;

    font-size:1.6rem;

    margin-bottom:50px;
}

/* GRID */

.options-grid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:18px;
}

/* TARJETAS */

.option-card{

    padding:35px 30px;

    text-align:center;

    border-radius:0;

    min-height:190px;

    box-shadow:
    0 5px 15px rgba(0,0,0,.06);
}

.option-card.aqua{

    background:#7dc7c8;

    color:#fff;
}

.option-card.white{

    background:#fff;

    color:#666;
}

.option-card h3{

    margin:0 0 25px;

    font-size:1.4rem;
    line-height:1.3;
}

.option-card span{

    display:block;

    margin-top:-10px;
    margin-bottom:20px;

    font-size:1rem;
}

.option-card p{

    font-size:1.05rem;
    line-height:1.5;

    margin-bottom:25px;
}

.option-card img{

    width:70px;
    height:70px;

    object-fit:contain;
}

/* TARJETA CENTRAL */

.option-card.large{

    grid-column:1 / span 2;

    min-height:280px;
}

/* ESQUINAS COMO REFERENCIA */

.option-card:first-child{

    border-radius:35px 0 0 0;
}

.option-card:nth-child(2){

    border-radius:0 35px 0 0;
}

.option-card:nth-child(4){

    border-radius:0 0 0 35px;
}

.option-card:nth-child(5){

    border-radius:0 0 35px 0;
}

/* FOOTER */

.options-footer{

    margin-top:50px;

    background:#7dc7c8;

    color:white;

    text-align:center;

    font-size:1.5rem;
    font-weight:700;

    padding:22px;

    border-radius:25px 25px 0 0;
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 1024px){

    .treatments-options{
        padding:70px 0 0;
    }

    .treatments-options h2{
        font-size:2.5rem;
    }

    .options-subtitle{
        font-size:1.4rem;
        margin-bottom:35px;
    }

    .options-grid{
        gap:15px;
    }

    .option-card{
        padding:25px 20px;
        min-height:auto;
    }

    .option-card h3{
        font-size:1.25rem;
        margin-bottom:18px;
    }

    .option-card p{
        font-size:1rem;
        margin-bottom:18px;
    }

    .option-card img{
        width:60px;
        height:60px;
    }

    .options-footer{
        font-size:1.3rem;
    }
}


/* =====================================
   MÓVIL
===================================== */

@media (max-width: 768px){

    .treatments-options{
        padding:50px 0 0;
    }

    .treatments-options h2{
        font-size:2rem;
        line-height:1.2;
    }

    .options-subtitle{
        font-size:1.3rem;
        line-height:1.6;
        margin-bottom:25px;
    }

    .options-grid{
        grid-template-columns:1fr;
        gap:15px;
    }

    .option-card,
    .option-card.large{
        grid-column:auto;
        min-height:auto;
    }

    .option-card{
        padding:22px 18px;
        border-radius:20px !important;
    }

    .option-card h3{
        font-size:1.25rem;
        line-height:1.4;
        margin-bottom:15px;
    }

    .option-card span{
        font-size:.95rem;
        margin-bottom:15px;
    }

    .option-card p{
        font-size:1rem;
        line-height:1.6;
        margin-bottom:15px;
    }

    .option-card img{
        width:55px;
        height:55px;
    }

    .options-footer{
        margin-top:30px;
        font-size:1.2rem;
        padding:18px;
        border-radius:20px 20px 0 0;
    }
}


/* =====================================
   MÓVILES PEQUEÑOS
===================================== */

@media (max-width: 480px){

    .treatments-options-container{
        width:94%;
    }

    .treatments-options h2{
        font-size:1.8rem;
    }

    .options-subtitle{
        font-size:1.15rem;
    }

    .option-card{
        padding:20px 15px;
    }

    .option-card h3{
        font-size:1.15rem;
    }

    .option-card p{
        font-size:.95rem;
    }

    .option-card img{
        width:50px;
        height:50px;
    }

    .options-footer{
        font-size:1.05rem;
    }
}



/* =========================
MIOMECTOMÍA SEGURA
========================= */

.safety-miomectomy{

    background:#f7f7f7;

    padding:90px 0;
}

.safety-container{

    width:min(1200px,92%);
    margin:auto;
}

/* IMAGEN */

.safety-image{

    position:relative;

    max-width:950px;

    margin:0 auto 50px;

    border-radius: 40px 40px 0 0;

    overflow:hidden;

    box-shadow:
    0 8px 25px rgba(0,0,0,.10);
}

.safety-image img{

    width:100%;
    height:360px;

    object-fit:cover;

    display:block;
}

/* ETIQUETA */

.safety-badge{

    position:absolute;

    left:50%;
    bottom:0;

    transform:translateX(-50%);

    background:#e8b2a8;

    color:white;

    padding:18px 10px;

    border-radius:25px 25px 0 0;

    font-size:2.2rem;
    font-weight:700;

    text-align:center;

    white-space:nowrap;
}

/* CONTENIDO */

.safety-content{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    max-width:950px;

    margin:auto;
}

.safety-text{

    text-align:justify;
}

.safety-text p{

    margin:0;

    color:#666;

    font-size:1.2rem;
    line-height:1.35;
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 1024px){

    .safety-miomectomy{
        padding:70px 0;
    }

    .safety-image{
        margin-bottom:40px;
    }

    .safety-image img{
        height:300px;
    }

    .safety-badge{

        font-size:1.8rem;

        padding:15px 30px;
    }

    .safety-content{

        gap:40px;
    }

    .safety-text p{

        font-size:1.05rem;

        line-height:1.7;
    }
}


/* =====================================
   MÓVIL
===================================== */

@media (max-width: 768px){

    .safety-miomectomy{
        padding:50px 0;
    }

    .safety-image{

        border-radius:25px 25px 0 0;

        margin-bottom:30px;
    }

    .safety-image img{

        height:240px;
    }

    .safety-badge{

        width:90%;

        padding:15px;

        font-size:1.4rem;

        line-height:1.3;

        white-space:normal;

        border-radius:18px 18px 0 0;
    }

    .safety-content{

        grid-template-columns:1fr;

        gap:25px;
    }

    .safety-text{

        text-align:left;
    }

    .safety-text p{

        font-size:1rem;

        line-height:1.8;
    }
}


/* =====================================
   MÓVILES PEQUEÑOS
===================================== */

@media (max-width: 480px){

    .safety-container{
        width:94%;
    }

    .safety-image img{
        height:200px;
    }

    .safety-badge{

        width:92%;

        font-size:1.15rem;

        padding:12px;
    }

    .safety-text p{

        font-size:.95rem;

        line-height:1.9;
    }
}



/* =========================
RECUPERACIÓN
========================= */

.recovery-section{

    position:relative;

    background:#f7efec;

    padding:90px 0 0;

    overflow:hidden;
}

/* PATRÓN */

.recovery-section::before{

    content:"";

    position:absolute;
    inset:0;
    background:url("images/Fondo-rosa-2.jpg");
    background-repeat:repeat;
    background-size:1000px;
    pointer-events:none;
}

/* CONTENEDOR */

.recovery-container{

    width:min(1200px,92%);

    margin:auto;

    position:relative;
    z-index:2;
}

/* TITULO */

.recovery-container h2{

    color:#e7aea2;

    font-size:3rem;
    font-weight:700;

    margin:0 0 15px;
}

.recovery-subtitle{

    color:#666;

    font-size:1.6rem;

    margin-bottom:50px;
}

/* GRID */

.recovery-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px 70px;

    margin-bottom:60px;
}

/* ITEM */

.recovery-item{

    display:flex;

    align-items:center;

    gap:20px;
}

/* ICONO */

.recovery-icon{

    width:70px;
    height:70px;

    min-width:70px;

    background:white;

    border-radius:12px;

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:
    0 4px 12px rgba(0,0,0,.08);
}

.recovery-icon img{

    width:60px;
    height:60px;

    object-fit:contain;
}

/* TEXTO */

.recovery-item span{

    color:#666;

    font-size:1.6rem;
    line-height:1.3;
}

/* FRANJA INFERIOR */

.recovery-footer{

    width:70%;

    margin-left:auto;

    background:#e8b2a8;

    color:white;

    text-align:center;

    padding:18px 30px;

    font-size:1.5rem;
    font-weight:700;

    border-radius: 50px 0px 0px 50px;
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 1024px){

    .recovery-section{
        padding:70px 0 0;
    }

    .recovery-container h2{
        font-size:2.5rem;
    }

    .recovery-subtitle{
        font-size:1.4rem;
        margin-bottom:35px;
    }

    .recovery-grid{
        gap:25px 35px;
        margin-bottom:40px;
    }

    .recovery-icon{
        width:60px;
        height:60px;
        min-width:60px;
    }

    .recovery-icon img{
        width:45px;
        height:45px;
    }

    .recovery-item span{
        font-size:1.3rem;
        line-height:1.5;
    }

    .recovery-footer{
        width:85%;
        font-size:1.3rem;
    }
}


/* =====================================
   MÓVIL
===================================== */

@media (max-width: 768px){

    .recovery-section{
        padding:50px 0 0;
    }

    .recovery-container h2{
        font-size:2rem;
        line-height:1.2;
        text-align:center;
    }

    .recovery-subtitle{
        font-size:1.3rem;
        line-height:1.6;
        text-align:center;
        margin-bottom:30px;
    }

    .recovery-grid{
        grid-template-columns:1fr;
        gap:20px;
        margin-bottom:30px;
    }

    .recovery-item{
        align-items:flex-start;
    }

    .recovery-icon{
        width:55px;
        height:55px;
        min-width:55px;
    }

    .recovery-icon img{
        width:40px;
        height:40px;
    }

    .recovery-item span{
        font-size:1.2rem;
        line-height:1.6;
    }

    .recovery-footer{
        width:100%;
        margin-left:0;

        border-radius:20px 20px 0 0;

        font-size:1.15rem;

        padding:15px 20px;
    }
}


/* =====================================
   MÓVILES PEQUEÑOS
===================================== */

@media (max-width: 480px){

    .recovery-container{
        width:94%;
    }

    .recovery-container h2{
        font-size:1.8rem;
    }

    .recovery-subtitle{
        font-size:1.15rem;
    }

    .recovery-item{
        gap:15px;
    }

    .recovery-icon{
        width:50px;
        height:50px;
        min-width:50px;
    }

    .recovery-icon img{
        width:35px;
        height:35px;
    }

    .recovery-item span{
        font-size:1.05rem;
    }

    .recovery-footer{
        font-size:1rem;
        padding:14px 15px;
    }
}


/* =========================
¿LOS MIOMAS SON CANCEROSOS?
========================= */

.miomas-cancer{

    padding:90px 0;

    background:#f7f7f7;
}

.miomas-cancer .container{

    width:min(1200px,92%);
    margin:auto;
}

/* TITULO */

.miomas-cancer h2{

    text-align:center;

    color:#666;

    font-size:3rem;
    font-weight:700;

    margin:0 0 50px;
}

/* CONTENIDO */

.cancer-content{

    display:grid;

    grid-template-columns:
    1fr 320px 1fr;

    gap:40px;

    align-items:center;
}

/* IMAGEN */

.cancer-image{

    border-radius:15px;

    overflow:hidden;

    box-shadow:
    0 8px 20px rgba(0,0,0,.10);
}

.cancer-image img{

    width:100%;
    display:block;
}

/* TEXTO */

.cancer-text{

    color:#666;

    font-size:1.8rem;

    line-height:1.4;
}

.cancer-text.left2{

    text-align:right;
}

.cancer-text.right{

    text-align:left;
}

.cancer-text p{

    margin:0 0 25px;
}

.cancer-text p:last-child{
    margin-bottom:0;
}

.cancer-text strong{

    font-weight:700;
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 1024px){

    .miomas-cancer{
        padding:70px 0;
    }

    .miomas-cancer h2{
        font-size:2.5rem;
        margin-bottom:35px;
    }

    .cancer-content{

        grid-template-columns:1fr 260px 1fr;

        gap:25px;
    }

    .cancer-text{

        font-size:1.45rem;

        line-height:1.6;
    }

    .cancer-text p{
        margin-bottom:18px;
    }
}


/* =====================================
   MÓVIL
===================================== */

@media (max-width: 768px){

    .miomas-cancer{
        padding:50px 0;
    }

    .miomas-cancer h2{

        font-size:2rem;

        line-height:1.2;

        margin-bottom:30px;
    }

    .cancer-content{

        grid-template-columns:1fr;

        gap:25px;
    }

    .cancer-image{

        max-width:450px;

        margin:0 auto;

        order:2;
    }

    .cancer-text{

        font-size:1.3rem;

        line-height:1.7;

        text-align:left !important;
    }

    .cancer-text.left2{
        order:1;
    }

    .cancer-text.right{
        order:3;
    }

    .cancer-text p{
        margin-bottom:15px;
    }
}


/* =====================================
   MÓVILES PEQUEÑOS
===================================== */

@media (max-width: 480px){

    .miomas-cancer .container{
        width:94%;
    }

    .miomas-cancer h2{
        font-size:1.8rem;
    }

    .cancer-text{

        font-size:1.15rem;

        line-height:1.8;
    }

    .cancer-image{
        border-radius:12px;
    }
}


/* =========================
SALUD UTERINA
========================= */

.uterine-health{
    position:relative;
    background:#eef8f8;
    padding:80px 0 0;
    overflow:hidden;
}

/* PATRÓN */

.uterine-health::before{
    content:"";
    position:absolute;
    inset:0;
    background:url("images/FONDO-3.jpg");
    background-repeat:repeat;
    pointer-events:none;
}

/* CONTENEDOR */

.uterine-health-container{
    width:min(1250px,92%);
    margin:auto;
    display:grid;
    grid-template-columns:1fr 420px;
    gap:60px;
    position:relative;
    z-index:2;
}

/* TITULO */

.health-left h2{
    color:#7dc7c8;
    font-size:3rem;
    font-weight:700;
    line-height:1.15;
    margin:0 0 30px;
}

/* IMAGEN */

.health-image{
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    margin-bottom:25px;
}

.health-image img{
    width:100%;
    display:block;
    transition:opacity .35s ease;
}

/* TEXTO */

.health-text{
    color:#666;
    font-size:1.8rem;
    line-height:1.35;
}

.health-text strong{
    font-weight:700;
}

/* COLUMNA DERECHA */

.health-right{
    display:flex;
    flex-direction:column;
    gap:18px;
	justify-content: center;
}

.health-item{
    display:flex;
    align-items:center;
    gap:18px;
    cursor:pointer;
    padding:12px;
    border-radius:18px;
    transition:.3s;
}

.health-item:hover{
    background:rgba(255,255,255,.6);
}

.health-item.active{
    background:#fff;
    box-shadow:0 8px 18px rgba(0,0,0,.08);
}



.health-icon{
    width:75px;
    height:75px;
    min-width:75px;
    background:#fff;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 5px 12px rgba(0,0,0,.08);
    transition:.3s;
}

.health-icon.large{
    width:110px;
    height:110px;
    min-width:110px;
}

.health-icon img{
    width:60%;
    height:60%;
    object-fit:contain;
    transition:.3s ease;
    transform:scale(1);
}

/* Zoom únicamente al icono activo */
.health-item.active .health-icon img{
    transform:scale(1.2);
}

.health-item span{
    color:#666;
    font-size:1.2rem;
    line-height:1.4;
}

/* BARRA INFERIOR */

.health-footer{
    position:relative;
    z-index:999;
    width:45%;
    margin-top:40px;
    background:#7dc7c8;
    color:white;
    padding:20px 35px;
    font-size:1.6rem;
    font-weight:700;
    border-radius:0 30px 30px 0;
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 1024px){

    .uterine-health{
        padding:70px 0 0;
    }

    .uterine-health-container{

        grid-template-columns:1fr 320px;

        gap:35px;
    }

    .health-left h2{

        font-size:2.4rem;

        margin-bottom:25px;
    }

    .health-text{

        font-size:1.5rem;

        line-height:1.6;
    }

    .health-icon{
        width:65px;
        height:65px;
        min-width:65px;
    }

    .health-icon.large{
        width:90px;
        height:90px;
        min-width:90px;
    }

    .health-item span{
        font-size:1rem;
    }

    .health-footer{

        width:70%;

        font-size:1.3rem;
    }
}


/* =====================================
   MÓVIL
===================================== */

@media (max-width: 768px){

    .uterine-health{
        padding:50px 0 0;
    }

    .uterine-health-container{

        grid-template-columns:1fr;

        gap:30px;
    }

    .health-left h2{

        font-size:2rem;

        line-height:1.2;

        text-align:center;

        margin-bottom:20px;
    }

    .health-image{
        margin-bottom:20px;
    }

    .health-text{

        font-size:1.3rem;

        line-height:1.7;
    }

    .health-right{
        gap:12px;
    }

    .health-item{
        padding:10px;
        gap:15px;
    }

    .health-icon{
        width:60px;
        height:60px;
        min-width:60px;
    }

    .health-icon.large{
        width:75px;
        height:75px;
        min-width:75px;
    }

    .health-item span{
        font-size:1rem;
        line-height:1.5;
    }

    .health-footer{

        width:100%;

        margin-top:30px;

        padding:18px 20px;

        font-size:1.15rem;

        border-radius:20px 20px 0 0;

        text-align:center;
    }
}


/* =====================================
   MÓVILES PEQUEÑOS
===================================== */

@media (max-width: 480px){

    .uterine-health-container{
        width:94%;
    }

    .health-left h2{
        font-size:1.8rem;
    }

    .health-text{
        font-size:1.15rem;
        line-height:1.8;
    }

    .health-item{
        gap:12px;
    }

    .health-icon{
        width:55px;
        height:55px;
        min-width:55px;
    }

    .health-icon.large{
        width:65px;
        height:65px;
        min-width:65px;
    }

    .health-item span{
        font-size:.95rem;
    }

    .health-footer{
        font-size:1rem;
        padding:15px;
    }
}


/* =========================
CTA FINAL MIOMAS
========================= */

.miomas-cta{

    background:#f7f7f7;

    padding:80px 0 100px;
}

.miomas-cta-container{

    width:min(1200px,92%);
    margin:auto;
}

/* TITULO */

.miomas-cta h2{

    text-align:center;

    color:#e7aea2;

    font-size:3rem;
    font-weight:700;

    margin:0 0 60px;
}

/* CONTENIDO */

.miomas-cta-content{

    display:flex;

    align-items:center;
    justify-content:center;

    gap:50px;

    margin-bottom:40px;
}

/* FOTO */

.miomas-cta-photo{

    width:260px;
    height:260px;

    border-radius:50%;

    overflow:hidden;

    flex-shrink:0;

    box-shadow:
    0 8px 20px rgba(0,0,0,.08);
}

.miomas-cta-photo img{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;
}

/* TARJETA */

.miomas-cta-card{

    max-width:700px;

    background:#f7efec;

    border-radius:25px;

    padding:35px 45px;

    box-shadow:
    0 5px 15px rgba(0,0,0,.05);
}

.miomas-cta-card p{

    margin:0;

    color:#666;

    font-size:1.8rem;

    line-height:1.4;

    text-align:center;
}

.miomas-cta-card strong{

    font-weight:700;
}

/* BOTÓN */

.miomas-cta-button{

    display:flex;
    justify-content:flex-end;

    max-width:900px;

    margin:auto;
}

.cta-miomas-btn{

    display:inline-block;

    background:#7dc7c8;

    color:white;

    text-decoration:none;

    padding:22px 60px;

    font-size:2rem;
    font-weight:700;

    border-radius:30px 30px 0 30px;

    transition:.3s;
}

.cta-miomas-btn:hover{

    transform:translateY(-4px);

    box-shadow:
    0 10px 20px rgba(0,0,0,.12);
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 1024px){

    .miomas-cta{
        padding:70px 0 80px;
    }

    .miomas-cta h2{
        font-size:2.5rem;
        margin-bottom:40px;
    }

    .miomas-cta-content{
        gap:30px;
    }

    .miomas-cta-photo{
        width:220px;
        height:220px;
    }

    .miomas-cta-card{
        padding:30px;
    }

    .miomas-cta-card p{
        font-size:1.5rem;
        line-height:1.6;
    }

    .cta-miomas-btn{
        font-size:1.6rem;
        padding:18px 45px;
    }
}


/* =====================================
   MÓVIL
===================================== */

@media (max-width: 768px){

    .miomas-cta{
        padding:50px 0 60px;
    }

    .miomas-cta h2{
        font-size:2rem;
        line-height:1.2;
        margin-bottom:30px;
    }

    .miomas-cta-content{
        flex-direction:column;
        gap:25px;
        margin-bottom:30px;
    }

    .miomas-cta-photo{
        width:180px;
        height:180px;
    }

    .miomas-cta-card{
        max-width:100%;
        padding:25px 20px;
        border-radius:20px;
    }

    .miomas-cta-card p{
        font-size:1.3rem;
        line-height:1.7;
    }

    .miomas-cta-button{
        justify-content:center;
    }

    .cta-miomas-btn{
        width:100%;
        max-width:420px;

        text-align:center;

        font-size:1.35rem;

        padding:18px 20px;

        border-radius:20px;
    }

    .cta-miomas-btn:hover{
        transform:none;
    }
}


/* =====================================
   MÓVILES PEQUEÑOS
===================================== */

@media (max-width: 480px){

    .miomas-cta-container{
        width:94%;
    }

    .miomas-cta h2{
        font-size:1.8rem;
    }

    .miomas-cta-photo{
        width:140px;
        height:140px;
    }

    .miomas-cta-card{
        padding:20px 15px;
    }

    .miomas-cta-card p{
        font-size:1.15rem;
        line-height:1.8;
    }

    .cta-miomas-btn{
        font-size:1.15rem;
        padding:16px;
    }
}