/* FUENTE */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
 
    --azul: #002855;          /* Azul oscuro base */
    --azul-claro: #1c6dd0;    /* Azul más brillante para títulos */
    --amarillo: #ffc107;      /* Amarillo cálido más vivo */
    --naranja: #ff7f50;       /* Para detalles llamativos */
    --verde: #90bf00;         /* Verde acento (botones apoderados) */
    --gris: #f5f6fa;          /* Fondo tarjetas */
    --texto: #222;            /* Texto general */
}




h3{
    font-size: 25px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.section, .doc-card, .apo-box, .form-card {
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    border-radius: 16px;
}


body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(
        180deg,
        #cce0ff 0%,   /* azul claro más brillante */
        #cce0ff 0%  /* amarillo claro más cálido */
    );

}

/* LAYOUT GENERAL */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.header {
    width: 100%;
    background: var(--azul);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--amarillo);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;               /* ← IMPORTANTE */
    align-items: center;         /* centra verticalmente logo + texto */
    gap: 12px;                   /* espacio entre logo y texto */
    font-weight: 700;
    color: white;
    font-size: 1.3rem;
}

.logo-img {
    height: 70px;                /* tamaño ideal */
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text .line1 {
    font-size: 18px;
}

.logo-text .line2 {
    font-size: 22px;
}


.nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
}

.nav a:hover {
    color: var(--amarillo);
}
/* NAV DESPLEGABLE MÓVIL */
.nav.active {
    display: flex !important;
}


/* BOTÓN MÓVIL */
.menu-btn {
    font-size: 28px;
    color: white;
    cursor: pointer;
    display: none;
}

/* HERO */
.hero {
    background-image: url("../img/fondo-img.jpg"); /* ← Cambia el nombre por tu imagen */
    background-size: cover;      /* La imagen cubre todo */
    background-position: center; /* Centrada */
    background-repeat: no-repeat;
    padding: 120px 20px; /* Aumenta espacio para que el texto respire */
    color: white;
    text-align: center;
    position: relative;
}

/* Capa oscura para mejorar la lectura */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45); /* Oscurece la imagen */
    backdrop-filter: blur(2px);
}

.hero-content {
    position: relative; /* Hace que el texto quede arriba de la sombra */
    z-index: 2;
}


.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.btn-amarillo {
    background: var(--amarillo);
    padding: 12px 25px;
    border-radius: 8px;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

/* SECCIONES */
.section {
    padding: 60px 0;
    background: white;
    color: var(--texto);
    text-align: center;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* ========== FOOTER ========== */

.footer {
    background: #002855;
    color: white;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 4px solid #ffcc00;
}

.email-text{
       display: block;
}

.footer-email {
    display: none;
    background: #007bff;
    color: rgb(255, 255, 255);
    padding: 8px 10px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
}


.footer-container {
    max-width: 1200px;
    margin: auto;
    width: 90%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.10fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-container > div:first-child {
    grid-row: 1 / span 3; /* el número de filas que tengas; ajusta según sea */
    justify-self: center; /* centra horizontalmente */
    align-self: center;    /* centra verticalmente */
    text-align: center;    /* centra el texto y logo dentro */
    max-width: 200px;   /* ← ajusta este valor a tu gusto */
    
}
    

.subtitulo-footer{
    color: #e2ff3b;
}

.footer-col h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffcc00;
}

.footer-col a {
    display: block;
    margin: 6px 0;
    color: #dbe7ff;
    text-decoration: none;
    transition: 0.2s ease;
}

.footer-col a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

/* Caja del logo + texto */
.footer-logo-box {
    display: flex;
    align-items: center;      /* Centra verticalmente */
    gap: 10px;                /* Espacio entre logo y texto */
}

/* Logo del footer */
.footer-logo-img {
    width: 80px;              /* Ajusta el tamaño */
    height: auto;
}

/* Texto del logo */
.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-size: 24px;
    margin: 0;
    color: var(--amarillo);
}

.footer-desc {
    margin-top: 5px;
    line-height: 1.4;
}


.footer-social a {
    font-size: 17px;
    margin-right: 10px;
    text-decoration: none;
    color: white;
    transition: 0.25s;
}

.footer-social a:hover {
    color: #ffcc00;
}

.footer-bottom {
    background: #001c3c;
    text-align: center;
    padding: 12px;
    font-size: 14px;
    color: #bcd0f5;
    border-top: 1px solid rgba(255,255,255,0.1);
}




                                /*  Documentos y Proyectos  */


/* ———— CONTENEDOR GENERAL ———— */
.docs-container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
  font-family: 'Segoe UI', sans-serif;
}

/* ———— TITULO DE SECCION ———— */
.docs-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 30px;
  text-align: center;
  color: #1a1a1a;
}

/* ———— TARJETA DE DOCUMENTO ———— */
.doc-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 25px;
  margin-bottom: 45px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
  transition: 0.3s ease;
  border: 1px solid #e6e6e6;
}

.doc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

/* ———— TITULO DEL DOCUMENTO ———— */
.doc-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 15px;
  color: #333;
}

/* ———— VISTA PREVIA DEL PDF ———— */
.doc-frame {
  width: 100%;
  height: 480px;
  border: none;
  border-radius: 10px;
  margin-top: 10px;
  box-shadow: inset 0 0 8px rgba(0,0,0,0.15);
}

/* ———— AREA DE BOTONES ———— */
.doc-buttons {
  margin-top: 18px;
  display: flex;
  gap: 10px;
}

.doc-buttons a {
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease;
}

.btn-view {
  background: #005bb5;
  color: white;
}

.btn-view:hover {
  background: #003f80;
}

.btn-download {
  background: #f2f2f2;
  color: #333;
}

.btn-download:hover {
  background: #e0e0e0;
}







                        /*   Apoderados   */

.descargar{
  font-size: 34px;
  font-weight: 800;
  color: #1a1a1a;
  text-align:left;
  margin-bottom: 20px;
}




.apo-container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
  font-family: 'Segoe UI', sans-serif;
  font-size: large;
}

/* Títulos generales */
.apo-title {
  font-size: 34px;
  font-weight: 800;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 20px;
}

.apo-subtitle {
  font-size: 36px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  margin-top: 50px;
  margin-bottom: 15px;
  color: #333;
}

/* Caja descriptiva */
.apo-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
  border: 1px solid #e6e6e6;
  margin-bottom: 40px;
}





/* BOTÓN PRINCIPAL (WEB) */
.btn-apoderados {
    padding: 12px 28px !important;
    font-weight: 600;
    width: 180px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 140px;
    background-color: #90bf00 !important;
    height: 60px;
    border-radius: 30px;
    margin: 0px 5px;
    box-shadow: 0px 8px 10px -3px rgba(61, 70, 80, 0.15);
    transition: all 0.2s 
ease;
    margin-bottom: 15px;
}

.store-btn:hover {
    transform: scale(1.05);
}


.btn-apoderados:hover {
    background: #003f80;
    transform: translateY(-2px);
}

/* IMÁGENES DE GOOGLE PLAY Y APP STORE */
.store-btn {
    padding: 12px 28px !important;
    font-weight: 600;
    width: 180px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 140px;
    background-color: #000 !important;
    height: 60px;
    border-radius: 30px;
    margin: 0px 5px;
    box-shadow: 0px 8px 10px -3px rgba(61, 70, 80, 0.15);
    transition: all 0.2s 
ease;
    margin-bottom: 15px;
}

.store-btn:hover {
    transform: scale(1.05);
}



/* CONTENEDOR DE BOTONES */
.apo-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-top: 30px;
}




.apo-flex{
      display: flex;
    align-items: flex-start;
    gap: 20px;

}
.apo-text {
    flex: 1;
}
.apo-img img {
    width: 460px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}


/* Lista de funciones */
.apo-features ul {
  list-style: none;
  padding-left: 0;
}

.apo-features ul li {
  background: #f6f6f6;
  padding: 14px 20px;
  border-radius: 12px;
  margin-bottom: 12px;
  font-size: 17px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.apo-features ul li::before {
  content: "✔";
  color: #005bb5;
  font-weight: bold;
}

/* Capturas */
.apo-imgs {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.apo-imgs img {
  width: 32%;
  border-radius: 14px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}


/* dirección */
.direccion-box {
    text-align: center;
    padding: 40px 0;
}

.map-box {
    width: 100%;
    max-width: 700px;
    margin: 20px auto;
}

.map-box iframe {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}




                    /* Contacto */
/* HERO */
.contact-hero {
     background-image: url("../img/fondo-img.jpg"); /* ← Cambia el nombre por tu imagen */
    background-size: cover;      /* La imagen cubre todo */

    background-position: center; /* Centrada */
    background-repeat: no-repeat;
    background-attachment: fixed; /* efecto tipo parallax (opcional) */
    padding: 120px 20px; /* Aumenta espacio para que el texto respire */
    color: rgb(255, 255, 255);
    text-align: center;
    position: relative;
 

}
.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.651);
    backdrop-filter: blur(3px);
    z-index: 0; 
}

.contact-hero p{
    font-size: 18px;
}

.contact-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
       z-index: 2; /* el texto SIEMPRE arriba */
}

.contact-hero h1,
.contact-hero p {
    position: relative;
    z-index: 2; /* ← Asegura estar sobre la sombra */
}


/* FORMULARIO */
.contact-section {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
}

.form-card {
    background: #fff;
    padding: 35px;
    width: 100%;
    max-width: 550px;
    border-radius: 16px;
    box-shadow: 0px 8px 28px rgba(0,0,0,0.1);
}

.form-card h2 {
    margin-bottom: 20px;
    font-size: 26px;
    color: #333;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 15px;
    margin-bottom: 6px;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 15px;
}

.btn-enviar {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--amarillo);
    color: #000;
    border: none;
    font-weight: bold;
    cursor: pointer;
    border-radius: 10px;
    transition: .2s;
}

.btn-enviar:hover {
    filter: brightness(1.1);
}




                   /*INDEX*/


        /* Contenedor general */


.section-title{
  text-align: center;
    width: 90%;
    max-width: 1200px;
    margin: auto;
    font-size: 40px;
}
.carousel-container {
    width: 95%;
    max-width: 900px;
    margin: 30px auto;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}
/* Ajustar SOLO la imagen Zumbatón sin que el carrusel la reemplace */
.slide img.fit-vertical {
    width: auto !important;       
    height: 100% !important;      
    max-height: 450px !important;
    object-fit: contain !important;
    margin: 0 auto;
    display: block;
    background: transparent;
}


/* Carrusel interno */
.carousel {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

/* --- GALERÍA DE NOTICIAS --- */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;

    width: 100%;
    max-width: 1200px;   /* evita que se salga del contenedor */
    margin-left: auto;   /* centra la grilla */
    margin-right: auto;  /* centra la grilla */
    overflow: hidden;    /* evita desplazamiento lateral */
}


.gallery-item {
    text-decoration: none;
    color: #333;

}

.gallery-item h3 {
    margin-top: 10px;
    text-align: center;
}

.img-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-container:hover img {
    transform: scale(1.1);
}

.img-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    color: #fff;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px;
    transition: opacity 0.3s ease;
}

.img-container:hover .img-hover {
    opacity: 1;
}





/* Slides */
.slide {
    min-width: 100%;
    box-sizing: border-box;
}

.slide img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

/* Botones */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: white;
    border: none;
    padding: 12px 18px;
    font-size: 22px;
    cursor: pointer;
    border-radius: 50%;
    transition: 0.3s;
}

/* Evita desplazamiento cuando hay una sola imagen */
.carousel-container.single-slide .carousel {
    transform: none !important;
}

.carousel-btn:hover {
    background: rgba(0,0,0,0.7);
}

.prev {
    left: 15px;
}
.next {
    right: 15px;
}

          /* NOSOTROS */
  
.nosotros-container{
    width: 90%;
    max-width: 1200px;
    margin: auto;
    text-align: justify;
}

.nosotros{
    text-align: center;
}
.titulos-nosotros{
  margin: auto;
  text-align: center;
  font-size: 30px;
}
.nosotros-imagen {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.nosotros-imagen img {
    width: 80%;
    max-width: 650px;     /* tamaño máximo ideal */
    border-radius: 18px;  /* bordes redondeados elegantes */
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.25);
    object-fit: cover;
}

.valores-lista {
    list-style: square;
    padding-left: 25px;
    margin-top: 10px;
    font-size: 1.1rem;
    line-height: 1.6;
}
.sellos{

    list-style: square;
    padding-left: 25px;
    margin-top: 10px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.equipo-directivo {
    margin-left: 20px;
    line-height: 1.8;
    list-style-type: "• ";
    font-size: 16px;
}

.equipo-directivo li strong {
    color: #1c4fa0; /* mismo azul usado en títulos */
}

/* Secciones extendidas */
.nosotros-extendido .container {
  padding: 10px 0;
  background: rgb(243, 227, 193);
  color: var(--texto);
  border-radius: 20px;
    box-shadow: 10px 10px 8px rgba(0,0,0,0.15);
}

.nosotros-extendido h2 {
  font-size: 32px;
  color: var(--azul);
  margin: 40px 0 20px;
  text-align: center;
}

.nosotros-extendido p, 
.nosotros-extendido li {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  text-align: justify;
}

.perfil-lista {
  list-style: square;
  padding-left: 25px;
  margin-top: 10px;
}

/* Identidad */
.identidad p {
  margin-bottom: 12px;
}

/* Organigrama */
.organigrama-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}

.org-nivel {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}


.org-cargo {
  background: #f5f6fa;
  border-radius: 12px;
  padding: 18px 22px;
  min-width: 180px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.org-cargo h3 {
  color: var(--azul-claro);
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.nivel-title {
  color: var(--amarillo);
  margin-top: 25px;
  margin-bottom: 12px;
  font-size: 1.3rem;
  text-align: center;
}




           /* Noticias*/

.card{
    text-align: left;
}

.full-bleed {
  display: block;
  width: 100%;
  max-width: 100%;

  height: 240px;         /* ajusta a tu gusto */
  object-fit: cover;

  border-top: 6px solid #ffbb00;   /* cambia color y grosor */
  border-bottom: 6px solid #ffbb00;

  margin: 0 0 20px 0;
}


/* === MATRÍCULAS === */
.matriculas {
    padding: 60px 0;
    background: #f6f9fc;
    text-align: center;
}

.matriculas .mat-desc {
    
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: #444;
}

.mat-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 0.4fr;
    gap: 15px;
    margin-top: 40px;
   

}


.mat-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: left;
    transition: 0.2s ease;
}

.mat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.mat-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--azul-claro);
}

.mat-card ul {
    padding-left: 18px;
}

.mat-card li {
    margin-bottom: 8px;
    line-height: 1.4;
}

/* Botones */
.mat-buttons {
    margin-top: 40px;
}

.mat-btn {
    margin: 10px;
    padding: 12px 25px;
    display: inline-block;
    border-radius: 12px;
}



.full-bleed {
    width: 100%;
    max-width: 100vw;
    display: block;
    margin: 0 calc(50% - 50vw); /* truco para imágenes full-bleed */
}




/* Responsive */
@media (max-width: 720px) {
    .mat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .mat-grid {
        grid-template-columns: 1fr;
    }
}




/*RESPONSIVE GLOBAL */



/* 📱 Pantallas pequeñas (celulares) */
@media (max-width: 720px) {
    body{
        
        margin: auto;
    }
    html, body {
        overflow-x: hidden !important;
    }
    /* HEADER */
    .header-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .menu-toggle {
        display: block;
    }



    .logo-img {
        height: 55px;
    }

    .logo-text .line1 {
        font-size: 14px;
    }
    .logo-text .line2 {
        font-size: 18px;
    }

    /* HERO */
    .hero h1 {
        font-size: 2rem;
    }

    .hero {
        padding: 60px 20px;
    }

  

    /* CONTENEDORES */
    .container, .nosotros-container, .docs-container {
        width: 94%;
    }

    .apo-text {
        font-size: 1rem;
    }

    /* Carrusel */
    .slide img {
        height: 250px;
    }
.menu-btn {
    display: none;
    font-size: 35px;
    cursor: pointer;
}

/* Desktop: menú normal */
.nav {
    display: flex;
    gap: 25px;
}


    /* Mostrar botón menú */
    .menu-btn {
        display: block;
    }

    /* Ocultar menú por defecto */
    .nav {
        display: none;
        flex-direction: row;
        flex-wrap: wrap; /* Permite bajar a otra línea */
        width: 100%;
        background-color: var(--azul);
        position: absolute;
        top: 80px; /* Ajusta según tu header */
        left: 0;
        padding: 12px 10px;
        border-top: 2px solid #d1d1d1;
        justify-content: center;
        gap: 12px;
        z-index: 999;
            border-bottom: 3px solid var(--amarillo);
    }

    /* Cuando se muestre */
    .nav.active {
        display: flex;
    }

    .nav a {
        padding: 10px 14px;
        background: var(--amarillo);
        color: #000;
        border-radius: 8px;
        font-weight: 600;
    }   

       .apo-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-top: 30px;
    }
      .doc-frame {
    height: 180px;
  }
  .docs-title {
    font-size: 25px;
  }
.footer-container{
    
    margin: auto;
    width: 90%;
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    gap: 20px;
    padding-bottom: 12px;
    font-size: 15px;
    text-align: justify;
}

.footer-container > div:first-child {
    grid-row: 1 / span 2; /* el número de filas que tengas; ajusta según sea */
    justify-self: center; /* centra horizontalmente */
    align-self: center;    /* centra verticalmente */
    text-align: center;    /* centra el texto y logo dentro */
    
    
}

.footer-container > div:nth-child(3) {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-all; /* fuerza aún más la ruptura si el email es largo */
}





 

   .apo-flex {
        flex-direction: column;     /* imagen abajo del texto */
        align-items: center;
        text-align: left;
        gap: 20px;
    }

    .apo-text {
        width: 82%;
        font-size: 16px;            /* tamaño adecuado */
        line-height: 1.5;
    }

    .apo-img img {
        width: 82%;                 /* imagen más pequeña */
        max-width: 320px;           /* límite para que no sea enorme */
        height: auto;
        display: block;
        margin: auto;
    }

.mat-grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 40px;
   
}

  .full-bleed {
    
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    object-fit: cover;
    max-height: 360px; 
  }

     .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
 .gallery-item{
        width: 90%;
  
    margin: auto;
    text-align: justify;
 }

}



 
/* Teléfonos más pequeños */
@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item {
        width: 100%;
        text-align: center;
    }
}
