@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
   font-family: 'Montserrat', Helvetica, Arial, sans-serif;
}


body {
  color: #000;
  background-color: #fff;
  line-height: 1.4;
}


/* -------------------- HEADER -------------------- */
header {
  background-color: rgb(181, 91, 211);
  border-bottom: 1px solid #ddd;
  padding: 1em 2em;
}


/* CONTENEDOR DEL HEADER */
.contenedora {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}


/* LOGO */
#logo img {
  height: 60px;
  width: auto;
}


/* NAVEGACIÓN */
nav ul {
  display: flex;
  list-style: none;
  gap: 2em;
  margin: 0;
  padding: 0;
}


nav a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: color 0.3s ease;
  text-transform: uppercase;
}


nav a:hover {
  color: #fae4ff;
}

.noticias h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  }
.testimonios h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  }

  .cta-testimonio h3 {
  font-size: 1.5rem; 
  font-weight: 700;
  margin-bottom: 1rem;
}


/* -------------------- SECCIONES GENERALES -------------------- */
main section {
  text-align: center;
  padding: 4em 2em;
}


h1, h2, h3 {
  margin-bottom: 0.5em;
}


p {
  max-width:900px;
  margin: 0.5em auto;
}


.sobre-nosotros p {
  text-align: left;
}


/* -------------------- IMAGEN PRINCIPAL -------------------- */
.imagen-principal img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
}


/* -------------------- TARJETAS -------------------- */
/* -------------------- TARJETAS (GRID) -------------------- */
.tarjetas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* se adapta automáticamente */
  gap: 2rem;
  justify-items: center;  /* centra las tarjetas en cada celda */
  margin-top: 2em;
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
}

.tarjetas article {

  border-radius: 0.8rem;
  padding: 1.5em;
  background-color: #fff;
  width: 100%;
  text-align: center;
}

.blanco {
  color: #fff; /* blanco */
}

.tarjetas article img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.tarjetas h3 {
  color: #000000;
  font-size: 1.2em;
  margin-top: 0.5em;
}

.tarjetas p {
  color: #000;
  font-size: 0.95em;
  margin-top: 0.5em;
  line-height: 1.4;
}



/* -------------------- SECCIÓN BUSQUEDA -------------------- */
.busquedahome {
  background: url("../imagenes/imagenprincipal.jpg") center/cover no-repeat;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  color: #fff;
  padding: 2em;
}

.busquedahome > div {
  background: black;
  padding: 1rem;
  border-radius: 1rem;
}


.input-busqueda input {
  padding: 0.9rem 1.2rem;
  width: 50%;
  border: none;
  border-radius: 0.5rem;
  margin-top: 1rem;
  font-size: 1rem;
}
/* ---------- BOTÓN DE BÚSQUEDA ---------- */
.input-busqueda {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem; 
  flex-wrap: wrap;
}


.input-busqueda a {
  color: #000;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none; 
  font-weight: bold; 
  
}



/* -------------------- SECCIÓN NOTICIAS -------------------- */
.noticias {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
}




.noticias ul {
  list-style: none;
  text-align: left;
  padding: 0;
  font-size: 0.8rem;
}




.noticias li span {

  color: #000000;
  font-size: 0.8rem;
  font-weight: bold;
}




.grid-noticias {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.grid-noticias a {
  align-self: center; 
  margin-top: auto;   
}




article {
  background: #fff;
  color: #000;
  border-radius: 0.8rem;
  padding: 1rem;
  display: grid;
 grid-template-rows: auto 30px auto auto;
 gap: 1em;
}


.impacto p.blanco {
  color: #fff;
}

article img {
  width: 100%;
  border-radius: 0.4rem;
  aspect-ratio: 1;
  object-fit: cover;
object-position: top;
margin-top: 2rem;
}




article h3.verdadero { color: green;
font-size: 30px;
 font-family: 'Montserrat', Helvetica, Arial, sans-serif; 
text-transform: uppercase;}
article h3.falso { color: red;
font-size: 30px;
 font-family: 'Montserrat', Helvetica, Arial, sans-serif;
text-transform: uppercase;}




article a {
  background: #c4a2d9;
  padding: 0.4rem;
  display: inline-block;
  border-radius: 0.5rem;
  text-decoration: none;
  color: #000;
  margin-inline-end: 27%;
}





/* -------------------- TESTIMONIOS -------------------- */
.testimonios {
  background: #b893d0;
  color: #000;
  text-align: center;
  padding: 4rem 2rem;
}


.grid-testimonios {
  display: grid;
  gap: 2rem;
  max-width: 700px;
  margin: auto;
}


blockquote {
  background: white;
  border-radius: 0.5rem;
  padding: 1.5rem;
  font-style: italic;
}


.cta-testimonio {
  margin-top: 3rem;
}


.boton {
  background: #9269b0;
  color: white;
  text-decoration: none;
  padding: 0.5rem;
  border-radius: 0.5rem;
  display: inline-block;
}
.intro {
  background-color: #d6c1e8; 
  text-align: center;
  padding: 4rem 2rem;
  width:100%
}

.intro h2,
.intro p {
  color: #000000;           
}

/* -------------------- ESTADÍSTICAS -------------------- */
.estadisticas {
  background: #000;
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}


.estadisticas output {
  font-size: 4rem;
  font-weight: bold;
  display: block;
}


.grid-datos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}


.grid-datos h4 {
  font-size: 2rem;
  color: #b97adf;
}


/* -------------------- NEWSLETTER -------------------- */
.newsletter {
  background: #d6c1e8;
  color: #000;
  text-align: center;
  padding: 4rem 2rem;
}


.formulario {
  display: grid;
 
  max-width: 900%;
  margin: 2rem auto;
  gap: 1rem;
}


input[type="email"] {
  padding: 1rem;
  border: none;
  border-radius: 0.5rem;
  margin-top: 0.8rem;
}


button {
  background: #c4a2d9;
  color: rgb(0, 0, 0);
  border: none;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-top: 0.8rem;
  text-decoration: none;

}
footer .aviso {
  display: block;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #000000;
  width: 100%;   
  text-align: left;
  margin: 1rem auto 0 auto;
}

/* -------------------- IMPACTO -------------------- */
.impacto {
  background-color: #000000;
  padding: 2rem;
  text-align: center;
}


.impacto h2 {
  color: #fff;
  font-size: 2em;
  margin-bottom: 20px;
}


.impacto p {
  color: #000000;
  font-size: 1rem;
   font-family: 'Montserrat', Helvetica, Arial, sans-serif;
}


.impacto h3 {
  color: #000000;
 margin-top: 0.5em;
 font-size: 1.2em;
}


.impacto .tarjetas article {
  background-color: #fff;
}

/* -------------------- SECCIÓN PROPÓSITO -------------------- */
.proposito {
  background-color: #d6c1e8;
  text-align: center;
  padding: 4rem 2rem;
}

.proposito h2 {
  color: #000;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.proposito p {
  color: #000;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.resolver {
  background-color: #b893d0; /* fondo lila medio */
  text-align: center;
  padding: 4rem 2rem;
  color: #fff; /* texto blanco para buen contraste */
}
.resolver p {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: #000000;
}
.resolver h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #000000;
}

/* -------------------- FOOTER -------------------- */
footer {
  background-color: #e9b7f5;
  color: #000;
  text-align: center;
  padding: 2rem;
  width: 100%;
  margin: 0;
}

/* Contenedor del bloque de contacto */
footer .contacto {
  display: flex;
  flex-direction: column;
  align-items: center; /* centra todo horizontalmente */
  gap: 0.5rem;
}

/* Título */
footer .contacto h2 {
  font-weight: 700;
  font-size: 1.4em;
  margin-bottom: 0.5rem;
}

/* Lista */
footer .contacto ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;          /* mantiene el texto alineado a la izquierda */
  display: inline-block;     /* hace que la lista tenga el ancho del texto */
}

footer .contacto li {
  margin: 0.4em 0;
}

/* Redes sociales centradas */
footer .redes {
  margin-top: 1.5em;
  display: flex;
  justify-content: center;
  gap: 1em;
}

footer img {
  width: 24px;
  height: 24px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

footer img:hover {
  opacity: 1;
}

/* Copyright */
footer .copyright {
  margin-top: 1.5em;
  font-size: 0.9em;
  opacity: 0.7;
}

p.cajas {
  text-align: left;
  font-weight: bold;
  font-size: 1.1em;
  line-height: 1.2;
  color: #000000;
   font-family: 'Montserrat', Helvetica, Arial, sans-serif;
   margin-top: 1rem;
}
/* -------------------- RESPONSIVE -------------------- */
@media (max-width: 48em) {
  .contenedora {
    flex-direction: column;
    align-items: center;
  }


  nav ul {
    flex-direction: column;
    gap: 1em;
    margin-top: 1em;
  }


  .input-busqueda input {
    width: 80%;
  }


  .tarjetas {
    flex-direction: column;
    align-items: center;
  }


 
}
/* -------------------- deja tu testimonio css -------------------- */
/* ---------- CONTENEDOR PRINCIPAL ---------- */
.testimonios-container {
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 1rem;
  justify-items: center;
  color: #222;
   font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  background-color:#c4a2d9;
}

/* ---------- INTRO ---------- */
.intro {
  text-align: center;
}

.intro-titulo {
  
  font-size: 2.0rem;
}

.intro-texto {
  color: #000000;
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

/* ---------- FORMULARIO ---------- */
.formulario {
  gap: 1.5rem;
  justify-items: left;
  display: grid;
  grid-template-rows: auto ;
  margin-top: 0.7em;
}

.formulario-titulo {
  color: #702e99;
    text-align: left;
    font-size: 2em;
    line-height: 1.2em;
}
.newsletters{
   display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;  /* 🔹 centra horizontalmente */
  margin-top: 0.7em;
}

.newsletters-titulo {
  color: #702e99;
   
    font-size: 2em;
    line-height: 1.2em;
}


form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.3rem;
  max-width: 400px;
  width: 100%;


}

.campo {
  display: grid;
  grid-template-rows: auto auto;
  gap: 0.3rem;
}

.campo label {
  font-size: 0.9rem;
  color: #000000;
  text-align: left;
}

.campo input,
.campo textarea {
  border: 1px solid #9269b0;
  border-radius: 0.5rem;
  padding: 0.5rem;
  font-size: 0.9rem;
  
}

.campo textarea {
  height: 80px;
  resize: none;
}

.btn-enviar {
  justify-self: left;
  background: #000000;
  border-radius: 0.5rem;
  padding: 0.4rem 1.2rem;
  cursor: pointer;
  font-size: 0.9rem;
  color:#ffffff;
   font-family: 'Montserrat', Helvetica, Arial, sans-serif;

}



/* ---------- SECCIÓN GRACIAS ---------- */
.gracias {
  text-align: center;
  gap: 0.7rem ;
  justify-items: center;
  background-color: #000000;
  width: 100%;
  margin: 0;
  
}

.gracias-titulo {
  font-size: 2.3rem;
  color: #ffffff;
 
}

.gracias-texto {
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.btn-volver {
  background: #c4a2d9;
  border-radius: 0.5rem;
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  color: #000;
  text-decoration: none;
}

/* --------------------------------------Estilo Ayuda------------------------------------------ */
section {
  padding: 1.5em;
  margin-bottom: 2em;
  margin: 0;
}
.intros {
  background: #000;
  color: #ffffff;
  padding: 6rem;
  width: 100%;
  text-align: center;

}
/* Listas de pasos */
ol {
  padding-left: 1.5em;
}

ol li {
  margin-bottom: 1em;
  list-style: none;
}

/* Colores de verificación */
.verdadero {
  color: green;
  font-weight: bold;
}

.falso {
  color: red;
  font-weight: bold;
}

/* Imágenes */
.imagen-ejemplo {
  display: block;
  margin: 1em auto;
  border-radius: 10px;
  max-width: 100%;
}

/* Preguntas frecuentes */
details {
  background-color: #f5e5ff;
  border-radius: 6px;
  margin: 0.5em 0;
  padding: 0.8em;
}

details summary {
  cursor: pointer;
  font-weight: bold;
  color: #6400a4;
}

/* Botones */
.boton.grande {
  display: inline-block;
  background-color: #c4a2d9;
  color: #000000;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  margin-top: 1rem;
}


.ayuda-extra {
  background-color: #000;
  color: #fff;          
  text-align: center;
  padding: 4rem 2rem;
}

.ayuda-extra a {
  color: #fff; 
  text-decoration: underline;
}

.pasos {
  text-align: center;      
  padding: 4rem 2rem;
}

.pasos ol {
  display: inline-block;   
  text-align: left;       
  max-width: 800%;      
  margin: 0 auto;
  padding-left: 2rem;    
}

.pasos li {
  margin-bottom: 1em;
  list-style-position: inside; 
  font-size: 1rem;
}

.preguntas {
  background-color: #e9c7ff;
}

/* seccion registro */

/* -------------------- FORMULARIO REGISTRO -------------------- */
.registro {
  background-color: #d6c1e8;
  color: #000;
  text-align: center;
  padding: 4rem 2rem;
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
}

.registro h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.registro .descripcion {
  max-width: 700px;
  font-size: 1rem;
  margin: 0 auto 2.5rem;
}

.form-registro {

  display: grid;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
  text-align: left;
}

.form-registro label {
font-size: 0.9rem;
margin-bottom: 0.2rem;
}

.form-registro input {
  padding: 0.5rem;
  border: 1px solid #9269b0;
  border-radius: 0.5rem;
  font-size: 0.95rem;
  width: 100%;
}

.form-registro button {
  justify-self: left;
    background: #000000;
    border-radius: 0.5rem;
    padding: 0.4rem 1.2rem;
    font-size: 0.9rem;
    color: #ffffff;
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
}
  

/* -------------------- desarrollo noticia -------------------- */
m/* -------------------- DETALLE NOTICIA -------------------- */
.noticia-detalle {
  background-color: #d6c1e8;
  color: #000;
  padding: 4rem 2rem;
  text-align: left;
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
}

.resultado-busqueda {
  background-color: #b893d0;
  color: #000;
  padding: 0.8rem 1rem;
  border-radius: 0.5rem;
  max-width: 800px;
  margin: 0 auto 2rem auto;
  text-align: center;
  font-weight: 600;
}

.noticia {
  background-color: #fff;
  border-radius: 1rem;
 max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

.noticia h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: auto;
}

.noticia .bajada {
  font-size: 1rem;
  font-weight: 500;
  color: #222;
  margin-bottom: 1.5rem;
  }

.contenedor-imagen {
  text-align: center;
  margin-bottom: 1.5rem;
}

.contenedor-imagen img {
  width: 100%;
  max-width: 800px;
  border-radius: 0.8rem;
  margin-bottom: 1.5rem;
}

.datos-noticia {
  background-color: #d6c1e8;
  border-radius: 0.6rem;
  padding: 1rem;
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 2rem;
}

.texto-noticia p {
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 1rem;
}
.datos-noticia ul {
  list-style: none;     
  padding: 0;           
  margin: 0;          
}

.compartir {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #ccc;
}

.compartir h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #333;
}

.botones-compartir {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
  justify-items: center;
  max-width: 400px;
  margin: 0 auto;
}

.btn-compartir {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  color: rgb(0, 0, 0);
  background-color: #b893d0;
  
}



.whatsapp {
  background-color: #b893d0;
}

.facebook {
  background-color: #b893d0;
}

.instagram {
  background-color: #b893d0;
}

/* ---------- SECCIÓN NOTAS NUEVA ---------- */
.bloque-notas {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  width: 100%;
}

.titulo-notas {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.intro-notas {
  font-size: 1rem;
  margin: 0 auto 2rem;
}

/* ---------- GRID DE NOTAS ---------- */
.grid-notas {
  display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  width: 100%;
  margin: 0 auto;
}

/* ---------- CADA NOTA ---------- */
.nota-item {
  background: #fff;
  color: #000;
  border-radius: 0.8rem;
  padding: 1.5rem;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 1rem;
  text-align: left;
}



.nota-img img {
  width: 100%;
  border-radius: 0.5rem;
  object-fit: cover;
  aspect-ratio: 1/1;
}

.etiqueta-falsa {
  color: red;
  font-size: 2rem;
  text-align: center;
  text-transform: uppercase;
}

.etiqueta-verdadera {
  color: green;
  font-size: 2rem;
  text-align: center;
  text-transform: uppercase;
}

.texto-nota {
  font-size: 1.1em;
  line-height: 1.4;
  font-weight: bold;
}

.info-nota {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1rem 0;
  font-size: 0.85rem;
}

.info-nota span {
  font-weight: bold;
  color: #000;
}

.boton-nota {
  display: inline-block;
  background: #c4a2d9;
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
}


/*-------------------------BUSQUEDA----------------------------------------------------*/
/* CONTENEDOR NEGRO */
.titulo-busqueda {
  text-align: center;
  font-size: 2rem;
  margin-top: 2rem;
  }


.busqueda-barra {
  background: #000;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.8rem;
  max-width: 900px;
  width: 70%;
  margin: 0 auto;
  box-sizing: border-box;
  border-radius: 0.8rem;
}


.busqueda-barra input {
  width: 100%;
  padding: 0.8rem;
  border-radius: 0.4rem;
  border: 1px solid #aaa;
  box-sizing: border-box;
}


.busqueda-barra button {
  padding: 0.8rem 1rem;
  border-radius: 0.4rem;
  background: #d6c1e8;
  border: none;
  cursor: pointer;
  white-space: nowrap; 
  box-sizing: border-box;
}


@media (max-width: 600px) {
  .busqueda-barra {
    grid-template-columns: 1fr;
  }

  .busqueda-barra button {
    width: 100%;   
  }
}


.input-busqueda {
  padding: 0.8em;
  border-radius: 0.8rem;
  border: none;
  font-size: 1rem;
  margin-top: 1rem;
}

.boton-busqueda {
  border: none;
  background-color: #4a006e;
  color: #9269b0;
  padding: 0.8em 1.2em;
  border-radius: 0.5rem;
   min-width: 120px; 
}


.busqueda {
  display: grid;
  gap: 1em;
  width: 80%;
  margin: 0 auto;
}

.noticia-busqueda {
  background-color: #d6c1e8;
  border-radius: 0.8rem;
  padding: 1em;
  display: grid;
  align-items: start;
  gap: 1em;
  grid-template-columns:12rem 1fr 8rem; 
  align-items: center; 
  
}


.foto-busqueda {
  padding: 2em 0;
  border-radius: 8px;
}

.info-busqueda h2 {
  margin: 0;
  font-size: 1.5rem;
  text-align: left;
}

.info-busqueda p {
  margin: 0.5em 0;
  line-height: 1.4;
  text-align: left;
}

.datos-busqueda {
  font-size: 0.9rem;
  color: #111;
}

.estado-busqueda {
  justify-self: center;
  align-self: center;
}

.estado-busqueda img {
  width: 100px;
}


.boton-busqueda {
  grid-column: 3 / 4;
  justify-self: end;
  align-self: end;
  background-color: #000000;
  color: white;
  padding: 0.5em 1.2em;
  border-radius: 0.5rem;
  font-size: 0.9rem;
}


/* ======= PAGINACIÓN ======= */
.paginacion-busqueda {
  display: grid;
  grid-auto-flow: column;
  justify-content: center;
  gap: 0.6em;
  margin: 2em 0;
}

.punto-busqueda {
  width: 14px;
  height: 14px;
  background-color: #8b3ad1;
  border-radius: 50%;
  cursor: pointer;
}

.punto-busqueda.activo-busqueda {
  background-color: #4a006e;
}

/* ---------- RESPONSIVE ---------- */

/* ======= RESPONSIVO ======= */
@media (max-width: 700px) {
  .noticia-busqueda {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    text-align: center;
  }

  .foto-busqueda {
    padding: 1.5em;
  }

  .boton-busqueda {
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 1em;
  }
}

.buttons {
    background: #c4a2d9;
    color: white;
    border: none;
    border-radius: 0.5rem;
    padding: 1rem;
    text-decoration: none;
  }

  .boton-filtro-busqueda {
    background: #c4a2d9;
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 0.5rem;
    padding: 1rem;
    text-decoration: none;
  }

  .china {
    text-transform: uppercase;
  color: green;
 
  }

  .chinafalso {
    text-transform: uppercase;
  color: red;

  }

/* -------------------- video sobre nosotros -------------------- */
.intro-video {
    width: 100%;
    height: 490px;
    object-fit: cover;
    object-position: center top;
    display: block;
    }