@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Quicksand", sans-serif;
}

/* Logo */
.logo {
    height: 50px;
    width: 100px;
}

/* Navbar */
.nav-link {
    color: black;
    text-decoration: none;
    padding: 10px;
}

.nav-link.active {
    color: red; /* Cambia el color cuando la sección está activa */
    font-weight: bold;
}
/* Portada */

.container-portada {
    display: flex;
    height: 100vh;
    background-color: rgb(54, 76, 100);
    overflow: hidden;
    position: relative;
    border: 2px solid #ccc;
}

.portada-content {
    flex: 0 0 30%;
    padding: 4rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    animation: fadeInLeft 0.8s ease-out;
}

.portada-image {
    flex: 0 0 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    animation: fadeInRight 0.8s ease-out;
}

.img-portada {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center left;
}

/* Textos */
.title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.5;
}


/* Botones */
.btn_unete {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.btn_unete:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.6);
    color: white;
    text-decoration: none;
}

.btn_info_externa {
    background: transparent;
    border: 2px solid #f59e0b;
    box-shadow: none;
    color: #f59e0b;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn_info_externa:hover {
    background: #f59e0b;
    color: white;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

/* Animaciones */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .portada-content {
        flex: 0 0 30%;
        padding: 3rem 2rem;
    }

    .portada-image {
        flex: 0 0 70%;
    }

    .title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .container-portada {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }

    .portada-content {
        text-align: center;
        padding: 2rem;
    }

    .portada-image {
        height: 50vh;
        order: -1;
    }

    .title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .btn_unete {
        padding: 12px 25px;
        font-size: 1rem;
        margin: 0.5rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .portada-content {
        padding: 1.5rem;
    }
}

/* Sección ¿Quiénes somos? */
.container-quienes-somos {
    background-color: #f3f4f6; /* fondo neutro claro */
    padding: 70px 40px;
    text-align: center;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.quienes-somos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.img-nosotros {
    width: 350px;
    height: 350px;
    object-fit: cover;
    mask-image: radial-gradient(circle, white 60%, transparent 61%);
    -webkit-mask-image: radial-gradient(circle, white 60%, transparent 61%);
    transition: transform 0.3s ease;
}

.img-nosotros:hover {
    transform: scale(1.05);
}

.texto-nosotros {
    max-width: 600px;
    font-size: 1.2rem;
    line-height: 1.7;
    color: #374151;
    text-align: left;
}

/* Responsive */
@media (max-width: 768px) {
    .container-quienes-somos {
        padding: 50px 20px;
    }

    .quienes-somos {
        flex-direction: column;
        gap: 2rem;
    }

    .img-nosotros {
        width: 280px;
        height: 280px;
    }

    .texto-nosotros {
        text-align: center;
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .img-nosotros {
        width: 220px;
        height: 220px;
    }

    .texto-nosotros {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* ¿Qué hacemos? */
.container-hacemos {
    background: #f9fafb; /* color neutro claro */
    text-align: center;
    padding: 70px 40px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.content-cards {
    display: grid;
    /* Cambio principal: usar columnas fijas en lugar de auto-fit */
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Altura fija para mantener uniformidad */
    height: 320px;
    /* Ancho máximo para evitar que se estiren demasiado */
    max-width: 350px;
    margin: 0 auto; /* Centrar las cards */
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.card img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
    flex-shrink: 0; /* Evitar que la imagen se comprima */
}

.card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #374151;
    text-align: center;
    flex: 1; /* Permitir que el texto use el espacio restante */
    display: flex;
    align-items: center;
}

/* Responsive mejorado */
@media (max-width: 1024px) {
    .content-cards {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .container-hacemos {
        padding: 50px 20px;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .content-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
    }
    
    .card {
        height: 280px;
        padding: 25px 20px;
        max-width: none; /* Permitir que use el ancho completo */
    }
    
    .card img {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }
    
    .card p {
        font-size: 1rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .container-hacemos {
        padding: 40px 15px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .content-cards {
        gap: 1rem;
        max-width: 320px;
    }
    
    .card {
        height: 260px;
        padding: 20px 15px;
    }
    
    .card img {
        width: 90px;
        height: 90px;
        margin-bottom: 12px;
    }
    
    .card p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
}

/* Misión */
.conteiner-mision {
    background: #01378f;
    height: 300px;
    overflow: hidden;
    color: #f5bf48;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;

}

.content-mision {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    font-weight: 400;
    font-size: 18px;
    padding: 80px 100px;
    text-align: start;
}

.mision {
    float: right;
    height: 100%;
    width: 80%;
    border-radius: 50% 0% 0% 50% / 50% 0% 0% 50%;
    object-fit: cover;
}

/* Visión */
.conteiner-vision {
    width: 100%;
    background: #f5bf48;
    height: 300px;
    overflow: hidden;
    color: #01378f;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.vision {
    height: 100%;
    width: 80%;
    border-radius: 0% 50% 50% 0% / 0% 50% 50% 0%;
    object-fit: cover;
}

.content-vision {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    font-size: 18px;
    font-weight: 400;
    padding: 80px 100px;
    text-align: start;
}

/* Junta Directiva */
.container-directiva {
    background-color: #f9fafb;
    text-align: center;
    padding: 70px 40px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.content-integrantes {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Máximo 3 columnas */
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.integrante {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.integrante:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.miembro {
    margin-bottom: 15px;
    border-radius: 50%;
    border: 3px solid #f59e0b;
    width: 180px;
    height: 180px;
    object-fit: cover;
    box-shadow: 0 8px 12px rgba(137, 137, 140, 0.25);
    transition: all 0.3s ease-in-out;
}

.integrante h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0.5rem 0 0.3rem;
}

.integrante p {
    font-size: 1rem;
    color: #374151;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    .miembro {
        width: 150px;
        height: 150px;
    }

    .integrante h4 {
        font-size: 1rem;
    }

    .integrante p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .miembro {
        width: 130px;
        height: 130px;
    }
}
/* Eventos */
.estilo-minimal {
    background: #f8fafc;
    padding: 80px 30px;
}

.estilo-minimal h1 {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    color: #1f2937;
    margin-bottom: 1rem;
}

.estilo-minimal .subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #6b7280;
    margin-bottom: 3rem;
    max-width: 70ch;
    margin-left: auto;
    margin-right: auto;
}

.minimal-grid {
    display: flex;
    flex-direction: row;
    gap: 4rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: stretch; /* 🔑 Hace que todas las cards tengan la misma altura */
}

.minimal-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    flex: 1 1 45%;
    max-width: 700px;
    margin: 0;
    
    /* 🔑 Convertir cada card en un contenedor flex */
    display: flex;
    flex-direction: column;
}

.minimal-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.minimal-image {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
    
    /* 🔑 La imagen NO debe crecer */
    flex-shrink: 0;
}

.minimal-content {
    padding: 32px;
    
    /* 🔑 El contenido debe ocupar todo el espacio disponible */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.minimal-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eff6ff;
    color: #1d4ed8;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    width: fit-content; /* Para que no ocupe todo el ancho */
}

.minimal-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.3;
}

.pricing-table {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.95rem;
}

.pricing-row:not(:last-child) {
    border-bottom: 1px solid #e5e7eb;
}

.minimal-description {
    color: #6b7280;
    line-height: 1.6;
    margin: 16px 0;
    
    /* 🔑 La descripción crece para ocupar el espacio disponible */
    flex-grow: 1;
}

.cta-button {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
    display: inline-block;
    text-align: center;
    text-decoration: none;
    
    /* 🔑 El botón se mantiene al final, sin crecer */
    margin-top: auto;
    flex-shrink: 0;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.5);
}

/* 📱 Responsive: En móviles mantener el comportamiento */
@media (max-width: 768px) {
    .minimal-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .minimal-card {
        flex: 1 1 auto;
        max-width: 100%;
    }
}
/* Responsive */
@media (max-width: 768px) {

  .pricing-grid,
  .minimal-grid,
  .modern-grid {
      grid-template-columns: 1fr;
      padding: 0 15px;
  }

  .estilo-pricing h1,
  .estilo-minimal h1,
  .estilo-modern h1 {
      font-size: 2.5rem;
  }
}

/* Tarjeta de evento */
.evento {
    background-color: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
    max-width: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.evento:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.evento img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

/* Contenido de la tarjeta */
.descripcion {
    padding: 24px;
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 10px;
}

.descripcion .time {
    font-size: 0.95rem;
    color: #6b7280;
}

.descripcion h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.descripcion p {
    font-size: 1rem;
    color: #374151;
    line-height: 1.5;
    margin: 0;
}

/* Botón de inscripción */
.descripcion .btn {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 50px;
    border: none;
    width: 100%;
    font-size: 1rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.descripcion .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.6);
}

/*medios de pagos*/
.conteiner-pago {
  padding: 70px 30px;
  /* background: #f9fafb; */
  background: #fff;
  text-align: center;
  color: #1f2937;
}

.conteiner-pago h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #0055f2;
  margin-bottom: 1rem;
}

.conteiner-pago h4 {
  font-size: 1.2rem;
  color: #4b5563;
  font-weight: 500;
}

/* Toggle de botones */
.btn-group {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-group button {
  border: 2px solid #000;
  height: 45px;
  width: 220px;
  border-radius: 50px;
  font-weight: 600;
  background: white;
  color: #000;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-group button:hover {
  background: #01378f;
  color: white;
}

.btn-group .btn.active {
  background: #01378f;
  color: white;
}

/* Contenido principal de pago */
.content-pago {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
}

.description_qr,
.description_banco {
  flex: 1 1 300px;
  font-size: 1rem;
  color: #374151;
}

.description_qr h4,
.content-pago h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.description_qr ol {
  list-style-position: inside;
  padding-left: 0;
  font-size: 0.95rem;
  color: #6b7280;
  margin-top: 10px;
}

/* QR */
.content_qr {
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.qr-code {
  width: 200px;
  height: 200px;
  padding: 10px;
  border: 2px solid #000;
  border-radius: 10px;
  background-color: #fff;
}

.qr-code img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Banco */
.description_banco {
  background-color: #f9fafb;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 1rem;
  line-height: 1.6;
}

.bank {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.bank i {
  font-size: 1.5rem;
  color: #01378f;
}

/* Responsive */
@media (max-width: 768px) {
  .content-pago {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .description_qr,
  .content_qr,
  .description_banco {
    width: 100%;
  }

  .btn-group button {
    width: 100%;
    max-width: 300px;
  }
}

/*verificacion*/
.conteiner-validacion {
    padding: 70px 35px;
    overflow: hidden;
    display: grid;
    place-items: center;
    background: #f9fcff;
}
.content-titulo {
    width: 70%;
    text-align: center;
    margin-bottom: 40px;
}
.content-titulo i {
    background-color: #eff6ff;
    border-radius: 50%;
    font-size: 50px;
    padding: 10px;
}
.content-validacion {
    border: solid 1px #d0d0d0;
    box-shadow: 0px 10px 12px rgba(137, 137, 140, 0.25);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    width: 60%;
    background: #ffffff;
}

.contenedor_boton {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn_validar {
    background: #0357de;
    color: #ffffff;
    border-radius: 10px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 18px;

    margin: 20px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
.btn_validar:hover {
    background: #0251d1;
    transform: scale(1.05);
    box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.3);
}
.nota {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

/* Footer */
footer {
  background-color: #262627;
  color: #fff;
  padding: 70px 40px 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.content-contactos {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.content-contactos h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  font-weight: 800;
}

.content-contactos p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.5;
}

.content-contactos .contacto {
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
  justify-content: center;
  transition: color 0.3s ease;
}

.content-contactos .contacto:hover,
.content-contactos .contacto:focus {
  color: #0055f2;
  outline: none;
}

.content-contactos .contacto i {
  font-size: 28px;
  margin: 0;
  flex-shrink: 0;
}

.redes {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}

.redes a {
  color: #fff;
  font-size: 32px;
  border: 2px solid #fff;
  border-radius: 50%;
  padding: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.redes a:hover,
.redes a:focus {
  background-color: #0055f2;
  border-color: #0055f2;
  color: #fff;
  outline: none;
}

.divider {
  border: none;
  height: 2px;
  background: #aaa;
  margin: 30px auto 20px;
  max-width: 600px;
  width: 90%;
}

.derechos {
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
  font-weight: 500;
  user-select: none;
}


@media (max-width: 908px) {
    .quienes-somos p {
        max-width: 90%;
        font-size: 18px;
    }
    .content-vision {
        padding: 40px 50px;
    }
    .content-mision {
        padding: 40px;
    }
    .content-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        place-items: center;
        padding: 20px 0px;
    }
    .content-integrantes {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        place-content: center;
    }
    .content-eventos {
        place-items: center;
    }
}

@media (max-width: 656px) {
    .portada h1 {
        font-size: 25px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .portada p {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .quienes-somos p {
        max-width: 100%;
        font-size: 16px;
    }

    .nosotros {
        width: 300px;
        height: 300px;
    }
    .content-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        place-content: center;
        padding: 20px 0px;
    }

    .conteiner-mision, .conteiner-vision {
        height: 100%;
        grid-template-columns: repeat(1, 1fr);
        width: 100%;
    }

    .content-mision, .content-vision {
        padding: 40px 50px;
        text-align: center;
    }

    .mision, .vision {
        padding: 20px;
        height: 100%;
        width: 100%;
        border-radius: 25px;
    }
    .conteiner-eventos {
        padding: 70px 0px;
    }
    
    .content-validacion {
        width: 92%;
    }
    .content-contactos {
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .evento {
        height: auto;
    }

    .content-pago {
        flex-direction: column;
        justify-content: center;
    }
    .content_qr {
        justify-content: center;
        width: 100%;
    }
    .btn-group button {
        width: 100%;
    }
}
@media (max-width: 375px) {
    /* Pantallas pequeñas */
    .empresa p {
        display: none;
    }

    .portada h1 {
        margin-top: 50px;
    }
}
