/* 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 VPH
========================== */

.vph-hero{
    position: relative;
    width: 100%;
    height: 700px;

    background-image: url("images/BANNER-PRINCIPAL-VPH.jpg");
    background-size: cover;
    background-position: center;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    overflow: hidden;
}

/* Capa inferior color turquesa */
.vph-hero::after{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:40px;
    background:#89d4d4;
}

/* Caja principal */
.vph-overlay-card{
    position: relative;
    z-index: 2;

    width: min(1000px, 85%);
    margin-bottom: 35px;

    background: rgba(137,212,212,0.92);
    backdrop-filter: blur(4px);

    border-radius: 22px 22px 0 0;

    padding: 35px 50px;
    text-align:center;
}

/* Decoración */
.vph-overlay-card::before{
    content:"";
    position:absolute;
    inset:0;

    background-image:
        radial-gradient(circle at 15% 70%, transparent 58px, rgba(255,255,255,.15) 60px, transparent 62px),
        radial-gradient(circle at 85% 25%, transparent 45px, rgba(255,255,255,.15) 47px, transparent 49px),
        radial-gradient(circle at 55% 15%, transparent 35px, rgba(255,255,255,.15) 37px, transparent 39px);

    pointer-events:none;
}

.vph-overlay-card h1{
    position:relative;
    z-index:2;

    margin:0;

    color:#ffffff;
    font-size: clamp(2rem, 3vw, 3.5rem);
    font-weight:700;
    line-height:1.15;
    letter-spacing:1px;
    text-transform:uppercase;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width:768px){

    .vph-hero{
        height:550px;
    }

    .vph-overlay-card{
        width:92%;
        padding:25px;
        margin-bottom:20px;
    }

    .vph-overlay-card h1{
        font-size:1.7rem;
        line-height:1.2;
    }
}

/*==================================
SECCIÓN VPH
==================================*/

.vph-info2{
    overflow:hidden;
}

/*==================================
FILA SUPERIOR
==================================*/

.vph-top2{
    max-width:1400px;
    margin:auto;
    padding:80px 40px 60px;

    display:grid;
    grid-template-columns:1.2fr 0.9fr;
    gap:60px;
    align-items:center;
}

.vph-top-content2{
    display:flex;
    flex-direction:column;
    gap:0;
}

/* Tarjetas */

.vph-card2{
    border-radius: 0px 25px 25px 0px;
    padding:28px 35px;
    font-size:1.5rem;
    line-height:1.45;
    position:relative;
}

.vph-card-white2{
    background:#fff;
    box-shadow:0 4px 18px rgba(0,0,0,.08);
    z-index:2;
}

.vph-card-white2 strong{
    color:#87d7d7;
}

.vph-card-pink2{
    width:92%;
    background:#efc0b7;
    color:#fff;
    margin-top:-12px;
    margin-left:0;
    z-index:1;
}

.vph-card-pink2 strong{
    font-weight:700;
}

/* Imagen virus */

.vph-virus-image2 img{
    width:100%;
    display:block;
    border-radius:25px;
    object-fit:cover;
    box-shadow:0 8px 25px rgba(0,0,0,.12);
}
/*==================================
FILA INFERIOR
==================================*/
.vph-bottom2{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:stretch;
    background:#f7ece9;
    height:550px;
    position:relative;
    overflow:visible;
}

.vph-couple-image2{
    position:relative;
    z-index:2; /* Capa superior */
}

.vph-couple-image2 img{
    width:100%;
    height:550px;
    display:block;
    object-fit:cover;
    border-radius:0 200px 0 0;
    position:relative;
    z-index:2;
}

/* Lado derecho por debajo de la imagen */
.vph-transmission2{
    position:relative;
    z-index:1;
}

/* Lado derecho */

.vph-transmission2{
    background:#f7ece9;
    padding:40px 60px;
    position:relative;
}

/* Patrón decorativo */

.vph-transmission2::before{
    content:"";
    position:absolute;
    inset:0;
    opacity:.15;
    background:
    radial-gradient(circle at 20% 30%, #ffffff 2px, transparent 2px),
    radial-gradient(circle at 80% 60%, #ffffff 2px, transparent 2px);
    background-size:140px 140px;
    pointer-events:none;
}

.vph-title2{
    display:inline-block;
    background:#efc0b7;
    color:#fff;
    font-size:2.4rem;
    font-weight:700;
    line-height:1;
    padding:18px 100px;
    border-radius:0 35px 35px 0;
    margin: 0px 0 0 -145px;
}

.vph-title2 br{
    display:block;
}

.vph-text2{
    position:relative;
    z-index:2;
}

.vph-text2 p{
    font-size:34px;
    color:#666;
    line-height:1.45;
    margin-bottom:25px;
}

.vph-text2 strong{
    color:#555;
    font-weight:700;
}

/*==================================
RESPONSIVE TABLET
==================================*/

@media (max-width:1024px){

    .vph-top2{
        grid-template-columns:1fr;
        gap:40px;
        padding:60px 30px;
    }

    .vph-virus-image2{
        max-width:650px;
        margin:0 auto;
    }

    .vph-card2{
        font-size:1.3rem;
        padding:25px 30px;
    }

    .vph-card-pink2{
        width:95%;
    }

    .vph-bottom2{
        grid-template-columns:1fr;
        height:auto;
    }

    .vph-couple-image2 img{
        height:450px;
        border-radius:0 120px 0 0;
    }

    .vph-transmission2{
        padding:60px 40px;
    }

    .vph-title2{
        margin:0;
        padding:18px 60px;
        font-size:2.2rem;
    }

    .vph-text2 p{
        font-size:28px;
    }

}


/*==================================
RESPONSIVE MOBILE
==================================*/

@media (max-width:768px){

    .vph-top2{
        padding:50px 20px;
        gap:30px;
    }

    .vph-card2{
        padding:22px 20px;
        font-size:1.1rem;
        line-height:1.6;
        border-radius:0 20px 20px 0;
    }

    .vph-card-pink2{
        width:100%;
        margin-top:-8px;
    }

    .vph-virus-image2 img{
        border-radius:20px;
    }

    .vph-bottom2{
        grid-template-columns:1fr;
        height:auto;
    }

    .vph-couple-image2 img{
        height:320px;
        border-radius:0 80px 0 0;
        object-position:center;
    }

    .vph-transmission2{
        padding:40px 20px;
    }

    .vph-title2{
        display:block;
        width:fit-content;

        margin:0 auto 30px;
        padding:16px 30px;

        font-size:1.8rem;
        line-height:1.2;

        border-radius:20px;
        text-align:center;
    }

    .vph-title2 br{
        display:none;
    }

    .vph-text2 p{
        font-size:22px;
        line-height:1.6;
        text-align:left;
    }

}


/*==================================
MÓVILES PEQUEÑOS
==================================*/

@media (max-width:480px){

    .vph-top2{
        padding:40px 15px;
    }

    .vph-card2{
        font-size:1rem;
        padding:20px 18px;
    }

    .vph-couple-image2 img{
        height:260px;
        border-radius:0 60px 0 0;
    }

    .vph-transmission2{
        padding:35px 15px;
    }

    .vph-title2{
        width:100%;
        max-width:320px;

        font-size:1.5rem;
        padding:14px 20px;
    }

    .vph-text2 p{
        font-size:18px;
        line-height:1.7;
    }

}

/*====================================
SÍNTOMAS DEL VPH
====================================*/

.vph-symptoms{
    position:relative;
    background:#edf8f8;
    padding:80px 0;
    overflow:hidden;
}

/* Fondo decorativo */

.vph-symptoms::before{
    content:"";
    position:absolute;
    inset:0;
    opacity:.15;

    background-image:
        radial-gradient(circle at 15% 25%, transparent 65px, #ffffff 67px, transparent 69px),
        radial-gradient(circle at 80% 20%, transparent 70px, #ffffff 72px, transparent 74px),
        radial-gradient(circle at 60% 70%, transparent 60px, #ffffff 62px, transparent 64px);

    pointer-events:none;
}

/* Contenedor */

.vph-symptoms-container{
    max-width:1400px;
    margin:auto;
    padding:0 40px;

    display:grid;
    grid-template-columns:420px 1fr;
    gap:70px;
    align-items:center;
}

/*=========================
TARJETA IZQUIERDA
=========================*/

.vph-symptoms-card{
    background:#7fcaca;
    color:#fff;

    border-radius:24px;

    padding:40px;
}

.vph-symptoms-card h2{
    font-size:2rem;
    line-height:1.1;
    margin:0 0 25px;
    font-weight:700;
}

.vph-symptoms-card p{
    font-size:1.5rem;
    line-height:1.5;
    margin-bottom:20px;
}

/*=========================
LISTADO DERECHO
=========================*/

.vph-symptoms-list{
    display:flex;
    flex-direction:column;
    gap:32px;
}

.vph-symptom-item{
    display:flex;
    align-items:center;
    gap:22px;
}

.vph-icon-circle{
    width:86px;
    height:86px;
    flex-shrink:0;

    background:#f7f7f7;
    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    box-shadow:
    0 4px 10px rgba(0,0,0,.08),
    inset 0 0 0 1px rgba(0,0,0,.05);
}

.vph-icon-circle svg{
    width:42px;
    height:42px;
    fill:#7fcaca;
    stroke:#7fcaca;
    stroke-width:2;
}

.vph-symptom-text{
    font-size:1.8rem;
    line-height:1.35;
    color:#707070;
    font-weight:600;
    max-width:650px;
}

/*====================================
RESPONSIVE TABLET
====================================*/

@media (max-width:1024px){

    .vph-symptoms{
        padding:70px 0;
    }

    .vph-symptoms-container{
        grid-template-columns:1fr;
        gap:50px;
        padding:0 30px;
    }

    .vph-symptoms-card{
        max-width:700px;
        margin:0 auto;
    }

    .vph-symptoms-card h2{
        font-size:1.8rem;
    }

    .vph-symptoms-card p{
        font-size:1.3rem;
    }

    .vph-symptom-text{
        font-size:1.5rem;
        max-width:none;
    }

    .vph-icon-circle{
        width:76px;
        height:76px;
    }

    .vph-icon-circle svg{
        width:38px;
        height:38px;
    }

}


/*====================================
RESPONSIVE MOBILE
====================================*/

@media (max-width:768px){

    .vph-symptoms{
        padding:60px 0;
    }

    .vph-symptoms-container{
        padding:0 20px;
        gap:40px;
    }

    .vph-symptoms-card{
        padding:30px 25px;
        border-radius:20px;
    }

    .vph-symptoms-card h2{
        font-size:1.6rem;
        text-align:center;
        margin-bottom:20px;
    }

    .vph-symptoms-card p{
        font-size:1.1rem;
        line-height:1.7;
        text-align:center;
    }

    .vph-symptoms-list{
        gap:24px;
    }

    .vph-symptom-item{
        gap:16px;
        align-items:flex-start;
    }

    .vph-icon-circle{
        width:64px;
        height:64px;
        min-width:64px;
    }

    .vph-icon-circle svg{
        width:32px;
        height:32px;
    }

    .vph-symptom-text{
        font-size:1.2rem;
        line-height:1.5;
    }

}


/*====================================
MÓVILES PEQUEÑOS
====================================*/

@media (max-width:480px){

    .vph-symptoms{
        padding:50px 0;
    }

    .vph-symptoms-container{
        padding:0 15px;
    }

    .vph-symptoms-card{
        padding:25px 20px;
    }

    .vph-symptoms-card h2{
        font-size:1.4rem;
    }

    .vph-symptoms-card p{
        font-size:1rem;
    }

    .vph-symptom-item{
        gap:14px;
    }

    .vph-icon-circle{
        width:56px;
        height:56px;
        min-width:56px;
    }

    .vph-icon-circle svg{
        width:28px;
        height:28px;
    }

    .vph-symptom-text{
        font-size:1rem;
        line-height:1.6;
    }

}

/*====================================
¿EL VPH PUEDE CAUSAR CÁNCER?
====================================*/

.vph-cancer{
    position:relative;
    background:#f8f1ef;
    overflow:hidden;
    padding:0;
}

/* Fondo decorativo */

.vph-cancer::before{
    content:"";
    position:absolute;
    inset:0;
    opacity:.12;
    pointer-events:none;

    background:
    radial-gradient(circle at 12% 70%, transparent 60px, #ffffff 62px, transparent 64px),
    radial-gradient(circle at 42% 25%, transparent 75px, #ffffff 77px, transparent 79px),
    radial-gradient(circle at 30% 90%, transparent 50px, #ffffff 52px, transparent 54px);
}

.vph-cancer-container{
    max-width:1600px;
    margin:auto;

    display:grid;
    grid-template-columns:58% 42%;
    align-items:stretch;
}

/*=========================
CONTENIDO
=========================*/

.vph-cancer-content{
    padding:35px 70px 40px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

/* Título */

.vph-cancer-title{
    display:inline-flex;
    align-items:center;

    background:#efc0b7;
    color:#fff;

    padding:18px 35px;

    border-radius:40px 0 0 40px;

    font-size:2.8rem;
    font-weight:700;
    line-height:1.1;

    width:fit-content;
    min-width:775px;
    margin-bottom:40px;
}

/* Texto */

.vph-cancer-text{
    max-width:650px;
}

.vph-cancer-text p{
    color:#6f6f6f;
    font-size:1.8rem;
    line-height:1.35;
    margin-bottom:25px;
}

.vph-cancer-text strong{
    color:#666;
    font-weight:700;
}

/*=========================
IMAGEN
=========================*/

.vph-cancer-image{
    height:100%;
}

.vph-cancer-image img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;

    border-radius:160px 0 0 160px;
}

/*====================================
RESPONSIVE TABLET
====================================*/

@media (max-width:1024px){

    .vph-cancer-container{
        grid-template-columns:1fr;
    }

    .vph-cancer-image{
        order:-1;
        height:450px;
    }

    .vph-cancer-image img{
        border-radius:0 0 120px 120px;
    }

    .vph-cancer-content{
        padding:60px 40px;
    }

    .vph-cancer-title{
        min-width:auto;
        width:100%;

        justify-content:center;
        text-align:center;

        font-size:2.2rem;
        padding:18px 30px;

        border-radius:30px;
    }

    .vph-cancer-text{
        max-width:none;
    }

    .vph-cancer-text p{
        font-size:1.5rem;
        line-height:1.5;
    }

}


/*====================================
RESPONSIVE MOBILE
====================================*/

@media (max-width:768px){

    .vph-cancer-image{
        height:320px;
    }

    .vph-cancer-image img{
        border-radius:0 0 80px 80px;
        object-position:center;
    }

    .vph-cancer-content{
        padding:40px 20px;
    }

    .vph-cancer-title{
        width:100%;
        min-width:0;

        padding:16px 20px;

        font-size:1.8rem;
        line-height:1.2;

        border-radius:24px;

        text-align:center;
        justify-content:center;

        margin-bottom:30px;
    }

    .vph-cancer-text p{
        font-size:1.2rem;
        line-height:1.7;
        margin-bottom:20px;
    }

}


/*====================================
MÓVILES PEQUEÑOS
====================================*/

@media (max-width:480px){

    .vph-cancer-image{
        height:260px;
    }

    .vph-cancer-image img{
        border-radius:0 0 60px 60px;
    }

    .vph-cancer-content{
        padding:35px 15px;
    }

    .vph-cancer-title{
        font-size:1.5rem;
        padding:14px 18px;
        margin-bottom:25px;
    }

    .vph-cancer-text p{
        font-size:1rem;
        line-height:1.7;
    }

}

/*==================================
CUANDO ACUDIR AL MEDICO
==================================*/

.vph-cuando{
    background:#f8f8f8;
    padding:40px 20px;
    overflow:hidden;
}

.vph-container{
    max-width:1200px;
    margin:auto;
}

.vph-title{
    width:fit-content;
    margin-left:285px;

    background:#86cfd1;
    color:#fff;

    padding:22px 70px;

    border-radius:40px 0 0 40px;

    font-size:42px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.vph-subtitle{
    margin-top:10px;
    margin-bottom:40px;

    font-size:34px;
    color:#777;
}

.vph-list{
    display:flex;
    flex-direction:column;
    gap:35px;
}

.vph-item{
    position:relative;

    min-height:72px;

    display:flex;
    align-items:center;

    background:#fff;

    border-radius:22px;

    box-shadow:0 3px 12px rgba(0,0,0,.08);

    transition:.5s ease;
}

.vph-content{
    width:100%;

    text-align:center;

    color:#6d6d6d;

    font-size:29px;
    font-weight:400;

    padding:22px 110px;

    transition:.5s ease;
}

.vph-icon{
    position:absolute;

    width:95px;
    height:95px;

    background:#f6ebe7;

    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:0 3px 12px rgba(0,0,0,.08);

    transition:.5s ease;
}

.vph-icon img{
    width:55px;
    height:55px;
    object-fit:contain;
}

.vph-left{
    left:-20px;
}

.vph-right{
    right:-20px;
}

/* ACTIVO */

.vph-item.active{
    background:#86cfd1;
}

.vph-item.active .vph-content{
    color:#fff;
}

.vph-item.active .vph-icon{
    transform:scale(1.08);
}

/* HOVER */

.vph-item:hover .vph-icon{
    transform:scale(1.08);
}

/*==================================
RESPONSIVE TABLET
==================================*/

@media (max-width:1024px){

    .vph-cuando{
        padding:60px 30px;
    }

    .vph-title{
        margin-left:0;
        margin:auto;

        padding:20px 50px;

        font-size:34px;
        text-align:center;

        border-radius:30px;
    }

    .vph-subtitle{
        font-size:28px;
        text-align:center;
        margin-bottom:35px;
    }

    .vph-content{
        font-size:24px;
        padding:22px 90px;
    }

    .vph-icon{
        width:85px;
        height:85px;
    }

    .vph-icon img{
        width:48px;
        height:48px;
    }

    .vph-left{
        left:-15px;
    }

    .vph-right{
        right:-15px;
    }

}


/*==================================
RESPONSIVE MOBILE
==================================*/

@media (max-width:768px){

    .vph-cuando{
        padding:50px 20px;
    }

    .vph-title{
        width:100%;
        max-width:400px;

        margin:0 auto;

        padding:18px 20px;

        font-size:1.8rem;
        line-height:1.2;

        text-align:center;
        border-radius:24px;
    }

    .vph-subtitle{
        font-size:1.3rem;
        text-align:center;
        line-height:1.5;

        margin:20px 0 30px;
    }

    .vph-list{
        gap:25px;
    }

    .vph-item{
        min-height:90px;
        border-radius:18px;
    }

    .vph-content{
        font-size:1.1rem;
        line-height:1.5;

        padding:20px 75px;
    }

    .vph-icon{
        width:70px;
        height:70px;
        border-radius:16px;
    }

    .vph-icon img{
        width:40px;
        height:40px;
    }

    .vph-left{
        left:-10px;
    }

    .vph-right{
        right:-10px;
    }

}


/*==================================
MÓVILES PEQUEÑOS
==================================*/

@media (max-width:480px){

    .vph-cuando{
        padding:40px 15px;
    }

    .vph-title{
        font-size:1.4rem;
        padding:16px;
    }

    .vph-subtitle{
        font-size:1rem;
        margin-bottom:25px;
    }

    .vph-item{
        min-height:85px;
    }

    .vph-content{
        font-size:0.95rem;
        line-height:1.6;

        padding:18px 60px;
    }

    .vph-icon{
        width:58px;
        height:58px;
        border-radius:14px;
    }

    .vph-icon img{
        width:32px;
        height:32px;
    }

    .vph-left{
        left:-6px;
    }

    .vph-right{
        right:-6px;
    }

}

/* MENSAJE INFERIOR */

.vph-bottom-message{
    width:fit-content;
    margin:55px auto 0;

    background:#86cfd1;

    color:#fff;

    padding:16px 45px;

    border-radius:18px;

    font-size:24px;
    font-weight:600;

    text-align:center;

    box-shadow:0 3px 10px rgba(0,0,0,.08);
}
/*==================================
RESPONSIVE TABLET
==================================*/

@media (max-width:1024px){

    .vph-bottom-message{
        max-width:90%;

        margin:45px auto 0;

        padding:16px 35px;

        font-size:22px;
        line-height:1.5;
    }

}


/*==================================
RESPONSIVE MOBILE
==================================*/

@media (max-width:768px){

    .vph-bottom-message{
        width:100%;
        max-width:500px;

        margin:35px auto 0;

        padding:18px 20px;

        border-radius:16px;

        font-size:18px;
        line-height:1.6;
    }

}


/*==================================
MÓVILES PEQUEÑOS
==================================*/

@media (max-width:480px){

    .vph-bottom-message{
        max-width:100%;

        margin:30px auto 0;

        padding:16px;

        border-radius:14px;

        font-size:16px;
        line-height:1.6;
    }

}

/*==================================
DIAGNÓSTICO VPH
==================================*/

.vph-diagnostico{

    padding:0px 20px;

    background-image:url("images/FONDO-43.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    position:relative;
}

.vph-diagnostico-container{
    max-width:1400px;
    margin:auto;
}

.vph-diagnostico-title{

    max-width:900px;
    margin:0 auto 30px;

    background:#e8b9ad;

    color:#fff;
    text-align:center;

    font-size:48px;
    font-weight:700;

    padding:24px 40px;

    border-radius:0 0 35px 35px;
}

.vph-diagnostico-subtitle{

    text-align:center;

    color:#7b7b7b;

    font-size:28px;

    margin-bottom:50px;
}

.vph-diagnostico-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:25px;
}

.vph-card{

    display:flex;
    flex-direction:column;
    align-items:center;
}

.vph-card img{

    width:100%;
    height:320px;

    object-fit:cover;

    border-radius:22px;

    border:5px solid #83ced0;

    box-shadow:0 6px 15px rgba(0,0,0,.12);
}

.vph-card-text{
    margin-top:20px;
    background:#83ced0;
    color:#fff;
    text-align:center;
    width:100%;
    padding:16px 20px;
    border-radius:20px;
    font-size:20px;
    line-height:1.3;
	height: 80px;
    align-content: center;
}

.vph-card-text strong{
    font-weight:700;
}


.vph-tratamiento{
    padding:90px 20px;
    background:url("images/bg-tratamiento.webp") center center/cover no-repeat;
}

.vph-tratamiento-container{
    max-width:1400px;
    margin:auto;
}

.vph-tratamiento-title{

    max-width:1000px;

    background:#83ced0;
    color:#fff;

    padding:22px 50px;

    border-radius:0 35px 35px 0;

    font-size:46px;
    font-weight:700;
}

.vph-tratamiento-top{

    display:grid;
    grid-template-columns:500px 1fr;

    gap:40px;

    align-items:center;

    margin-top:40px;
    margin-bottom:70px;
}

.vph-tratamiento-image img{

    width:100%;
    display:block;

    border-radius:30px;

    box-shadow:0 8px 20px rgba(0,0,0,.12);
}

.vph-tratamiento-text{

    color:#666;

    font-size:34px;
    line-height:1.4;
}

.vph-tratamiento-text p{
    margin-bottom:35px;
}


/*==================================
RESPONSIVE TABLET
==================================*/

@media (max-width:1024px){

    /* DIAGNÓSTICO */

    .vph-diagnostico{
        padding:0 30px 60px;
    }

    .vph-diagnostico-title{
        font-size:38px;
        padding:20px 30px;
    }

    .vph-diagnostico-subtitle{
        font-size:24px;
        margin-bottom:40px;
    }

    .vph-diagnostico-grid{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

    .vph-card img{
        height:280px;
    }

    .vph-card-text{
        font-size:18px;
        height:75px;
    }


    /* TRATAMIENTO */

    .vph-tratamiento{
        padding:70px 30px;
    }

    .vph-tratamiento-title{
        max-width:100%;
        font-size:38px;
        padding:20px 35px;
    }

    .vph-tratamiento-top{
        grid-template-columns:1fr;
        gap:35px;
        margin-bottom:50px;
    }

    .vph-tratamiento-image{
        max-width:700px;
        margin:0 auto;
    }

    .vph-tratamiento-text{
        font-size:28px;
        line-height:1.5;
    }

}


/*==================================
RESPONSIVE MOBILE
==================================*/

@media (max-width:768px){

    /* DIAGNÓSTICO */

    .vph-diagnostico{
        padding:0 20px 50px;
    }

    .vph-diagnostico-title{
        font-size:1.8rem;
        padding:18px 20px;

        border-radius:0 0 24px 24px;
    }

    .vph-diagnostico-subtitle{
        font-size:1.2rem;
        line-height:1.6;
        margin-bottom:35px;
    }

    .vph-diagnostico-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .vph-card{
        max-width:450px;
        margin:0 auto;
    }

    .vph-card img{
        height:260px;
        border-width:4px;
    }

    .vph-card-text{
        height:auto;
        min-height:70px;

        font-size:1rem;
        line-height:1.5;

        padding:14px 0px;
    }


    /* TRATAMIENTO */

    .vph-tratamiento{
        padding:60px 20px;
    }

    .vph-tratamiento-title{
        width:100%;

        padding:18px 20px;

        border-radius:0 24px 24px 0;

        font-size:1.8rem;
        line-height:1.2;
    }

    .vph-tratamiento-top{
        margin-top:30px;
        margin-bottom:40px;
        gap:30px;
    }

    .vph-tratamiento-image img{
        border-radius:20px;
    }

    .vph-tratamiento-text{
        font-size:1.2rem;
        line-height:1.7;
    }

    .vph-tratamiento-text p{
        margin-bottom:25px;
    }

}


/*==================================
MÓVILES PEQUEÑOS
==================================*/

@media (max-width:480px){

    /* DIAGNÓSTICO */

    .vph-diagnostico{
        padding:0 15px 40px;
    }

    .vph-diagnostico-title{
        font-size:1.4rem;
        padding:16px;
    }

    .vph-diagnostico-subtitle{
        font-size:1rem;
    }

    .vph-card img{
        height:220px;
    }

    .vph-card-text{
        font-size:0.95rem;
        min-height:65px;
    }


    /* TRATAMIENTO */

    .vph-tratamiento{
        padding:50px 15px;
    }

    .vph-tratamiento-title{
        font-size:1.4rem;
        padding:16px;
    }

    .vph-tratamiento-text{
        font-size:1rem;
        line-height:1.8;
    }

}


/*=====================================
TRATAMIENTO VPH
=====================================*/

.tr-vph-treatment{
    background:#edf6f5;
    padding:20px 20px;
    position:relative;
    overflow:hidden;
}

.tr-vph-container{
    max-width:1200px;
    margin:auto;
}

.tr-vph-title{
    margin-bottom:40px;
}

.tr-vph-title h2{
    display:inline-flex;
    align-items:center;
    min-height:70px;
    padding:0 45px;
    background:#85d0d1;
    color:#fff;
    font-size:34px;
    font-weight:700;
    border-radius:50px;
}

.tr-vph-intro{
    display:grid;
    grid-template-columns:520px 1fr;
    gap:50px;
    align-items:center;
    margin-bottom:60px;
}

.tr-vph-intro-image img{
    width:100%;
    display:block;
    border-radius:25px;
}

.tr-vph-intro-text{
    color:#6d6d6d;
    font-size:20px;
    line-height:1.7;
}

.tr-vph-intro-text p{
    margin-bottom:25px;
}

/*=====================================
ACORDEÓN
=====================================*/

.tr-vph-accordion-item{
    margin-bottom:35px;
}

.tr-vph-header{
    min-height:90px;
    background:#fff;
    border-radius:60px;
    position:relative;
    display:grid;
    align-items:center;
    box-shadow:0 6px 20px rgba(0,0,0,.08);
    cursor:pointer;
    transition:.4s;
}

/*=========================
ICONO IZQUIERDA
=========================*/

.tr-vph-left .tr-vph-header{
    grid-template-columns:490px 1fr 60px;
    padding:0 25px 0 300px;
}

.tr-vph-left .tr-vph-icon{
    left:-15px;
}

.tr-vph-left .tr-vph-toggle{
    justify-self:end;
}

/*=========================
ICONO DERECHA
=========================*/

.tr-vph-right .tr-vph-header{
    grid-template-columns:60px 1fr 90px;
    padding:0 120px 0 25px;
}

.tr-vph-right .tr-vph-icon{
    right:-15px;
    left:auto;
}

.tr-vph-right .tr-vph-toggle{
    justify-self:start;
}

/*=========================
ICONO
=========================*/

.tr-vph-icon{
    position:absolute;
    width:100px;
    height:100px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 6px 20px rgba(0,0,0,.08);
    transition:.4s;
}

.tr-vph-icon img{
    width:55px;
    transition:.3s;
}

/*=========================
TÍTULO
=========================*/

.tr-vph-title-item{
    text-align:center;
    color:#85d0d1;
    font-size:24px;
    font-weight:700;
    line-height:1.3;
    transition:.3s;
}

/*=========================
FLECHA
=========================*/

.tr-vph-toggle{
    width:45px;
    height:45px;
    border:none;
    background:none;
    color:#85d0d1;
    font-size:32px;
    cursor:pointer;
    transition:.3s;
    padding:0;
}

.tr-vph-toggle span{
    display:block;
    transition:.4s;
}

/*=========================
CONTENIDO
=========================*/

.tr-vph-content{
    display:grid;
    grid-template-columns:1fr 420px;
    max-height:0;
    overflow:hidden;
    transition:max-height .5s ease;
    background:#fff;
    border-radius:0 0 30px 30px;
}

.tr-vph-content-text{
    padding:15px;
    color:#6d6d6d;
    font-size:25px;
    line-height:1.8;
}

.tr-vph-content-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/*=========================
ESTADO ACTIVO
=========================*/

.tr-vph-accordion-item.active .tr-vph-content{
    max-height:500px;
}

.tr-vph-accordion-item.active .tr-vph-header{
    background:#85d0d1;
}

.tr-vph-accordion-item.active .tr-vph-title-item{
    color:#fff;
}

.tr-vph-accordion-item.active .tr-vph-toggle{
    color:#fff;
}

.tr-vph-accordion-item.active .tr-vph-toggle span{
    transform:rotate(180deg);
}

.tr-vph-accordion-item.active .tr-vph-icon{
    background:#85d0d1;
}

/*=====================================
RESPONSIVE TABLET
=====================================*/

@media (max-width:1024px){

    .tr-vph-treatment{
        padding:60px 30px;
    }

    .tr-vph-title h2{
        font-size:28px;
        padding:15px 35px;
        min-height:auto;
        text-align:center;
    }

    .tr-vph-intro{
        grid-template-columns:1fr;
        gap:35px;
        margin-bottom:50px;
    }

    .tr-vph-intro-image{
        max-width:650px;
        margin:0 auto;
    }

    .tr-vph-intro-text{
        font-size:18px;
    }

    /* Acordeón */

    .tr-vph-left .tr-vph-header,
    .tr-vph-right .tr-vph-header{
        grid-template-columns:90px 1fr 50px;
        padding:0 20px 0 90px;
    }

    .tr-vph-left .tr-vph-icon,
    .tr-vph-right .tr-vph-icon{
        left:-10px;
        right:auto;
    }

    .tr-vph-title-item{
        font-size:20px;
    }

    .tr-vph-content{
        grid-template-columns:1fr;
    }

    .tr-vph-content-image{
        height:300px;
    }

    .tr-vph-content-text{
        font-size:20px;
        padding:25px;
    }

    .tr-vph-accordion-item.active .tr-vph-content{
        max-height:900px;
    }

}


/*=====================================
RESPONSIVE MOBILE
=====================================*/

@media (max-width:768px){

    .tr-vph-treatment{
        padding:50px 20px;
    }

    .tr-vph-title{
        text-align:center;
        margin-bottom:30px;
    }

    .tr-vph-title h2{
        display:block;
        width:100%;

        padding:18px 20px;

        border-radius:24px;

        font-size:1.7rem;
        line-height:1.3;
    }

    .tr-vph-intro{
        gap:25px;
        margin-bottom:40px;
    }

    .tr-vph-intro-image img{
        border-radius:20px;
    }

    .tr-vph-intro-text{
        font-size:1.1rem;
        line-height:1.7;
    }

    .tr-vph-intro-text p{
        margin-bottom:20px;
    }

    /* Acordeón */

    .tr-vph-header{
        min-height:80px;
        border-radius:24px;
    }

    .tr-vph-left .tr-vph-header,
    .tr-vph-right .tr-vph-header{
        grid-template-columns:70px 1fr 40px;
        padding:15px 15px 15px 70px;
    }

    .tr-vph-left .tr-vph-icon,
    .tr-vph-right .tr-vph-icon{
        width:70px;
        height:70px;

        left:-8px;
        right:auto;
    }

    .tr-vph-icon img{
        width:38px;
    }

    .tr-vph-title-item{
        font-size:1rem;
        line-height:1.4;
        text-align:left;
    }

    .tr-vph-toggle{
        width:40px;
        height:40px;
        font-size:24px;
    }

    .tr-vph-content-text{
        font-size:1rem;
        line-height:1.8;
        padding:20px;
    }

    .tr-vph-content-image{
        height:220px;
    }

    .tr-vph-accordion-item.active .tr-vph-content{
        max-height:1200px;
    }

}


/*=====================================
MÓVILES PEQUEÑOS
=====================================*/

@media (max-width:480px){

    .tr-vph-treatment{
        padding:40px 15px;
    }

    .tr-vph-title h2{
        font-size:1.4rem;
        padding:16px;
    }

    .tr-vph-intro-text{
        font-size:1rem;
    }

    .tr-vph-left .tr-vph-header,
    .tr-vph-right .tr-vph-header{
        grid-template-columns:60px 1fr 35px;
        padding:12px 12px 12px 60px;
    }

    .tr-vph-left .tr-vph-icon,
    .tr-vph-right .tr-vph-icon{
        width:60px;
        height:60px;
    }

    .tr-vph-icon img{
        width:32px;
    }

    .tr-vph-title-item{
        font-size:0.9rem;
    }

    .tr-vph-content-text{
        font-size:0.95rem;
        padding:18px;
    }

    .tr-vph-content-image{
        height:180px;
    }

}


/*=====================================
TIPOS DE VPH
=====================================*/

.vph-types{
    padding:40px 20px;
}

.vph-types-container{
    max-width:1200px;
    margin:auto;
}

.vph-types-title{
    text-align:center;
    font-size:58px;
    font-weight:700;
    color:#666;
    margin:0px;
}

.vph-types-subtitle{
    text-align:center;
    font-size:24px;
    color:#6d6d6d;
    margin-bottom:60px;
}

.vph-types-card{
    max-width:860px;
    margin:auto;
    background:#fff;
    border-radius:60px;
    padding:55px 40px;
    display:grid;
    grid-template-columns:1fr 1px 1fr;
    gap:40px;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
}

.vph-divider{
    width:1px;
    background:#9d9d9d;
}

.vph-type-item{
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
}

.vph-type-heading{
    font-size:22px;
    font-weight:700;
    margin-bottom:25px;
}

.low-risk{
    color:#eab6aa;
}

.high-risk{
    color:#7ecbcb;
}

.vph-type-item p{
    max-width:320px;
    font-size:24px;
    line-height:1.25;
    color:#666;
    margin-bottom:50px;
}

.vph-type-icon{
    width:175px;
    height:175px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.low-bg{
    background:#eab6aa;
}

.high-bg{
    background:#7ecbcb;
}

.vph-type-icon img{
    width:180px;
    display:block;
}


/*=====================================
RESPONSIVE TABLET
=====================================*/

@media (max-width:1024px){

    .vph-types{
        padding:60px 30px;
    }

    .vph-types-title{
        font-size:48px;
    }

    .vph-types-subtitle{
        font-size:22px;
        margin-bottom:50px;
    }

    .vph-types-card{
        max-width:900px;

        padding:45px 30px;

        gap:30px;

        border-radius:40px;
    }

    .vph-type-heading{
        font-size:20px;
    }

    .vph-type-item p{
        font-size:20px;
        margin-bottom:40px;
    }

    .vph-type-icon{
        width:150px;
        height:150px;
    }

    .vph-type-icon img{
        width:150px;
    }

}


/*=====================================
RESPONSIVE MOBILE
=====================================*/

@media (max-width:768px){

    .vph-types{
        padding:50px 20px;
    }

    .vph-types-title{
        font-size:2.2rem;
        line-height:1.2;
    }

    .vph-types-subtitle{
        font-size:1.1rem;
        line-height:1.6;

        margin-bottom:40px;
    }

    .vph-types-card{
        grid-template-columns:1fr;

        padding:35px 25px;

        gap:35px;

        border-radius:30px;
    }

    .vph-divider{
        width:100%;
        height:1px;
    }

    .vph-type-heading{
        font-size:1.2rem;
        margin-bottom:20px;
    }

    .vph-type-item p{
        max-width:none;

        font-size:1.1rem;
        line-height:1.6;

        margin-bottom:30px;
    }

    .vph-type-icon{
        width:130px;
        height:130px;
    }

    .vph-type-icon img{
        width:130px;
    }

}


/*=====================================
MÓVILES PEQUEÑOS
=====================================*/

@media (max-width:480px){

    .vph-types{
        padding:40px 15px;
    }

    .vph-types-title{
        font-size:1.8rem;
    }

    .vph-types-subtitle{
        font-size:1rem;
        margin-bottom:30px;
    }

    .vph-types-card{
        padding:25px 20px;
        border-radius:24px;
    }

    .vph-type-heading{
        font-size:1rem;
    }

    .vph-type-item p{
        font-size:0.95rem;
        line-height:1.7;
        margin-bottom:25px;
    }

    .vph-type-icon{
        width:110px;
        height:110px;
    }

    .vph-type-icon img{
        width:110px;
    }

}


.vph-que-hacer{
    position:relative;
    overflow:hidden;
    padding:60px 0 80px;
}

.vph-que-hacer-bg{
    position:absolute;
    inset:0;
    background:url("images/fondo-testimonios.webp") center center/cover no-repeat;
    z-index:1;
}

.vph-que-hacer-container{
    position:relative;
    z-index:2;
    width:90%;
    max-width:1320px;
    margin:auto;
}

/* TITULO */

.vph-que-hacer-title{
    width:65%;
    background:#e9b8ad;
    border-radius:0 40px 40px 0;
    padding:25px 60px;
    margin-bottom:55px;
}

.vph-que-hacer-title h2{
    color:#fff;
    margin:0;
    font-size:48px;
    font-weight:700;
    text-transform:uppercase;
    line-height:1.1;
}

/* GRID PRINCIPAL */

.vph-que-hacer-grid{
    display:grid;
    grid-template-columns:72% 28%;
    gap:70px;
    align-items:start;
}

/* TEXTO */

.vph-que-hacer-text p{
    font-size:26px;
    color:#6f6f6f;
    line-height:1.25;
    max-width:780px;
    margin:0 0 50px;
}

.vph-que-hacer-text h3{
    font-size:34px;
    color:#6f6f6f;
    font-weight:700;
    margin:0 0 45px;
}

/* DOS TARJETAS INFERIORES */

.vph-que-hacer-bottom{
    display:flex;
    justify-content:space-between;
    gap:70px;
	height: 280px;
}

/* COLUMNA DERECHA */

.vph-que-hacer-right{
    margin-top:-135px;
    display:flex;
    flex-direction:column;
    gap:60px;
}

.vph-card-top{
    margin-top:-59px;
}

/* TARJETAS */

.vph-card{
    width:100%;
}

.vph-card span{
    display:block;
    max-width:340px;
    margin:0 auto 18px;
    text-align:center;
    font-size:21px;
    line-height:1.2;
    color:#6b6b6b;
}

.vph-card-img{
    width:100%;
    aspect-ratio:1.55/1;
    overflow:hidden;
    border-radius:28px;
}

.vph-card-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/*=====================================
RESPONSIVE TABLET
=====================================*/

@media (max-width:1024px){

    .vph-que-hacer{
        padding:60px 0;
    }

    .vph-que-hacer-container{
        width:92%;
    }

    .vph-que-hacer-title{
        width:85%;
        padding:20px 40px;
        margin-bottom:45px;
    }

    .vph-que-hacer-title h2{
        font-size:38px;
    }

    .vph-que-hacer-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .vph-que-hacer-text p{
        max-width:none;
        font-size:22px;
        margin-bottom:40px;
    }

    .vph-que-hacer-text h3{
        font-size:30px;
        margin-bottom:35px;
    }

    .vph-que-hacer-bottom{
        gap:30px;
        height:auto;
    }

    .vph-que-hacer-right{
        margin-top:0;
        flex-direction:row;
        gap:30px;
    }

    .vph-card-top{
        margin-top:0;
    }

    .vph-card{
        flex:1;
    }

    .vph-card span{
        font-size:18px;
    }

}


/*=====================================
RESPONSIVE MOBILE
=====================================*/

@media (max-width:768px){

    .vph-que-hacer{
        padding:50px 0;
    }

    .vph-que-hacer-container{
        width:90%;
    }

    .vph-que-hacer-title{
        width:100%;

        padding:18px 20px;

        border-radius:24px;

        margin-bottom:35px;
    }

    .vph-que-hacer-title h2{
        font-size:1.8rem;
        line-height:1.2;
        text-align:center;
    }

    .vph-que-hacer-grid{
        gap:40px;
    }

    .vph-que-hacer-text p{
        font-size:1.1rem;
        line-height:1.7;
        margin-bottom:30px;
    }

    .vph-que-hacer-text h3{
        font-size:1.5rem;
        text-align:center;
        margin-bottom:30px;
    }

    .vph-que-hacer-bottom,
    .vph-que-hacer-right{
        flex-direction:column;
        gap:25px;
        height:auto;
    }

    .vph-card span{
        max-width:none;

        font-size:1rem;
        line-height:1.5;

        margin-bottom:15px;
    }

    .vph-card-img{
        border-radius:20px;
    }

}


/*=====================================
MÓVILES PEQUEÑOS
=====================================*/

@media (max-width:480px){

    .vph-que-hacer{
        padding:40px 0;
    }

    .vph-que-hacer-container{
        width:92%;
    }

    .vph-que-hacer-title{
        padding:16px;
    }

    .vph-que-hacer-title h2{
        font-size:1.4rem;
    }

    .vph-que-hacer-text p{
        font-size:1rem;
    }

    .vph-que-hacer-text h3{
        font-size:1.2rem;
    }

    .vph-card span{
        font-size:0.95rem;
    }

    .vph-card-img{
        border-radius:18px;
    }

}


.vph-prevencion6{
    position:relative;
    overflow:hidden;
    padding:70px 0;
}

.vph-prevencion-bg6{
    position:absolute;
    inset:0;
    background:url("images/Fondo-azul-5.jpg") center center/cover no-repeat;
    z-index:1;
}

.vph-prevencion-container6{
    position:relative;
    z-index:2;
    width:90%;
    max-width:1250px;
    margin:auto;
}

.vph-prevencion6 h2{
    text-align:center;
    color:#7cc9ca;
    font-size:54px;
    font-weight:700;
    margin-bottom:10px;
}

.vph-prevencion-subtitle6{
    text-align:center;
    font-size:28px;
    color:#666;
    margin-bottom:50px;
}

.vph-prevencion-content6{
    display:grid;
    grid-template-columns:450px 1fr;
    gap:0px;
    align-items:center;
}

.vph-prevencion-image6{
    border-radius:35px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.vph-prevencion-image6 img{
    width:100%;
    display:block;
    aspect-ratio:1/1;
    object-fit:cover;
    transition:
    opacity .5s ease,
    transform .5s ease;
}

.vph-prevencion-items6{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.vph-item6{
    background:#fff;
    color:#7cc9ca;
    padding:18px 28px;
    border-radius: 0 40px 40px 0;
    font-size:20px;
    font-weight:500;
    cursor:pointer;
    transition:.35s;
    box-shadow:0 5px 12px rgba(0,0,0,.08);
    width:fit-content;
    min-width:420px;
}

.vph-item6:nth-child(1){
    width:100%;
}

.vph-item6:nth-child(2){
    width:58%;
}

.vph-item6:nth-child(3){
    width:58%;
}

.vph-item6:nth-child(4){
    width:86%;
}

.vph-item6:nth-child(5){
    width:100%;
}

.vph-item6.active{
    background:#7cc9ca;
    color:#fff;
    font-weight:700;
}

@media(max-width:991px){

    .vph-prevencion-content6{
        grid-template-columns:1fr;
    }

    .vph-prevencion-image6{
        max-width:400px;
        margin:auto;
    }

    .vph-item6,
    .vph-item6:nth-child(1),
    .vph-item6:nth-child(2),
    .vph-item6:nth-child(3),
    .vph-item6:nth-child(4),
    .vph-item6:nth-child(5){
        width:100%;
        min-width:auto;
    }

    .vph-prevencion6 h2{
        font-size:34px;
    }

    .vph-prevencion-subtitle6{
        font-size:22px;
    }
}

/*=====================================
RESPONSIVE TABLET
=====================================*/

@media (max-width:991px){

    .vph-prevencion6{
        padding:60px 0;
    }

    .vph-prevencion-container6{
        width:92%;
    }

    .vph-prevencion6 h2{
        font-size:42px;
        line-height:1.2;
    }

    .vph-prevencion-subtitle6{
        font-size:24px;
        margin-bottom:40px;
    }

    .vph-prevencion-content6{
        grid-template-columns:1fr;
        gap:40px;
    }

    .vph-prevencion-image6{
        max-width:400px;
        width:100%;
        margin:auto;
    }

    .vph-prevencion-items6{
        gap:16px;
    }

    .vph-item6,
    .vph-item6:nth-child(1),
    .vph-item6:nth-child(2),
    .vph-item6:nth-child(3),
    .vph-item6:nth-child(4),
    .vph-item6:nth-child(5){
        width:100%;
        min-width:auto;
    }

}


/*=====================================
RESPONSIVE MOBILE
=====================================*/

@media (max-width:768px){

    .vph-prevencion6{
        padding:50px 0;
    }

    .vph-prevencion-container6{
        width:90%;
    }

    .vph-prevencion6 h2{
        font-size:2rem;
        line-height:1.2;
    }

    .vph-prevencion-subtitle6{
        font-size:1.1rem;
        line-height:1.6;
        margin-bottom:30px;
    }

    .vph-prevencion-content6{
        gap:30px;
    }

    .vph-prevencion-image6{
        border-radius:24px;
    }

    .vph-item6{
        padding:16px 20px;

        border-radius:20px;

        font-size:1rem;
        line-height:1.5;

        text-align:center;
    }

}


/*=====================================
MÓVILES PEQUEÑOS
=====================================*/

@media (max-width:480px){

    .vph-prevencion6{
        padding:40px 0;
    }

    .vph-prevencion-container6{
        width:92%;
    }

    .vph-prevencion6 h2{
        font-size:1.6rem;
    }

    .vph-prevencion-subtitle6{
        font-size:1rem;
        margin-bottom:25px;
    }

    .vph-item6{
        padding:14px 16px;
        font-size:0.95rem;
        border-radius:18px;
    }

    .vph-prevencion-image6{
        border-radius:20px;
    }

}


.vph-faq7{
    position:relative;
    overflow:hidden;
    padding:70px 0 40px;
    background:#fff;
}



.vph-faq7-container{
    position:relative;
    z-index:2;
    width:90%;
    max-width:1150px;
    margin:auto;
}

/* TITULO */

.vph-faq7-title{
    width:78%;
    margin-left:auto;
    margin-bottom:55px;

    background:#e8b8ad;
    border-radius:30px 0 0 30px;

    padding:18px 40px;
}

.vph-faq7-title h2{
    margin:0;
    text-align:center;

    color:#fff;
    font-size:30px;
    font-weight:700;
    letter-spacing:.5px;
}

/* ITEMS */

.vph-faq7-item{
    display:flex;
    align-items:center;
    margin-bottom:28px;
    position:relative;
}

.vph-faq7-image{
    width:42%;
    min-width:42%;
    height:170px;

    border-radius:32px;
    overflow:hidden;

    position:relative;
    z-index:1;

    box-shadow:0 6px 15px rgba(0,0,0,.08);
}

.vph-faq7-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.vph-faq7-card{
    width:68%;
    margin-left:-60px;
	height: 106px;
    background:#f3e9e6;
    border-radius:35px;
    padding:32px 38px;
    position:relative;
    z-index:2;
    box-shadow:0 6px 15px rgba(0,0,0,.08);
}

.vph-faq7-card h3{
    margin:0 0 14px;

    color:#81cfd0;
    font-size:20px;
    font-weight:700;
}

.vph-faq7-card p{
    margin:0;

    color:#6e6e6e;
    font-size:17px;
    line-height:1.35;
}

/*=====================================
RESPONSIVE TABLET
=====================================*/

@media (max-width:1024px){

    .vph-faq7{
        padding:60px 0 30px;
    }

    .vph-faq7-container{
        width:92%;
    }

    .vph-faq7-title{
        width:90%;
        margin:0 auto 45px;
        border-radius:24px;
        padding:18px 30px;
    }

    .vph-faq7-title h2{
        font-size:26px;
    }

    .vph-faq7-item{
        align-items:stretch;
    }

    .vph-faq7-image{
        width:40%;
        min-width:40%;
        height:150px;
        border-radius:28px;
    }

    .vph-faq7-card{
        width:65%;
        height:auto;
        min-height:150px;

        margin-left:-40px;

        padding:25px 30px;

        border-radius:28px;
    }

    .vph-faq7-card h3{
        font-size:18px;
    }

    .vph-faq7-card p{
        font-size:16px;
        line-height:1.5;
    }

}


/*=====================================
RESPONSIVE MOBILE
=====================================*/

@media (max-width:768px){

    .vph-faq7{
        padding:50px 0 20px;
    }

    .vph-faq7-container{
        width:90%;
    }

    .vph-faq7-title{
        width:100%;

        margin-bottom:35px;

        padding:16px 20px;

        border-radius:20px;
    }

    .vph-faq7-title h2{
        font-size:1.6rem;
        line-height:1.3;
    }

    .vph-faq7-item{
        flex-direction:column;
        gap:0;
        margin-bottom:25px;
    }

    .vph-faq7-image{
        width:100%;
        min-width:auto;
        height:220px;

        border-radius:20px;
    }

    .vph-faq7-card{
        width:92%;
        height:auto;

        margin:-25px auto 0;

        padding:20px;

        border-radius:20px;
    }

    .vph-faq7-card h3{
        font-size:1.1rem;
        margin-bottom:10px;
    }

    .vph-faq7-card p{
        font-size:0.95rem;
        line-height:1.6;
    }

}


/*=====================================
MÓVILES PEQUEÑOS
=====================================*/

@media (max-width:480px){

    .vph-faq7{
        padding:40px 0 15px;
    }

    .vph-faq7-container{
        width:92%;
    }

    .vph-faq7-title h2{
        font-size:1.3rem;
    }

    .vph-faq7-image{
        height:180px;
    }

    .vph-faq7-card{
        width:95%;
        padding:18px 16px;
    }

    .vph-faq7-card h3{
        font-size:1rem;
    }

    .vph-faq7-card p{
        font-size:0.9rem;
        line-height:1.7;
    }

}

.vph-cta8{
    position:relative;
    overflow:hidden;
    padding:70px 0;
}

.vph-cta8-bg{
    position:absolute;
    inset:0;
    background:url("images/Fondo-rosa-2.jpg") center center/cover no-repeat;
    z-index:1;
}

.vph-cta8-container{
    position:relative;
    z-index:2;
    width:90%;
    max-width:1150px;
    margin:auto;
}

/* TÍTULO */

.vph-cta8 h2{
    margin:0 0 60px;

    color:#707070;
    font-size:32px;
    font-weight:300;
    line-height:1.2;
}

.vph-cta8 h2 strong{
    font-weight:700;
}

/* CONTENIDO */

.vph-cta8-content{
    display:flex;
    align-items:center;
    gap:40px;
}

/* IMAGEN */

.vph-cta8-image{
    width:290px;
    min-width:290px;
    height:290px;

    border-radius:50%;
    overflow:hidden;
}

.vph-cta8-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* TEXTO */

.vph-cta8-info{
    flex:1;
    display:flex;
    flex-direction:column;
}

.vph-cta8-info h3{
    margin:0 0 28px;

    color:#6d6d6d;
    font-size:22px;
    font-weight:700;
    line-height:1.2;

    max-width:720px;
}

.vph-cta8-info p{
    margin:0 0 45px;

    color:#7a7a7a;
    font-size:20px;
    line-height:1.2;

    max-width:620px;
}

/* BOTÓN */

.vph-cta8-btn{
    align-self:flex-end;
    min-width:240px;
    padding:24px 50px;
    background:#80cccd;
    color:#fff;
    text-decoration:none;
    font-size:20px;
    font-weight:700;
    border-radius: 35px 35px 0 35px;
    box-shadow:0 8px 12px rgba(0,0,0,.12);
    transition:.3s;
}

.vph-cta8-btn:hover{
    transform:translateY(-4px);
}

/*=====================================
RESPONSIVE TABLET
=====================================*/

@media (max-width:1024px){

    .vph-cta8{
        padding:60px 0;
    }

    .vph-cta8-container{
        width:92%;
    }

    .vph-cta8 h2{
        font-size:28px;
        margin-bottom:50px;
        text-align:center;
    }

    .vph-cta8-content{
        gap:30px;
    }

    .vph-cta8-image{
        width:240px;
        min-width:240px;
        height:240px;
    }

    .vph-cta8-info h3{
        font-size:20px;
    }

    .vph-cta8-info p{
        font-size:18px;
        line-height:1.5;
        margin-bottom:35px;
    }

    .vph-cta8-btn{
        min-width:220px;
        padding:20px 40px;
        font-size:18px;
    }

}


/*=====================================
RESPONSIVE MOBILE
=====================================*/

@media (max-width:768px){

    .vph-cta8{
        padding:50px 0;
    }

    .vph-cta8-container{
        width:90%;
    }

    .vph-cta8 h2{
        font-size:1.8rem;
        line-height:1.4;
        margin-bottom:40px;
        text-align:center;
    }

    .vph-cta8-content{
        flex-direction:column;
        gap:30px;
        text-align:center;
    }

    .vph-cta8-image{
        width:220px;
        min-width:auto;
        height:220px;
        margin:0 auto;
    }

    .vph-cta8-info{
        align-items:center;
    }

    .vph-cta8-info h3{
        font-size:1.3rem;
        line-height:1.5;
        margin-bottom:20px;
    }

    .vph-cta8-info p{
        font-size:1rem;
        line-height:1.7;
        margin-bottom:30px;
        max-width:none;
    }

    .vph-cta8-btn{
        align-self:center;

        min-width:220px;

        padding:18px 35px;

        font-size:1rem;

        border-radius:24px;
    }

}


/*=====================================
MÓVILES PEQUEÑOS
=====================================*/

@media (max-width:480px){

    .vph-cta8{
        padding:40px 0;
    }

    .vph-cta8-container{
        width:92%;
    }

    .vph-cta8 h2{
        font-size:1.4rem;
    }

    .vph-cta8-image{
        width:180px;
        height:180px;
    }

    .vph-cta8-info h3{
        font-size:1.1rem;
    }

    .vph-cta8-info p{
        font-size:0.95rem;
        line-height:1.8;
    }

    .vph-cta8-btn{
        width:100%;
        min-width:auto;

        padding:16px 0px;

        font-size:0.95rem;
    }

}