.page {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
header {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: white; /* Asegura visibilidad */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Opcional: sombra para distinguir el menú */
}

/* Importar fuentes */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}



.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 40px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 180px; /* Ajuste para mejor adaptabilidad */
    max-width: 100%;
    height: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
    text-align: center;
	align-content:center;
	
}

.nav-links a {
    text-decoration: none;
    color: #003366;
    font-weight: 500;
	font-size: 20px;
}

.nav-links .active {
    border-bottom: 6px solid #A36D9C;
}



.responsive-only {
    display: none; /* Ocultar por defecto */
}

/* Mostrar solo cuando el menú móvil esté activo */
@media screen and (max-width: 768px) {
    .responsive-only {
        display: block;
    }
}


/* Estilos para el icono hamburguesa */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    height: 3px;
    width: 25px;
    background-color: #333;
    margin: 4px 0;
    transition: 0.4s;
}

/* Estilos responsivos */
@media (max-width: 1024px) {
    .navbar {
        padding: 5px 20px;
    }

    .nav-links {
        gap: 30px;
    }

    .content h1 {
        font-size: 4rem;
    }

    .content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #fff;
        width: 100%;
        height: calc(100vh - 60px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .btn-contacto {
        display: none; /* Ocultar el botón en versiones móviles */
    }
	

    .content h3 {
        font-size: 3rem;
    }

    .content p {
        font-size: 0.9rem;
    }

    .hero {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .logo img {
        width: 120px;
    }

    .content h1 {
        font-size: 2.5rem;
    }

    .content p {
        font-size: 0.8rem;
    }

    .btn-cta {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .hero {
        height: 200px;
    }
}


/* Sección principal con imagen de fondo */
.hero-vhp {
    width: 100%;
    height: 376px;
    background-image: url("images/Retiro-de-verrugas.png"); /* Reemplazar */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Manda el contenido a la derecha */
    padding: 20px;
    box-sizing: border-box;
}

/* Contenedor del texto */
.hero-vhp-content {
    max-width: 690px;
    text-align: right;
    padding: 30px;
    border-radius: 12px;
    
}

/* Título */
.vhp-title {
    font-size: 32px;
    font-weight: bold;
    color: #0a3a70;
    margin-bottom: 20px;
}

/* Texto */
.vhp-description {
    font-size: 18px;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Botón */
.vhp-btn {
    display: inline-block;
    background: #0a67c7;
    color: #fff;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    transition: 0.3s;
}

.vhp-btn:hover {
    background: #084e97;
}

/* ============================= */
/*        RESPONSIVE CSS         */
/* ============================= */

/* ===== Tablets (768px – 1024px) ===== */
@media (max-width: 1024px) {

    .hero-vhp {
        height: 320px;
        justify-content: center; /* Centra el texto en tablet */
        padding: 30px;
    }

    .hero-vhp-content {
        max-width: 80%;
        text-align: center;
        padding: 25px;
    }

    .vhp-title {
        font-size: 28px;
    }

    .vhp-description {
        font-size: 16px;
    }

    .vhp-btn {
        font-size: 16px;
        padding: 12px 24px;
    }
}

/* ===== Móviles (480px – 767px) ===== */
@media (max-width: 767px) {

    .hero-vhp {
        height: auto; /* Permite que crezca según contenido */
        padding: 40px 20px;
        justify-content: center;  /* Centrar texto en móvil */
    }

    .hero-vhp-content {
        max-width: 100%;
        text-align: center;
        padding: 20px;
        background: rgba(255, 255, 255, 0.75); /* mejora la lectura en móviles */
    }

    .vhp-title {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .vhp-description {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .vhp-btn {
        font-size: 16px;
        padding: 12px 22px;
    }
}

/* ===== Móviles pequeños (<480px) ===== */
@media (max-width: 480px) {

    .hero-vhp {
        padding: 35px 15px;
        background-position: center right; /* Ajusta encuadre */
    }

    .vhp-title {
        font-size: 22px;
    }

    .vhp-description {
        font-size: 14px;
    }

    .vhp-btn {
        width: 100%; /* Botón ancho completo */
        text-align: center;
        padding: 14px;
        font-size: 16px;
    }
}



/* SECCION_2 */
/* --- Sección VPH --- */

.vph-section {
    padding: 90px 115px;
    color: #12314A;
    font-family: Arial, sans-serif;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.vph-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #12314A;
}

/* GRID PRINCIPAL */
.text-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
}

.text-block {
    font-size: 18px;
    line-height: 1.6;
}

/* IMAGEN Y RECUADRO */
.image-container {
    position: relative;
    width: 100%;
}

.image-container img {
    width: 100%;
    border-radius: 12px;
}

/* CAJA SUPERPUESTA */
.floating-box {
    position: absolute;
    left: 0%;
    bottom: 45px;
    transform: translateX(-50%);
    background: white;
    padding: 25px 30px;
    max-width: 420px;
    border-radius: 12px;
    box-shadow: 0px 6px 25px rgba(0,0,0,0.15);
    text-align: center;
}

.floating-box p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #6B1C5F;
    font-weight: 600;
}

/* SUBTÍTULO */
.subtitle {
    text-align: center;
    margin-top: 25px;
    font-size: 32px;
    font-weight: 800;
}

.description {
    text-align: center;
    font-size: 20px;
    margin-top: 15px;
}

/* ============================= */
/*        RESPONSIVE CSS         */
/* ============================= */

/* ===== Tablets (768px – 1024px) ===== */
@media (max-width: 1024px) {

    .vph-section {
        padding: 60px 60px;
    }

    .text-img-grid {
        grid-template-columns: 1fr; /* Pasa a 1 columna */
        gap: 50px;
    }

    .image-container {
        order: -1; /* La imagen arriba y texto abajo */
    }

    .vph-title {
        font-size: 32px;
        text-align: center;
    }

    .text-block {
        font-size: 17px;
        text-align: center;
    }

    .floating-box {
        left: 50%;
        transform: translateX(-50%);
        bottom: -25px;
        max-width: 380px;
        padding: 20px 25px;
    }

    .floating-box p {
        font-size: 15px;
    }

    .subtitle {
        font-size: 30px;
    }

    .description {
        font-size: 18px;
    }
}

/* ===== Móviles (480px – 767px) ===== */
@media (max-width: 767px) {

    .vph-section {
        padding: 50px 35px;
    }

    .vph-title {
        font-size: 28px;
        text-align: center;
    }

    .text-img-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .text-block {
        font-size: 16px;
        text-align: center;
        line-height: 1.55;
    }

    .floating-box {
        position: relative;
        left: 0;
        transform: none;
        bottom: 0;
        margin-top: 20px;
        max-width: 100%;
        padding: 20px;
    }

    .floating-box p {
        font-size: 15px;
    }

    .subtitle {
        font-size: 26px;
    }

    .description {
        font-size: 17px;
        margin-top: 10px;
    }
}

/* ===== Móviles pequeños (<480px) ===== */
@media (max-width: 480px) {

    .vph-section {
        padding: 45px 25px;
    }

    .vph-title {
        font-size: 24px;
    }

    .text-block {
        font-size: 15px;
    }

    .floating-box {
        padding: 18px 15px;
    }

    .floating-box p {
        font-size: 14px;
    }

    .subtitle {
        font-size: 22px;
    }

    .description {
        font-size: 16px;
    }
}


/* SECCION_3 */
/* ===== SECCIÓN PRINCIPAL ===== */
.tratamientos-section {
  width: 100%;
  padding: 0px 20px;
  text-align: center;
  color: #003044; /* azul similar al de la imagen */
}

/* ===== CONTENEDOR TARJETAS ===== */
.tratamientos-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

/* ===== TARJETAS ===== */
.tratamiento-card {
  background: #fff;
  width: 250px;
  padding: 35px 20px;
  border-radius: 20px;
  box-shadow: 0px 10px 18px rgba(0, 0, 0, 0.10);
  transition: transform .25s ease;
}

.tratamiento-card:hover {
  transform: translateY(-5px);
}

.tratamiento-card img {
  width: 85px;
  margin-bottom: 20px;
}

.tratamiento-card h3 {
  font-size: 1.1rem;
  color: #003044;
  font-weight: 700;
  margin-bottom: 6px;
}

.tratamiento-card .subtext {
  font-size: 0.85rem;
  color: #003044;
}

/* ===== TEXTO FINAL ===== */
.texto-final {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.5rem;
  color: #003044;
  padding-bottom: 30px;
}

.texto-final strong {
  font-weight: 700;
}

/* ============================= */
/*        RESPONSIVE CSS         */
/* ============================= */

/* ===== Pantallas medianas / Tablets grandes (≤1200px) ===== */
@media (max-width: 1200px) {

  .tratamientos-container {
    gap: 30px;
  }

  .tratamiento-card {
    width: 230px;
    padding: 30px 18px;
  }

  .tratamiento-card img {
    width: 80px;
  }
}

/* ===== Tablets (≤992px) ===== */
@media (max-width: 992px) {

  .tratamientos-section {
    padding: 0px 15px;
  }

  .tratamientos-container {
    gap: 25px;
  }

  .tratamiento-card {
    width: 220px;
    padding: 28px 18px;
  }

  .tratamiento-card h3 {
    font-size: 1rem;
  }

  .tratamiento-card .subtext {
    font-size: 0.82rem;
  }

  .texto-final {
    font-size: 1rem;
    line-height: 1.4rem;
  }
}

/* ===== Móviles medianos (≤768px) ===== */
@media (max-width: 768px) {

  .tratamientos-container {
    gap: 22px;
  }

  .tratamiento-card {
    width: 200px;
    padding: 25px 16px;
    border-radius: 16px;
  }

  .tratamiento-card img {
    width: 75px;
  }

  .tratamiento-card h3 {
    font-size: 0.95rem;
  }

  .tratamiento-card .subtext {
    font-size: 0.8rem;
  }

  .texto-final {
    font-size: 0.95rem;
    line-height: 1.35rem;
  }
}

/* ===== Móviles pequeños (≤480px) ===== */
@media (max-width: 480px) {

  .tratamientos-section {
    padding: 0px 10px;
  }

  .tratamientos-container {
    gap: 18px;
  }

  .tratamiento-card {
    width: 100%;
    max-width: 300px;
    padding: 25px 16px;
    margin: 0 auto;
  }

  .tratamiento-card img {
    width: 70px;
    margin-bottom: 15px;
  }

  .tratamiento-card h3 {
    font-size: 0.9rem;
  }

  .tratamiento-card .subtext {
    font-size: 0.78rem;
  }

  .texto-final {
    font-size: 0.92rem;
    line-height: 1.3rem;
    padding: 0 10px 25px 10px;
  }
}



/* SECCION_4 */

/* ===== SECCIÓN GENERAL ===== */
.sabias-section {
  background-color: #fdeff4; /* rosa muy claro */
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  font-family: 'Arial', sans-serif;
}

/* ===== CONTENEDOR PRINCIPAL ===== */
.sabias-container {
  max-width: 1200px;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* ===== IMAGEN ===== */
.sabias-img img {
  width: 420px;
  border-radius: 8px;
  object-fit: cover;
}

/* ===== TEXTO ===== */
.sabias-texto h2 {
  color: #003044;  /* azul del diseño */
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.sabias-texto p {
  color: #003044;
  font-size: 1.1rem;
  line-height: 1.7rem;
  max-width: 580px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .sabias-container {
    flex-direction: column;
    text-align: center;
  }

  .sabias-texto p {
    max-width: 100%;
  }
}

/* ===== SECCIÓN GENERAL ===== */
.procedimientos-section {
  padding: 20px 20px;
  color: #003044;
  text-align: center;
}

/* ===== CONTENEDOR PRINCIPAL ===== */
.procedimientos-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
}

/* ===== IMAGEN GRANDE IZQUIERDA ===== */
.img-grande img {
  width: 660px;
  height: 590px;
  border-radius: 6px;
  object-fit: cover;
}

/* ===== GRID DE 4 IMÁGENES ===== */
.grid-procedimientos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  width: 100%;
}

.card-procedimiento {
  position: relative;
}

.card-procedimiento img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
}

.texto-card {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9); /* ligera transparencia como en la imagen */
  padding: 10px 0;
  font-size: 1rem;
  font-weight: 600;
  color: #003044;
  text-align: center;
}

/* ===== TEXTO FINAL ===== */
.texto-final {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  line-height: 1.6rem;
}

/* ============================= */
/*        RESPONSIVE CSS         */
/* ============================= */

/* ========= TABLETS GRANDES (≤1200px) ========= */
@media (max-width: 1200px) {

  .sabias-container {
    gap: 40px;
  }

  .sabias-img img {
    width: 360px;
  }

  .procedimientos-container {
    gap: 20px;
  }

  .img-grande img {
    width: 520px;
    height: 480px;
  }

  .grid-procedimientos {
    gap: 20px;
  }
}

/* ========= TABLETS / LAPTOPS PEQUEÑAS (≤992px) ========= */
@media (max-width: 992px) {

  /* SABÍAS QUE */
  .sabias-container {
    flex-direction: column;
    text-align: center;
  }

  .sabias-img img {
    width: 320px;
  }

  .sabias-texto h2 {
    font-size: 1.8rem;
  }

  .sabias-texto p {
    font-size: 1rem;
    line-height: 1.6rem;
  }

  /* PROCEDIMIENTOS */
  .procedimientos-container {
    flex-direction: column;
    align-items: center;
  }

  .img-grande img {
    width: 100%;
    height: auto;
  }

  .grid-procedimientos {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    max-width: 600px;
  }

  .texto-final {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

/* ========= MÓVILES MEDIANOS (≤768px) ========= */
@media (max-width: 768px) {

  /* SABÍAS QUE */
  .sabias-section {
    padding: 35px 15px;
  }

  .sabias-img img {
    width: 300px;
  }

  .sabias-texto h2 {
    font-size: 1.6rem;
  }

  .sabias-texto p {
    font-size: 0.95rem;
  }

  /* PROCEDIMIENTOS */
  .procedimientos-section {
    padding: 15px 15px;
  }

  .grid-procedimientos {
    gap: 15px;
  }

  .texto-card {
    font-size: 0.9rem;
    padding: 8px 0;
  }

  .texto-final {
    padding: 0 10px;
  }
}

/* ========= MÓVILES PEQUEÑOS (≤480px) ========= */
@media (max-width: 480px) {

  /* SABÍAS QUE */
  .sabias-section {
    padding: 30px 10px;
  }

  .sabias-img img {
    width: 100%;
    max-width: 280px;
  }

  .sabias-texto h2 {
    font-size: 1.4rem;
  }

  .sabias-texto p {
    font-size: 0.9rem;
    line-height: 1.45rem;
  }

  /* PROCEDIMIENTOS */
  .procedimientos-section {
    padding: 10px 10px;
  }

  .img-grande img {
    width: 100%;
    border-radius: 6px;
  }

  .grid-procedimientos {
    grid-template-columns: 1fr; /* UNA SOLA COLUMNA EN MÓVIL */
    gap: 12px;
  }

  .texto-card {
    font-size: 0.85rem;
  }

  .texto-final {
    font-size: 0.92rem;
    line-height: 1.35rem;
  }
}


/* SECCION_6 */
/* ===== SECCIÓN FONDO MITAD BLANCO / MITAD GRIS ===== */
.sabias-tarjeta-section {
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #ffffff 50%,
    #f5f5f5 50%,
    #f5f5f5 100%
  );
  padding: 30px 20px;
  display: flex;
  justify-content: center;
}

/* ===== TARJETA ===== */
.sabias-tarjeta {
  background-color: #A66AA6;
  color: white;
  max-width: 1100px;
  padding: 10px 40px;
  border-radius: 35px;
  text-align: center;
  box-shadow: 0px 20px 35px rgba(0, 0, 0, 0.15);
}

/* ===== TEXTO ===== */
.sabias-tarjeta h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.sabias-tarjeta p {
  font-size: 1.1rem;
  line-height: 1.2rem;
  max-width: 950px;
  margin: 0 auto 12px auto;
}

/* ============================= */
/*        RESPONSIVE CSS         */
/* ============================= */

/* ===== TABLETS GRANDES (≤1200px) ===== */
@media (max-width: 1200px) {

  .sabias-tarjeta {
    padding: 15px 35px;
    max-width: 950px;
  }

  .sabias-tarjeta h2 {
    font-size: 1.8rem;
  }

  .sabias-tarjeta p {
    font-size: 1rem;
    max-width: 800px;
  }
}

/* ===== TABLETS MEDIANAS (≤992px) ===== */
@media (max-width: 992px) {

  .sabias-tarjeta {
    padding: 20px 30px;
    max-width: 850px;
  }

  .sabias-tarjeta h2 {
    font-size: 1.7rem;
  }

  .sabias-tarjeta p {
    font-size: 1rem;
    line-height: 1.3rem;
  }
}

/* ===== MÓVILES MEDIANOS (≤768px) ===== */
@media (max-width: 768px) {

  .sabias-tarjeta-section {
    padding: 25px 15px;
  }

  .sabias-tarjeta {
    padding: 25px 25px;
    border-radius: 28px;
  }

  .sabias-tarjeta h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .sabias-tarjeta p {
    font-size: 0.95rem;
    max-width: 100%;
    line-height: 1.25rem;
  }
}

/* ===== MÓVILES PEQUEÑOS (≤480px) ===== */
@media (max-width: 480px) {

  .sabias-tarjeta-section {
    padding: 20px 10px;
  }

  .sabias-tarjeta {
    padding: 20px 18px;
    border-radius: 22px;
  }

  .sabias-tarjeta h2 {
    font-size: 1.3rem;
  }

  .sabias-tarjeta p {
    font-size: 0.88rem;
    line-height: 1.2rem;
    margin-bottom: 10px;
  }
}


/* SECCION_7 */
/* ===========================
   SECCIÓN PREGUNTAS FRECUENTES VPH
=========================== */

.faq-vph {
  padding: 80px 5%;
  background-color: #f5f5f5;
  
}

.faq-container-vph {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: flex-start;
}

/* COLUMNA IZQUIERDA */
.faq-left-vph .subtitulo-vph {
  color: #b88ac8;
  font-weight: 500;
  font-size: 20px;
  display: block;
  margin-bottom: 10px;
}

.faq-left-vph h2 {
  font-size: 40px;
  color: #0d2e55;
  line-height: 1.2;
  font-weight: 700;
}

/* COLUMNA DERECHA (ACORDEÓN) */
.faq-item-vph {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0px 4px 16px rgba(0,0,0,0.08);
  margin-bottom: 18px;
  overflow: hidden;
  transition: all .3s ease;
}

.faq-question-vph {
  width: 100%;
  background: none;
  border: none;
  padding: 28px;
  font-size: 19px;
  color: #0d2e55;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.arrow-vph {
  font-size: 22px;
  color: #b36fa5;
  transition: transform .3s ease;
}

.faq-item-vph.open .arrow-vph {
  transform: rotate(180deg);
}

/* RESPUESTA */
.faq-answer-vph {
  max-height: 0;
  overflow: hidden;
  padding: 0 28px;
  color: #6b6b6b;
  font-size: 16px;
  transition: max-height .4s ease;
}

.faq-item-vph.open .faq-answer-vph {
  max-height: 200px;
  padding-bottom: 20px;
}

/* ===============================
   📱 RESPONSIVE
=============================== */

/* Tablets */
@media (max-width: 992px) {
  .faq-container-vph {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-left-vph h2 {
    text-align: center;
  }

  .faq-left-vph .subtitulo-vph {
    text-align: center;
  }
}

/* Móviles */
@media (max-width: 600px) {
  .faq-left-vph h2 {
    font-size: 32px;
  }

  .faq-question-vph {
    padding: 22px;
    font-size: 17px;
  }

  .faq-answer-vph {
    font-size: 15px;
    padding: 0 22px;
  }

  .arrow-vph {
    font-size: 20px;
  }
}


/* SECCION_8 */
/* ================================
   SECCIÓN PREVENCIÓN VPH
================================ */

.prevencion-vph {
  padding: 70px 5%;
  font-family: 'Poppins', sans-serif;
  color: #0d2e55;
  text-align: center;
}

.prevencion-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
}

/* IMAGEN */
.prevencion-img img {
  width: 100%;
  border-radius: 10px;
}

/* TEXTO */
.prevencion-texto h2 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: left;
  line-height: 1.3;
}

.prevencion-lista {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.prevencion-lista li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  margin-bottom: 25px;
  color: #0d2e55;
}

.prevencion-lista li img {
  width: 35px;
  height: auto;
  opacity: 0.8;
}

/* BOTÓN */
.prevencion-btn a {
  display: inline-block;
  background: #0d3b5f;
  color: #fff;
  font-size: 20px;
  padding: 15px 45px;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.3s;
}

.prevencion-btn a:hover {
  background: #0a2c48;
}

/* TEXTO INFERIOR */
.prevencion-footer {
  font-size: 16px;
  color: #11345c;
  max-width: 850px;
  margin: 25px auto 0;
  line-height: 1.6;
}

/* ================================
   📱 RESPONSIVE
================================ */

/* Tablets */
@media (max-width: 992px) {
  .prevencion-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .prevencion-texto h2 {
    text-align: center;
  }

  .prevencion-lista {
    text-align: left;
  }

  .prevencion-lista li {
    justify-content: left;
  }
}

/* Móviles */
@media (max-width: 600px) {
  .prevencion-texto h2 {
    font-size: 28px;
  }

  .prevencion-lista li {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .prevencion-btn a {
    font-size: 18px;
    padding: 12px 35px;
  }
}