@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;500;700&display=swap');

/* =================================== */
/* =====  0. FUENTES E ICONOS    ===== */
/* =================================== */
@font-face {
  font-family: 'icomoon';
  src:  url('fonts/icomoon.eot?5dim9m');
  src:  url('fonts/icomoon.eot?5dim9m#iefix') format('embedded-opentype'),
    url('fonts/icomoon.ttf?5dim9m') format('truetype'),
    url('fonts/icomoon.woff?5dim9m') format('woff'),
    url('fonts/icomoon.svg?5dim9m#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-247:before {content: "\e900";}
.icon-Capp:before {content: "\e901";}
.icon-Close:before {content: "\e902";}
.icon-Contact:before {content: "\e903";}
.icon-Equis:before {content: "\e904";}
.icon-Face:before {content: "\e905";}
.icon-Home:before {content: "\e906";}
.icon-Image:before {content: "\e907";}
.icon-Insta:before {content: "\e908";}
.icon-Link:before {content: "\e909";}
.icon-Mentor:before {content: "\e90a";}
.icon-Merch:before {content: "\e90b";}
.icon-Pack:before {content: "\e90c";}
.icon-Plush:before {content: "\e90d";}
.icon-Products:before {content: "\e90e";}
.icon-Services:before {content: "\e90f";}
.icon-Tik:before {content: "\e910";}
.icon-User:before {content: "\e911";}
.icon-You:before {content: "\e912";}
.icon-Yupi:before {content: "\e913";}


/* =================================== */
/* =====  1. VARIABLES & RESET   ===== */
/* =================================== */
:root {
    --primary-color: #0074c5;
    --secondary-color: #fff;
    --dark-color: #004e70;
    --text-color: #394049;
    --light-gray: #7d858b;
    --accent: #e2a615; 
    
    --overlay-color: rgba(30, 41, 59, 0.85);
    --nav-bg-mobile: rgba(230, 230, 230, 0.95); 
    --nav-bg-desktop: #f4f4f4;
    --anim-speed: 0.5s;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300; background: #000;
    overflow-x: hidden; overflow-y: auto; min-height: 100vh;
}

/* =================================== */
/* =====  2. NAVEGACIÓN (MOBILE) ===== */
/* =================================== */

/* =================================== */
/* =====  USER ACCOUNT ICON      ===== */
/* =================================== */

.user {
    position: fixed;
    top: 0;
    /* Calculado para estar a la izquierda del idioma */
    right: 85px; 
    height: 60px;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-icon {
    color: var(--light-gray);
    font-size: 1.4rem; /* Tamaño equilibrado */
    text-decoration: none;
    
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%; /* Círculo perfecto */
    
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid transparent; /* Reserva espacio para borde */
}

/* Efecto Hover & Animación Sutil */
.user-icon:hover {
    color: var(--secondary-color); /* Blanco puro */
    background: rgba(255, 255, 255, 0.08); /* Fondo vítreo muy sutil */
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px) scale(1.05); /* Flota y crece ligeramente */
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Efecto Click */
.user-icon:active {
    transform: scale(0.95);
    background: rgba(255, 255, 255, 0.15);
}
/* IDIOMA (Fixed Top Right) */
.lang-switch {
    position: fixed; top: 0; right: 0; height: 60px; 
    display: flex; align-items: center; justify-content: center;
    padding-right: 20px; z-index: 1100; font-size: 0.9rem; font-weight: 500;
}
.lang-switch a { text-decoration: none; color: var(--light-gray); transition: color 0.3s; }
.lang-switch a.active, .lang-switch a:hover { color: var(--secondary-color); }
.lang-switch .divider { margin: 0 8px; color: var(--dark-color); }

/* LOGO */
.brand-logo {
    position: fixed; z-index: 1100; display: flex; align-items: center;
    top: 0; left: 60px; height: 60px; text-decoration: none;
}
.brand-logo img { height: 24px; width: auto; display: block; }

/* CONTENEDOR NAV (Anti-glitch) */
.nav-container {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background: var(--nav-bg-mobile); 
    transition: height var(--anim-speed) cubic-bezier(0.4, 0, 0.2, 1);
    height: 60px; overflow: hidden; /* Oculta contenido hasta expandir */
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.nav-container.active { height: 100dvh; }

.nav-header { height: 60px; display: flex; align-items: center; padding-left: 15px; }
.menu-toggle {
    background: none; border: none; cursor: pointer;
    width: 40px; height: 40px; position: relative;
    display: flex; align-items: center; justify-content: center; padding: 0;
}

/* Animación Iconos Trigger */
.trigger-icon { position: absolute; transition: opacity 0.3s ease, transform 0.3s ease; pointer-events: none; }
.trigger-icon.logo-state { width: 100%; opacity: 1; transform: scale(1) rotate(0deg); }
.trigger-icon.close-state { font-size: 1.8rem; color: var(--dark-color); opacity: 0; transform: scale(0.5) rotate(-90deg); }
.nav-container.active .trigger-icon.logo-state { opacity: 0; transform: scale(0.5) rotate(90deg); }
.nav-container.active .trigger-icon.close-state { opacity: 1; transform: scale(1) rotate(0deg); }

/* Wrapper Interno (Lógica de Delay) */
.menu-wrapper {
    width: 100%; height: calc(100dvh - 60px); display: flex; flex-direction: column; padding: 0;
    opacity: 0; visibility: hidden;
    transition: opacity 0.2s ease 0s, visibility 0.2s 0s;
}
.nav-container.active .menu-wrapper { 
    opacity: 1; visibility: visible;
    transition: opacity 0.4s ease 0.3s, visibility 0s 0.3s; /* Delay 0.3s clave */
}

/* Lista de Menú */
.nav-list { list-style: none; padding: 20px; width: 100%; }

/* Animación Cascada Mobile */
.nav-list li {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.nav-container.active .nav-list li:nth-child(1) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.nav-container.active .nav-list li:nth-child(2) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }
.nav-container.active .nav-list li:nth-child(3) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.nav-container.active .nav-list li:nth-child(4) { transition-delay: 0.45s; opacity: 1; transform: translateY(0); }

.nav-list li a {
    display: flex; align-items: center; text-decoration: none;
    color: var(--text-color); padding: 15px 10px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-size: 1.1rem; font-weight: 500; transition: color 0.3s;
}
.nav-list li a i { font-size: 1.6rem; margin-right: 15px; color: var(--primary-color); width: 40px; text-align: center; }
.nav-list li a:hover { color: var(--primary-color); }
.nav-list li a .label { display: block; } /* Mostrar label en móvil */


/* =======================================================
   REEMPLAZO PARA SECCIÓN: REDES SOCIALES (MÓVIL)
   (Pégalo en style.css sustituyendo la sección anterior)
======================================================= */

/* Contenedor que agrupa Iconos + Legales al fondo */
.nav-footer-group {
    margin-top: auto; /* Clave: Empuja todo al final de los 100vh */
    background: var(--dark-color);
    width: 100%;
    padding: 30px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Redes Sociales */
.nav-social {
    background: transparent; /* El fondo ya lo tiene el padre */
    padding: 0;
    margin-bottom: 20px;
    display: flex; 
    gap: 30px;
}

.nav-social a { 
    color: #fff; 
    font-size: 2rem; 
    text-decoration: none; 
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0; transform: translateY(20px); /* Estado inicial anim */
}

/* Animación de entrada */
.nav-container.active .nav-social a { opacity: 1; transform: translateY(0); }
.nav-container.active .nav-social a:nth-child(1) { transition-delay: 0.5s; }
.nav-container.active .nav-social a:nth-child(2) { transition-delay: 0.55s; }
.nav-container.active .nav-social a:nth-child(3) { transition-delay: 0.6s; }
.nav-container.active .nav-social a:nth-child(4) { transition-delay: 0.65s; }

.nav-social a:active { color: var(--primary-color); transform: scale(1.3); }

/* Enlaces Legales (Solo Móvil) */
.legal-links {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
}
.legal-links a { color: inherit; text-decoration: none; margin: 0 8px; font-weight: 500; }
.legal-links p { margin-top: 10px; font-size: 0.7rem; opacity: 0.7; }


/* --- AJUSTE DESKTOP (IMPORTANTE) --- */
@media (min-width: 768px) {
    /* Reseteamos el contenedor grupal en desktop para que no moleste */
    .nav-footer-group {
        background: transparent; padding: 0; margin: 0; display: contents;
    }
    
    /* Ocultamos enlaces legales en menú desktop */
    .legal-links { display: none; }

    /* Restauramos estilo cápsula para redes */
    .nav-social {
        background-color: var(--dark-color);
        width: 100%;
        padding: 20px 0 25px 0;
        margin: 0;
        display: flex; flex-direction: column; gap: 20px;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
    }
    .nav-social a { opacity: 0.8; font-size: 2.4rem; transform: none; transition-delay: 0s !important; }
    .nav-social a:hover { opacity: 1; transform: scale(1.2); color: var(--light-gray) !important; }
}

/* =================================== */
/* =====  3. SLIDER (MOBILE)     ===== */
/* =================================== */
.slider-viewport { width: 100vw; height: 100dvh; position: relative; z-index: 1; }
.slider-track {
    display: flex; flex-direction: column; width: 100%; height: 100%;
    will-change: transform; transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.slide {
    width: 100vw; height: 100dvh; flex-shrink: 0; 
    position: relative; padding: 20px; box-sizing: border-box; overflow: hidden;
    display: flex; flex-direction: column; justify-content: space-between; 
    align-items: center; text-align: center;
}

/* Capas Slider */
.slide-bg img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }

.slide::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1;
    background-image: linear-gradient(to bottom, var(--overlay-color) 0%, rgba(255, 255, 255, 0) 50%, var(--overlay-color) 100%);
    mix-blend-mode: multiply; 
}

.slide-content {
    width: 100%; height: 100%; position: relative; z-index: 2;
    display: flex; flex-direction: inherit; justify-content: inherit; align-items: inherit;
}

.text-group { margin-top: 80px; }
.text-group h1 { color: var(--secondary-color); font-size: 2.2rem; font-weight: 700; margin-bottom: 1rem; line-height: 1.1; }
.text-group p { color: var(--secondary-color); font-size: 1rem; opacity: 0.9; max-width: 90%; margin: 0 auto; }

.cta-group { margin-bottom: 80px; width: 100%; }
.btn-primary {
    display: inline-block; background-color: var(--primary-color); color: #fff;
    padding: 15px 30px; border-radius: 30px; text-decoration: none;
    font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3); transition: transform 0.3s ease, background 0.3s ease;
}
.btn-primary:hover { background-color: var(--dark-color); transform: translateY(-2px); }

/* Controles Slider (Centrados) */
.slider-controls { 
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    z-index: 10; display: flex; gap: 10px; right: auto;
}
.control-btn { 
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3); 
    color: var(--secondary-color); padding: 10px 15px; cursor: pointer; 
    backdrop-filter: blur(5px); transition: background 0.3s; 
}
.control-btn:hover { background: rgba(255,255,255,0.3); }


/* =================================== */
/* =====  4. GRID & PARALLAX     ===== */
/* =================================== */
.solutions-section { 
    position: relative; overflow: hidden; 
    background-color: #0b0d10; padding: 100px 20px; z-index: 2; 
}

.parallax-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 120%;
    /* Ruta corregida a ../img/ */
    background-image: url('../img/bg-hologram.webp'); 
    background-size: cover; background-position: center; z-index: 0;
    will-change: transform;
}
.bg-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1;
    background: radial-gradient(circle, rgba(11,13,16,0.85) 0%, #0b0d10 100%);
}
.relative-z { position: relative; z-index: 2; }

/* Grid Contenido */
.container { max-width: 1400px; margin: 0 auto; }
.section-header { margin-bottom: 60px; text-align: left; }
.section-header h2 { color: var(--secondary-color); font-size: 2.5rem; font-weight: 700; margin-bottom: 10px; }
.section-header p { color: var(--light-gray); font-size: 1.2rem; }

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: rgba(20, 22, 25, 0.8); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; overflow: hidden; 
    transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.5); border-color: rgba(255,255,255,0.15); }

.card-image { height: 220px; width: 100%; position: relative; background: #222; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card-image img { transform: scale(1.05); }

.tag {
    position: absolute; top: 15px; left: 15px; background: rgba(0,0,0,0.7);
    color: #fff; padding: 5px 10px; font-size: 0.75rem; text-transform: uppercase;
    letter-spacing: 1px; backdrop-filter: blur(4px); border-radius: 4px;
}

.card-content { padding: 25px; display: flex; flex-direction: column; flex-grow: 1; }
.card h3 { color: var(--secondary-color); font-size: 1.4rem; margin-bottom: 5px; }
.subtitle { color: var(--primary-color); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; font-weight: 500; }
.desc { color: var(--light-gray); font-size: 0.95rem; line-height: 1.5; margin-bottom: 25px; flex-grow: 1; }
.card-link {
    color: var(--secondary-color); text-decoration: none; font-weight: 500; font-size: 0.9rem;
    align-self: flex-start; border-bottom: 1px solid transparent; transition: border-color 0.3s;
}
.card-link:hover { border-color: var(--primary-color); }


/* --- FOOTER (MOBILE) --- */
.main-footer { background-color: #050607; padding: 80px 20px 40px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 40px; }
.footer-col h4 { color: var(--secondary-color); margin-bottom: 20px; font-size: 1.1rem; }
.footer-logo { height: 100px; margin-bottom: 20px; opacity: 0.8; }
.brand-col p { color: var(--light-gray); font-size: 0.9rem; margin-bottom: 20px; }
.copyright { font-size: 0.75rem !important; opacity: 0.4; margin-top: 30px; }
.links-col ul { list-style: none; }
.links-col ul li { margin-bottom: 10px; }
.links-col ul li a { color: var(--light-gray); text-decoration: none; font-size: 0.95rem; transition: color 0.3s; }
.links-col ul li a:hover { color: var(--primary-color); }
.subscribe-col p { color: var(--light-gray); font-size: 0.9rem; margin-bottom: 20px; }
.footer-form { display: flex; border-bottom: 1px solid rgba(255,255,255,0.2); }
.footer-form input { background: none; border: none; padding: 10px 0; color: #fff; width: 100%; outline: none; }
.footer-form button { background: none; border: none; color: var(--primary-color); font-size: 1.2rem; cursor: pointer; }


/* --- ANIMACIONES CSS (COREOGRAFÍA) --- */
.slide .text-group h1, .slide .text-group p { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000); }
.slide .cta-group { opacity: 0; transform: translateY(60px); transition: all 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000); }
.slide .slide-bg img { transform: scale(1.1); transition: transform 1.5s ease-out; }
.slide.active .text-group h1 { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.slide.active .text-group p { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }
.slide.active .cta-group { opacity: 1; transform: translateY(0); transition-delay: 0.7s; }
.slide.active .slide-bg img { transform: scale(1); }


/* ================================================================= */
/* =====  5. SECCIÓN DESKTOP (UNIFICADA > 768px)               ===== */
/* ================================================================= */
@media (min-width: 768px) {

    /* --- UI ELEMENTS --- */
    .lang-switch { top: 30px; right: 30px; height: auto; }
    .brand-logo { top: 15px; left: 30px; height: auto; }
    .brand-logo img { height: 60px; }

    .user {
        /* Alineado con los márgenes del idioma en desktop */
        top: 20px; 
        right: 150px; /* Más espacio en escritorio */
        height: auto;
    }
    
    .user-icon {
        font-size: 2rem; /* Un poco más fino en desktop */
    }

    /* --- NAVEGACIÓN (CÁPSULA BICOLOR FIXED) --- */
    .nav-container {
        top: 50%; left: 30px; transform: translateY(-50%);
        width: 60px; height: 60px; border-radius: 30px;
        background: var(--nav-bg-desktop); box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        display: flex; flex-direction: column; align-items: center;
        padding-bottom: 0;
        
        /* ESTADO CERRADO: Oculto */
        overflow: hidden; 
    }
    
    .nav-container.active { 
        height: 480px; 
        /* ESTADO ABIERTO: Visible para que salgan los Tooltips */
        overflow: visible; 
    }
    .nav-social a:active, .nav-social a:focus {
    transition-delay: 0s !important; /* <--- ESTA LÍNEA ES LA CLAVE */
    color: var(--primary-color);
    transform: scale(1.15);
    }
    
    .nav-header { height: 60px; padding: 0; justify-content: center; flex-shrink: 0; width: 100%; }
    .menu-toggle { width: 100%; height: 100%; }
    
    /* Wrapper interno que recorta el fondo azul */
    .menu-wrapper { 
        height: 100%; padding: 0; width: 100%; flex-grow: 1; margin-top: 0;
        display: flex; flex-direction: column;
        border-bottom-left-radius: 30px; 
        border-bottom-right-radius: 30px;
        overflow: visible; /* Debe ser visible para dejar pasar tooltips */
    }
    
    /* ICONOS PRINCIPALES */
    .nav-list { 
        display: flex; flex-direction: column; align-items: center; justify-content: space-evenly; 
        flex-grow: 1; padding: 10px 0; background: var(--nav-bg-desktop);
        /* Restaurar opacidad/transform para desktop (anula anim móvil) */
        overflow: visible; 
    }
    .nav-list li { width: 100%; text-align: center; opacity: 1; transform: none; transition: none; overflow: visible; }
    .nav-list li a { 
        justify-content: center; padding: 0; border: none; position: relative; overflow: visible; 
        height: 50px; width: 50px; margin: 0 auto; 
    }
    .nav-list li a i { 
        margin-right: 0; font-size: 38px; 
        color: var(--dark-color); transition: color 0.3s ease, transform 0.2s;
    }
    .nav-list li a:hover i { color: var(--primary-color); transform: scale(1.1); }
    .nav-list li a.active i { color: var(--primary-color); }
    
    /* TOOLTIPS (Etiquetas Flotantes) - ARREGLADO */
    .nav-list li a .label {
        display: block; position: absolute; left: 65px; top: 50%; transform: translateY(-50%);
        background: var(--dark-color); color: var(--secondary-color);
        padding: 8px 12px; border-radius: 4px; font-size: 0.85rem; white-space: nowrap;
        opacity: 0; visibility: hidden; transition: all 0.3s ease; pointer-events: none; z-index: 2000;
        box-shadow: 2px 2px 5px rgba(0,0,0,0.2); width: auto;
    }
    .nav-list li a .label::before {
        content: ''; position: absolute; left: -4px; top: 50%; transform: translateY(-50%);
        border-right: 4px solid var(--dark-color); border-top: 4px solid transparent; border-bottom: 4px solid transparent;
    }
    .nav-container.active .nav-list li a:hover .label { opacity: 1; visibility: visible; left: 70px; }

   /* --- REDES SOCIALES DESKTOP (Crecer y Animar) --- */
    .nav-social {
        width: 100%; 
        padding: 20px 0 25px 0; 
        background-color: var(--dark-color); 
        border-top: 1px solid rgba(255,255,255,0.1);
        display: flex; 
        flex-direction: column; 
        align-items: center; 
        gap: 20px; /* Más espacio entre iconos */
        flex-shrink: 0; 
        margin-top: 0;
        
        /* Redondeo inferior de la cápsula */
        border-bottom-left-radius: 30px; 
        border-bottom-right-radius: 30px;
    }

    .nav-social a { 
        color: #fff !important; 
        font-size: 2.4rem; 
        opacity: 0.8;
        
        display: flex; align-items: center; justify-content: center;
        
        /* CORRECCIÓN: Quitamos el delay heredado del móvil */
        transition: all 0.3s ease; 
        transition-delay: 0s !important; /* <--- ESTO ARREGLA LA LENTITUD EN DESKTOP */
        
        transform: none; /* Reset transform móvil */
    }

    .nav-social a:hover { 
        opacity: 1; 
        color: var(--light-gray) !important; 
        transform: scale(1.25); 
        
        /* Aseguramos respuesta inmediata */
        transition-delay: 0s !important; 
    }

    /* LAYOUTS ESCRITORIO */
    .slider-track { flex-direction: row; } 
    .slide { 
        width: 100vw; height: 100vh;
        justify-content: flex-end; align-items: flex-end; text-align: right;
        padding-bottom: 4rem; padding-right: 4rem;
    }
    .slide-content { justify-content: flex-end; align-items: flex-end; width: auto; height: auto; }
    .text-group { margin-top: 0; max-width: 600px; margin-bottom: 2rem; }
    .text-group h1 { font-size: 3.5rem; }
    .text-group p { font-size: 1.2rem; margin: 0 0 0 auto; }
    .cta-group { width: auto; margin-bottom: 0; }
    .grid-container { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1.5fr 1fr 1.5fr; }
}