 /* ========== VARIABLES GLOBALES ========== */
 :root {
     /* Paleta de colores */
     --olivo: #495a58;
     --olivo-light: #49585a;
     --olivo-dark: #49535a;
     --durazno: #d4967d;
     --durazno-light: #c9937d;
     --durazno-dark: #bf907e;
     --crema: #d8d7d0;
     --crema-dark: #e5e3dc;
     --white: #ffffff;
     --gray-600: #4B5563;
     --gray-700: #374151;
     --gray-800: #1F2937;
     --black: #000000;

     /* Tipografía */
     --font-primary: 'Helvetica Neue', Helvetica, Arial, sans-serif;

     /* Espaciado */
     --spacing-xs: 0.5rem;
     --spacing-sm: 1rem;
     --spacing-md: 1.5rem;
     --spacing-lg: 2rem;
     --spacing-xl: 3rem;

     /* Bordes */
     --radius-sm: 4px;
     --radius-md: 8px;
     --radius-lg: 16px;
     --radius-full: 50px;

     /* Sombras */
     --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
     --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
     --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);

     /* Transiciones */
     --transition-fast: 0.2s ease;
     --transition-normal: 0.3s ease;
     --transition-slow: 0.5s ease;
 }

 /* ========== RESET Y ESTILOS BASE ========== */
 *,
 *::before,
 *::after {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 body {
     background-color: #f0f2f5;
     font-family: var(--font-primary);
     line-height: 1.6;
     color: var(--gray-700);
     overflow-x: hidden;
 }

 img {
     max-width: 100%;
     height: auto;
     display: block;
 }

 a {
     text-decoration: none;
     color: inherit;
     transition: color var(--transition-fast);
 }

 button {
     cursor: pointer;
     font-family: inherit;
     border: none;
     background: none;
 }

 /* ========== UTILIDADES ========== */
 .container {
     max-width: 1280px;
     margin: 0 auto;
     padding: 0 var(--spacing-sm);
 }

 .text-center {
     text-align: center;
 }

 .flex {
     display: flex;
 }

 .grid {
     display: grid;
 }

 .hidden-mobile {
     display: none;
 }

 /* ========== HEADER ========== */
 .main-header {
     background-color: var(--white);
     box-shadow: var(--shadow-md);
     position: sticky;
     top: 0;
     z-index: 50;
     padding: var(--spacing-xs) 0;
 }

 .header-content {
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: var(--spacing-md);
 }

 .logo-container .logo-img {
     height: 45px;
     width: auto;
 }

 /* Barra de búsqueda */
 .header-search {
     flex: 1;
     max-width: 500px;
 }

 .search-form {
     position: relative;
 }

 .search-input {
     width: 100%;
     padding: 0.6rem 2.5rem 0.6rem 1rem;
     border: 2px solid var(--crema-dark);
     border-radius: var(--radius-full);
     font-size: 0.95rem;
     color: var(--gray-700);
     background: var(--white);
     transition: all var(--transition-normal);
 }

 .search-input:focus {
     outline: none;
     border-color: var(--olivo);
     box-shadow: 0 0 0 3px rgba(212, 150, 125, 0.4);
 }

 .search-button {
     position: absolute;
     right: 5px;
     top: 50%;
     transform: translateY(-50%);
     padding: 0.5rem;
     color: var(--olivo);
     font-size: 1rem;
 }

 .search-button:hover {
     color: var(--durazno);
 }

 /* Navegación */
 .main-nav {
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 2.5rem;
     background: var(--white);
     border-bottom: 1px solid var(--crema-dark);
     padding: 0.25rem 0;
 }

 .nav-link {
     position: relative;
     padding: 0.75rem 0;
     font-weight: 500;
     color: var(--olivo);
 }

 .nav-link:hover {
     color: var(--durazno);
 }

 .nav-link::after {
     content: '';
     position: absolute;
     width: 0;
     height: 2px;
     bottom: 0;
     left: 50%;
     transform: translateX(-50%);
     background-color: var(--durazno);
     transition: width var(--transition-normal);
 }

 .nav-link.active::after,
 .nav-link:hover::after {
     width: 100%;
 }

 .nav-link.active {
     color: var(--durazno);
 }

 /* Iconos sociales */
 .social-links {
     display: flex;
     gap: var(--spacing-sm);
 }

 .social-icon {
     color: var(--olivo);
     transition: color var(--transition-normal);
 }

 .social-icon:hover {
     color: var(--durazno);
 }

 .social-icon i {
     font-size: 1.25rem;
 }

 .mobile-menu-button {
     background: none;
     color: var(--olivo);
     font-size: 1.5rem;
 }

 /* ========== HERO SECTION (NUEVO DISEÑO CON GRID) ========== */

 /*
 * Contenedor principal de la sección.
 * Usamos CSS Grid para crear dos columnas con una proporción 2:1.
*/
 .hero-split-section {
     background-color: #f0f2f5;
     padding: var(--spacing-lg);
     display: grid;
     /* SOLUCIÓN 2: Proporciones corregidas para un look más balanceado */
     grid-template-columns: 1.5fr 1fr;
     gap: var(--spacing-lg);
     /* SOLUCIÓN 1: Asegura que ambas columnas tengan la misma altura */
     align-items: stretch;
 }

 /*
 * Estilos para la tarjeta de la columna izquierda (Carrusel + Texto).
*/
 .hero-left-column {
     background-color: var(--white);
     border-radius: var(--radius-md);
     box-shadow: var(--shadow-md);
     overflow: hidden;
     /* Asegura que el contenido no se salga de los bordes redondeados */
     display: flex;
     flex-direction: column;
     height: 100%;
     /* Ocupa toda la altura de la celda del grid */
 }

 /*
 * Ajustes al contenedor del carrusel para que no tenga estilos propios
 * que interfieran con la tarjeta contenedora.
*/
 .hero-left-column {
     margin: 0;
     /* Quitamos el margen que tenía antes */
     box-shadow: none;
     /* La sombra ahora está en la tarjeta principal */
     border-radius: 0;
     /* Los bordes redondeados están en la tarjeta */
     aspect-ratio: 12 / 10;
     /* Proporción para la imagen */
 }

 .carousel-container {
     position: relative;
     width: 100%;
     overflow: hidden;
     flex-grow: 1;
     /* Permite que el carrusel ocupe el espacio disponible */
 }

 /*
 * Contenedor para el texto debajo del carrusel en la tarjeta izquierda.
*/
 .hero-left-caption {
     padding: var(--spacing-md);
     border-top: 1px solid #e5e7eb;
     /* Línea divisoria sutil */
 }

 .hero-left-caption h2 {
     font-size: 1.5rem;
     font-weight: bold;
     color: var(--gray-800);
     margin: 0;
 }

 .hero-left-caption p {
     font-size: 1rem;
     color: var(--gray-600);
     margin-top: var(--spacing-xs);
 }


 /*
 * Contenedor para la columna derecha (el banner).
*/
 .hero-right-column a {
     display: block;
     border-radius: var(--radius-md);
     box-shadow: var(--shadow-md);
     overflow: hidden;
     transition: transform var(--transition-normal), box-shadow var(--transition-normal);
 }

 .hero-right-column a:hover {
     transform: translateY(-5px);
     box-shadow: var(--shadow-lg);
 }

 .hero-right-column img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     /* Asegura que la imagen cubra todo el espacio sin deformarse */
     display: block;
 }


 /* --- Responsive: Adaptación para móviles --- */
 @media (max-width: 991px) {
     .hero-split-section {
         /* Cambiamos a una sola columna en pantallas pequeñas */
         grid-template-columns: 1fr;
     }
 }


 /* ========== WELCOME SECTION ========== */
 .welcome-section {
     padding: var(--spacing-xl) var(--spacing-sm);
     background-color: var(--white);
 }

 .section-title {
     font-size: 2.5rem;
     font-weight: bold;
     color: var(--olivo);
     margin-bottom: var(--spacing-sm);
 }

 .section-subtitle {
     font-size: 1.125rem;
     color: var(--gray-600);
     max-width: 48rem;
     margin: 0 auto var(--spacing-xl) auto;
 }

 .features-grid {
     display: grid;
     gap: var(--spacing-lg);
     max-width: 72rem;
     margin: 0 auto;
     grid-template-columns: 1fr;
 }

 .feature-card {
     background-color: #f0f2f5;
     padding: var(--spacing-lg);
     border-radius: var(--radius-lg);
     box-shadow: var(--shadow-sm);
 }

 .feature-icon-container {
     width: 4rem;
     height: 4rem;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto var(--spacing-sm);
     background-color: var(--durazno);
 }

 .feature-icon-container i {
     font-size: 1.5rem;
     color: var(--white);
 }

 .feature-title {
     font-size: 1.25rem;
     font-weight: bold;
     color: var(--olivo);
     margin-bottom: var(--spacing-sm);
 }

 /* ========== FOOTER ========== */
 .main-footer-bottom {
     background-color: var(--gray-800);
     color: var(--white);
     padding: var(--spacing-lg) 0;
 }

 /* ========== NAVEGACIÓN MÓVIL ========== */
 .mobile-nav {
     display: none;
     flex-direction: column;
     gap: 1rem;
     background-color: var(--white);
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 1000;
     overflow-y: auto;
     transition: transform 0.3s ease-in-out;
     transform: translateX(-100%);
 }

 .mobile-nav.active {
     display: flex;
     transform: translateX(0);
     justify-content: center;
     align-items: center;
 }

 .mobile-nav .nav-link {
     padding: 1rem;
     width: 100%;
     text-align: center;
 }

 /* ========== RESPONSIVE DESIGN ========== */
 @media (max-width: 767px) {

     .header-search,
     .main-nav {
         display: none;
     }

     .mobile-menu-button {
         display: block;
     }
 }

 @media (min-width: 768px) {
     .hidden-mobile {
         display: block;
     }

     .header-search {
         display: block;
     }

     .main-nav {
         display: flex;
     }

     .mobile-menu-button {
         display: none;
     }

     .features-grid {
         grid-template-columns: repeat(3, 1fr);
     }
 }

 /* Carrusel de Imágenes */
 .carousel-container {
     position: relative;
     width: 100%;
     padding-bottom: 56.25%;
     /* 16:9 aspect ratio para pantallas grandes */
     height: 0;
     overflow: hidden;
     border-radius: 1rem;
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
 }

 .carousel-slides {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     display: flex;
     transition: transform 0.5s ease-in-out;
 }

 .carousel-slide {
     min-width: 100%;
     height: 100%;
 }

 .carousel-slide img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .carousel-control {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background-color: rgba(0, 0, 0, 0.4);
     color: white;
     border: none;
     padding: 0.75rem;
     cursor: pointer;
     border-radius: 50%;
     width: 44px;
     height: 44px;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: background-color 0.3s ease;
     z-index: 10;
 }

 .carousel-control:hover {
     background-color: rgba(0, 0, 0, 0.7);
 }

 .carousel-control.prev {
     left: 15px;
 }

 .carousel-control.next {
     right: 15px;
 }

 .carousel-dots {
     text-align: center;
     position: absolute;
     bottom: 15px;
     width: 100%;
     z-index: 10;
 }

 .carousel-dot {
     cursor: pointer;
     height: 12px;
     width: 12px;
     margin: 0 5px;
     background-color: rgba(255, 255, 255, 0.5);
     border-radius: 50%;
     display: inline-block;
     transition: background-color 0.3s ease;
 }

 .carousel-dot.active {
     background-color: var(--white);
 }

 @media (max-width: 767px) {
     .carousel-container {
         aspect-ratio: 4 / 3;
         border-radius: 0;
         margin-top: 0;
         margin-bottom: 0;
     }

     .carousel-control {
         width: 36px;
         height: 36px;
         padding: 0.5rem;
     }

     .carousel-control.prev {
         left: 10px;
     }

     .carousel-control.next {
         right: 10px;
     }
 }


 /* About Section */
 .founders-grid {
     display: grid;
     gap: 3rem;
     max-width: 72rem;
     margin: auto;
     align-items: start;
 }

 @media (min-width: 1024px) {
     .founders-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 .founder-card {
     background-color: var(--white);
     border-radius: 1rem;
     box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
     padding: 2rem;
 }

 .founder-header {
     text-align: center;
 }

 .founder-avatar-container {
     width: 8rem;
     height: 8rem;
     margin: 0 auto 1rem;
     border-radius: 50%;
     overflow: hidden;
     border: 4px solid var(--durazno);
 }

 .founder-avatar1 {
     width: 100%;
     height: 175%;
     object-fit: cover;
 }

 .founder-avatar2 {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .photograph-avatar1 {
     width: 100%;
     height: 175%;
     object-fit: cover;
 }

 .photograph-avatar2 {
     width: 100%;
     height: 170%;
     object-fit: cover;
 }

 .photograph-avatar3 {
     width: 130%;
     height: 120%;
     object-fit: cover;
 }

 .photograph-avatar4 {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .founder-name {
     font-size: 1.5rem;
     font-weight: bold;
     color: var(--olivo);
 }

 .founder-role {
     color: var(--durazno);
     font-weight: 600;
     margin-bottom: 1rem;
 }

 .founder-info-button {
     width: 100%;
     background-color: var(--olivo);
     color: var(--white);
     padding: 0.75rem;
     border-radius: 0.5rem;
     font-weight: 600;
     border: none;
     cursor: pointer;
     transition: background-color 0.3s ease;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .founder-info-button:hover {
     background-color: var(--olivo-dark);
 }

 /* Talleres Section - Mejoras para Responsividad */
 .workshops-grid {
     display: grid;
     grid-template-columns: 1fr;
     gap: 2rem;
     padding: 1rem 0;
 }

 @media (min-width: 768px) {
     .workshops-grid {
         grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
     }
 }

 .taller-card-link {
     text-decoration: none;
     color: inherit;
     display: block;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .taller-card-link:hover {
     transform: translateY(-5px);
     box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
 }

 .taller-card {
     background-color: var(--white);
     display: flex;
     flex-direction: column;
     height: 100%;
 }

 @media (min-width: 768px) {
     .taller-card {
         flex-direction: row;
     }
 }

 .taller-card-image-container {
     flex: 0 0 40%;
     position: relative;
 }

 @media (max-width: 767px) {
     .taller-card-image-container {
         flex: 0 0 auto;
     }
 }

 .taller-card-image-top {
     display: block;
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 @media (max-width: 767px) {
     .taller-card-image-top {
         aspect-ratio: 4 / 3;
         height: auto;
     }
 }

 .taller-card-content {
     flex: 1;
     padding: 1.5rem;
     display: flex;
     flex-direction: column;
     justify-content: center;
     background-color: var(--white);
     color: var(--black);
 }

 .taller-card-title {
     font-size: 1.25rem;
     font-weight: 700;
     margin-bottom: 0.5rem;
 }

 @media (min-width: 768px) {
     .taller-card-title {
         font-size: 1.5rem;
     }
 }

 .taller-card-content p {
     font-size: 0.9rem;
     line-height: 1.5;
     flex-grow: 1;
     margin-bottom: 1.5rem;
 }

 @media (min-width: 768px) {
     .taller-card-content p {
         font-size: 1rem;
     }
 }

 .taller-card-button {
     display: inline-block;
     padding: 0.75rem 1.5rem;
     background-color: var(--olivo);
     color: var(--white);
     text-align: center;
     font-weight: 700;
     border-radius: 50px;
     transition: background-color 0.3s ease;
     align-self: flex-start;
 }

 .taller-card-button:hover {
     background-color: var(--olivo-dark);
 }

 /* Contact Section */
 .contact-grid {
     display: grid;
     gap: 3rem;
     max-width: 72rem;
     margin: auto;
     background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.squarespace-cdn.com/content/v1/6822d977da15d609e5bd54ac/a65fd1df-04f1-477e-b4f8-b9b24998d49f/117913193_10158198070807771_4649213143903232118_n.jpg?format=1000w') no-repeat center center;
     background-size: cover;
     padding: 3rem;
     color: var(--white);
     border-radius: 1rem;
 }

 @media (min-width: 768px) {
     .contact-grid {
         grid-template-columns: 1fr 1.2fr;
     }
 }

 .contact-details {
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
 }

 .contact-item {
     display: flex;
     align-items: flex-start;
     gap: 1rem;
 }

 .contact-item i {
     color: var(--durazno);
     font-size: 1.25rem;
     margin-top: 5px;
 }

 .contact-socials-title {
     font-size: 1.25rem;
     font-weight: bold;
     margin-bottom: 1rem;
     margin-top: 2rem;
 }



 .map-container {
     position: relative;
     width: 100%;
     padding-bottom: 56.25%;
     /* Relación 16:9 para pantallas grandes, rectángulo horizontal */
     height: 0;
     overflow: hidden;
     border-radius: 0.5rem;
 }

 .map-container iframe {
     position: absolute;
     top: 0;
     left: 0;
     border-radius: 0.5rem;
     width: 100%;
     height: 100%;
     border: 0;
 }

 /* Ajustes para móviles */
 @media (max-width: 767px) {
     .map-container {
         padding-bottom: 75%;
         /* Relación 4:3 para móviles, rectángulo vertical */
     }
 }

 /* Footer */
 .main-footer-bottom {
     background-color: var(--gray-800);
     color: var(--white);
     padding: 2rem 0;
 }

 /* Menú Móvil Activo */
 /* Menú Móvil */
 .mobile-nav {
     display: none;
     flex-direction: column;
     gap: 1rem;
     background-color: var(--white);
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 1000;
     overflow-y: auto;
     transition: transform 0.3s ease-in-out;
     transform: translateX(-100%);
 }

 .mobile-nav.active {
     display: flex;
     transform: translateX(0);
     justify-content: center;
     align-items: center;
 }

 .mobile-nav .nav-link {
     padding: 1rem;
     width: 100%;
     text-align: center;
     font-size: 1.2rem;
 }

 /* Media Query para Móviles */
 @media (max-width: 767px) {
     .main-nav {
         display: none;
     }

     .mobile-menu-button {
         display: block;
     }
 }

 /* Acordeón (Fundadores) */
 .founder-info {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out, margin-top 0.5s ease-in-out;
     padding: 0 1.5rem;
     margin-top: 0;
 }

 .founder-info.active {
     max-height: 800px;
     padding: 1.5rem;
     margin-top: 1.5rem;
     border-top: 1px solid var(--olivo-light);
 }

 /* Animación de Scroll */
 .animate-on-scroll {
     opacity: 0;
     transform: translateY(30px);
     transition: opacity 0.6s ease-out, transform 0.6s ease-out;
 }

 .animate-on-scroll.visible {
     opacity: 1;
     transform: translateY(0);
 }

 /* Página de Donaciones */
 .donations-section {
     padding: 5rem 1rem;
     background-color: #f0f2f5;
 }

 .donation-info {
     max-width: 48rem;
     margin: 2rem auto;
     background-color: var(--white);
     padding: 2.5rem;
     border-radius: 1rem;
     box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
 }

 .donation-info h3 {
     font-size: 1.5rem;
     color: var(--olivo);
     margin-bottom: 1.5rem;
 }

 .donation-info ul {
     list-style: none;
     padding: 0;
     margin-bottom: 2rem;
 }

 .donation-info ul li {
     padding-left: 2rem;
     position: relative;
     margin-bottom: 1rem;
     color: var(--gray-700);
 }

 .donation-info ul li::before {
     content: '\f004';
     font-family: 'Font Awesome 6 Free';
     font-weight: 900;
     color: var(--durazno);
     position: absolute;
     left: 0;
     top: 2px;
 }

 /* Carrusel de Imágenes - Versión Responsiva Mejorada */
 .carousel-container {
     position: relative;
     max-width: 1100px;
     margin: 3rem auto;
     overflow: hidden;
     border-radius: 1rem;
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
     aspect-ratio: 16 / 9;
 }

 .carousel-slides {
     display: flex;
     height: 100%;
     transition: transform 0.5s ease-in-out;
 }

 .carousel-slide {
     min-width: 100%;
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .carousel-control {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background-color: rgba(0, 0, 0, 0.4);
     color: white;
     border: none;
     padding: 0.75rem;
     cursor: pointer;
     border-radius: 50%;
     width: 44px;
     height: 44px;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: background-color 0.3s ease;
     z-index: 10;
 }

 .carousel-control:hover {
     background-color: rgba(0, 0, 0, 0.7);
 }

 .carousel-control.prev {
     left: 15px;
 }

 .carousel-control.next {
     right: 15px;
 }

 .carousel-dots {
     text-align: center;
     position: absolute;
     bottom: 15px;
     width: 100%;
     z-index: 10;
 }

 .carousel-dot {
     cursor: pointer;
     height: 12px;
     width: 12px;
     margin: 0 5px;
     background-color: rgba(255, 255, 255, 0.5);
     border-radius: 50%;
     display: inline-block;
     transition: background-color 0.3s ease;
 }

 .carousel-dot.active {
     background-color: var(--white);
 }

 @media (max-width: 767px) {
     .carousel-container {
         aspect-ratio: 4 / 3;
         border-radius: 0;
         margin-top: 2rem;
         margin-bottom: 2rem;
     }

     .carousel-control {
         width: 36px;
         height: 36px;
         padding: 0.5rem;
     }

     .carousel-control.prev {
         left: 10px;
     }

     .carousel-control.next {
         right: 10px;
     }
 }

 /* Taller Detalle Page */
 .taller-detalle-header {
     padding: 4rem 1rem;
     background-color: var(--olivo);
     text-align: center;
     color: var(--white);
 }

 .taller-detalle-header .section-title {
     color: var(--white);
 }

 .taller-detalle-header .section-subtitle {
     color: var(--crema);
 }

 .taller-contenido {
     display: grid;
     grid-template-columns: 1fr;
     gap: 3rem
 }

 /* Gallery Section */
.gallery-section {
    margin-top: 5rem;
}

.gallery-title {
    font-size: 1.875rem;
    font-weight: bold;
    text-align: center;
    color: var(--olivo);
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 100rem;
    margin: auto;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-item {
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.gallery-item svg {
    width: 100%;
    height: 100%;
    display: block;
}


.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Clave para rellenar sin distorsionar */
    display: block;
    /* Elimina espacios extra debajo de la imagen */
}
