/* =========================================
   VARIABLES & RESET (Mobile-First)
========================================= */
:root {
    --gold-primary: #D3A654;
    --gold-light: #F6D365;
    --gold-dark: #8B6D26;
    --wa-green: #25D366;
    --wa-green-hover: #128C7E;
    
    --bg-dark: #070707;
    --text-main: #F5F5F5;
    --text-muted: #e2e2e2; /*--text-muted: #A0A0A0;*/
    
    --glass-bg: rgba(15, 15, 15, 0.55);
    --glass-border: rgba(211, 166, 84, 0.25);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.7);
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background-color: var(--bg-dark); color: var(--text-main); font-family: var(--font-body); line-height: 1.6; overflow-x: hidden; }

/* =========================================
   RENDIMIENTO DE VIDEO OPTIMIZADO
========================================= */
.video-background {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -10; overflow: hidden; background-color: var(--bg-dark);
    transform: translateZ(0); -webkit-transform: translateZ(0); will-change: transform;
}
.video-background video { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; }
.video-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(7, 7, 7, 0.25); 
}

/* =========================================
   EFECTO "LIQUID GLASS" + BRILLO INTERNO
========================================= */
.liquid-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border); box-shadow: var(--glass-shadow);
    border-radius: 12px; position: relative; overflow: hidden;
    transition: transform 0.1s linear, box-shadow 0.4s ease, border 0.4s ease;
    transform-style: preserve-3d;
}
.liquid-glass::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(211, 166, 84, 0.15), transparent);
    transform: skewX(-25deg); transition: left 0.7s ease; z-index: 1; pointer-events: none;
}
.liquid-glass:hover::before { left: 150%; }
.liquid-glass:hover {
    border-color: rgba(211, 166, 84, 0.8);
    box-shadow: inset 0 0 25px rgba(211, 166, 84, 0.2), 0 15px 45px rgba(0, 0, 0, 0.9);
}
.liquid-glass-nav {
    background: rgba(10,10,10,0.8); backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--glass-border);
}

/* =========================================
   BOTONES, LOGOS Y ANIMACIONES
========================================= */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 24px; border-radius: 50px; font-weight: 600; font-size: 0.9rem;
    text-decoration: none; transition: all 0.3s ease; cursor: pointer;
    text-transform: uppercase; letter-spacing: 1px;
}
.btn-wa-solid { background: var(--wa-green); color: white; border: none; }
.btn-wa-solid:hover { background: var(--wa-green-hover); }
.btn-wa-outline { background: transparent; color: var(--gold-primary); border: 1px solid var(--gold-primary); }
.btn-gold-outline { background: transparent; color: var(--gold-primary); border: 1px solid var(--gold-primary); width: 100%; max-width: 300px; margin: 0 auto; }
.btn-wa-outline:hover, .btn-gold-outline:hover { background: var(--gold-primary); color: var(--bg-dark); }
/* BOTÓN VERDE OUTLINE (Lista de Espera) */
.btn-green-outline {
    background: transparent;
    color: var(--wa-green);
    border: 1px solid var(--wa-green);
}
.btn-green-outline:hover {
    background: var(--wa-green);
    color: white;
}

/* ACCIONES DEL MODAL DE CONFIRMACIÓN */
.modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}
/* Clases para Logos */
.logo-img { max-height: 45px; width: auto; object-fit: contain; }
.hero-logo-img { width: 100%; max-width: 500px; height: auto; object-fit: contain; margin: 0 auto 20px auto; display: block; filter: drop-shadow(0 4px 15px rgba(0,0,0,0.8)); }
.logo-img-footer { max-height: 60px; width: auto; object-fit: contain; margin-bottom: 15px; }
.wa-img { height: 18px; width: 18px; object-fit: contain; vertical-align: middle; }
.wa-img-floating { height: 32px; width: 32px; object-fit: contain; margin: auto; }

.shimmer-effect { position: relative; overflow: hidden; }
.shimmer-effect::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-20deg); animation: shimmer 3s infinite;
}
@keyframes shimmer { 100% { left: 200%; } }

.pulse-anim { animation: pulse 2s infinite; }
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* =========================================
   TIPOGRAFÍA Y UTILIDADES
========================================= */
.section { padding: 80px 20px; }
h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; color: var(--gold-primary); }
.mt-1 { margin-top: 1rem; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { font-size: 1.8rem; margin-bottom: 10px; }
.section-header p { color: var(--text-muted); font-size: 1 rem; }
.center-btn { text-align: center; margin-top: 40px; }
.desktop-only-flex { display: none; }

/* Separador Dorado con Líneas Laterales */
.section-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1.5rem;
    margin: 20px auto;
    padding: 0 20px;
    max-width: 800px;
    position: relative;
    z-index: 10;
    text-shadow: 0 0 10px rgba(211, 166, 84, 0.5);
}
.section-separator::before,
.section-separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(211, 166, 84, 0.5);
    margin: 0 20px;
    box-shadow: 0 1px 5px rgba(211, 166, 84, 0.1);
}

/* =========================================
   HEADER Y MENÚ MÓVIL
========================================= */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 15px 20px; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { font-size: 1.5rem; }
.logo-text { font-family: var(--font-heading); font-size: 0.8rem; line-height: 1.1; color: var(--gold-primary); font-weight: 600; }
.hamburger { z-index: 1001; position: relative; background: none; border: none; cursor: pointer; display: flex; flex-direction: column; gap: 6px; }
.hamburger span { width: 30px; height: 2px; background: var(--gold-primary); transition: 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
.nav-menu {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(5, 5, 5, 0.98); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    display: flex; flex-direction: column; justify-content: center; align-items: center; z-index: 999;
    clip-path: circle(0px at 90% 40px); -webkit-clip-path: circle(0px at 90% 40px);
    transition: clip-path 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}
.nav-menu.active { clip-path: circle(150vh at 90% 40px); -webkit-clip-path: circle(150vh at 90% 40px); }
.nav-menu ul { list-style: none; text-align: center; }
.nav-menu ul li { margin: 25px 0; opacity: 0; transform: translateY(20px); transition: all 0.4s ease; }
.nav-menu.active ul li { opacity: 1; transform: translateY(0); }
.nav-menu ul li a { color: var(--text-main); text-decoration: none; font-size: 1.2rem; font-family: var(--font-heading); }

/* =========================================
   HERO SECTION
========================================= */
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding-top: 100px; position: relative; }
.hero-titles { margin-bottom: 20px; width: 100%; }
.supertitulo { color: var(--gold-light); font-size: 0.75rem; letter-spacing: 3px; margin-bottom: 15px; text-transform: uppercase; }
.titulo-principal { font-size: 2.8rem; line-height: 1.1; margin-bottom: 20px; text-shadow: 0 4px 15px rgba(0,0,0,0.8); }
.descripcion { max-width: 600px; margin: 0 auto 30px auto; color: var(--text-muted); }
.hero-acciones { margin-bottom: 50px; }
.badge-flotante { display: inline-block; padding: 20px 30px; margin-bottom: 40px; text-align: center; }
.badge-icon { font-size: 4rem; }
.badge-flotante h2 { font-size: 4.5rem; color: var(--gold-light); margin: 5px 0; }
.badge-flotante p { font-family: var(--font-heading); font-weight: 600; font-size: 2rem; }
.badge-flotante small { color: var(--text-muted); font-size: 0.75rem; }
.features-row { display: flex; flex-direction: column; gap: 20px; width: 100%; padding: 20px; margin-top: 20px;}
.feature { display: flex; align-items: center; gap: 15px; text-align: left; }
.f-icon { font-size: 1.5rem; }
.f-text strong { display: block; font-family: var(--font-heading); color: var(--gold-primary); font-size: 0.9rem; }
.f-text span { font-size: 1 rem; color: var(--text-muted); }

/* =========================================
   CÓMO SE JUEGA
========================================= */
.steps-container { display: flex; flex-direction: column; gap: 20px; }
.step-card { padding: 30px 20px; text-align: center; position: relative; }
.step-number {
    position: absolute; top: 15px; left: 15px; width: 30px; height: 30px; border-radius: 50%;
    border: 1px solid var(--gold-primary); color: var(--gold-primary);
    display: flex; align-items: center; justify-content: center; font-family: var(--font-heading);
}
.step-icon { font-size: 2.5rem; display: block; margin-bottom: 15px; }
.step-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.step-card p { font-size: 0.85rem; color: var(--text-muted); }

/* =========================================
   VERSIONES DEL JUEGO
========================================= */
.versiones-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
.version-card { padding: 70px 30px 40px; text-align: center; position: relative; }
.premium-border { border-top: 4px solid var(--gold-primary); }
.hybrid-border { border-top: 4px solid var(--wa-green); }
.v-badge {
    position: absolute; top: 15px; left: 50%; transform: translateX(-50%);
    background: var(--gold-primary); color: var(--bg-dark);
    padding: 5px 15px; border-radius: 20px; font-weight: bold; font-size: 0.75rem; letter-spacing: 1px;
    z-index: 2;
}
.v-badge.green { background: var(--wa-green); color: white; }
.version-card h3 { font-size: 1.5rem; margin-bottom: 10px; color: var(--text-main); }
.v-desc { color: var(--gold-light); font-size: 0.9rem; margin-bottom: 20px; font-style: italic; }
.v-lista { list-style: none; text-align: left; margin: 0 auto; max-width: 250px; }
.v-lista li { margin-bottom: 12px; font-size: 0.9rem; color: var(--text-muted); }

/* ETIQUETAS TRIANGULARES ESQUINADAS (Ribbons) */
.corner-ribbon {
    position: absolute;
    top: 0;
    left: 0;
    width: 110px;
    height: 110px;
    z-index: 10;
}
.corner-ribbon span {
    position: absolute;
    display: block;
    width: 190px;
    padding: 5px 0;
    background-color: var(--gold-primary);
    color: var(--bg-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    /* Rotación para hacer el efecto de esquina */
    top: 24px;
    left: -50px;
    transform: rotate(-45deg);
}
.corner-ribbon.green span {
    background-color: var(--wa-green);
    color: white;
    font-size: 0.60rem; /* Más pequeño para que quepa la palabra larga */
    letter-spacing: 1px;
}

/* INFORMACIÓN ESQUINA DERECHA (Precios y Lista de espera) */
.corner-info {
    position: absolute;
    top: 15px;
    right: 15px;
    text-align: right;
    z-index: 10;
}
.old-price {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through; /* Esto tacha el precio viejo */
    margin-bottom: -3px;
    font-weight: 600;
}
.new-price {
    display: block;
    font-size: 1.4rem;
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-weight: 700;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5); /* Le da un ligero brillo */
}
.waitlist-text {
    display: inline-block;
    font-size: 0.65rem;
    color: var(--wa-green);
    border: 1px solid rgba(37, 211, 102, 0.4);
    background: rgba(37, 211, 102, 0.1); /* Fondo translúcido verde */
    padding: 5px 8px;
    border-radius: 6px;
    line-height: 1.3;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    max-width: 100px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* BOTONES DE ACCIÓN DENTRO DE LAS TARJETAS */
.version-action {
    display: flex;
    justify-content: flex-end; /* Alinea el botón a la derecha */
    margin-top: 25px; /* Separa el botón de la lista de características */
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Línea sutil divisoria */
}

/* Modificador para que el botón sea un poco más compacto */
.btn-small {
    padding: 8px 18px;
    font-size: 0.75rem;
    border-width: 1px;
}
.btn-small span {
    font-size: 1rem;
    line-height: 0;
    transition: transform 0.3s ease;
}
/* Efecto hover para que la flechita se mueva a la derecha */
.btn-small:hover span {
    transform: translateX(4px);
}
/* =========================================
   CONTENIDO (TARJETAS GIRATORIAS FLIP 3D)
========================================= */
.grid-contenido { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; perspective: 1000px; }
.box-item-container { width: 100%; height: 200px; perspective: 1000px; cursor: pointer; }
.box-flip-inner {
    position: relative; width: 100%; height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d; -webkit-transform-style: preserve-3d; 
}
.box-item-container.flipped .box-flip-inner { transform: rotateY(180deg); -webkit-transform: rotateY(180deg); }
.flip-front, .flip-back {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    -webkit-backface-visibility: hidden; backface-visibility: hidden;
    transform: translateZ(1px); -webkit-transform: translateZ(1px);
    display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
    padding: 15px; border-radius: 12px;
}
.flip-front .b-icon { font-size: 2rem; display: block; margin-bottom: 10px; }
.flip-front .b-num { font-size: 1.8rem; color: var(--gold-light); margin-bottom: 5px; }
.flip-front p { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

.flip-back {
    transform: rotateY(180deg) translateZ(1px); -webkit-transform: rotateY(180deg) translateZ(1px);
    background: rgba(0,0,0,0.85); padding: 5px;
}
.flip-back img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 8px; }

/* =========================================
   TESTIMONIOS
========================================= */
.testimonios-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.testimonial-card { padding: 30px; text-align: center; }
.stars { font-size: 0.8rem; margin-bottom: 15px; }
.quote { font-style: italic; font-size: 0.95rem; margin-bottom: 20px; line-height: 1.8; }
.author { display: flex; align-items: center; justify-content: center; gap: 10px; }
.avatar { font-size: 1.5rem; }
.author span:last-child { font-family: var(--font-heading); font-size: 0.8rem; color: var(--gold-primary); }

/* =========================================
   FAQ ACORDEÓN
========================================= */
.faq-container { padding: 10px 20px; }
.faq-item { border-bottom: 1px solid rgba(211, 166, 84, 0.2); }
.faq-item:last-child { border-bottom: none; }
.faq-btn {
    width: 100%; background: none; border: none; color: var(--text-main);
    padding: 20px 0; text-align: left; font-size: 0.95rem; font-family: var(--font-body);
    display: flex; justify-content: space-between; align-items: center; cursor: pointer;
}
.faq-btn .arrow { color: var(--gold-primary); transition: transform 0.3s ease; font-size: 0.7rem; }
.faq-btn.active .arrow { transform: rotate(180deg); }
.faq-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-content p { padding-bottom: 20px; font-size: 0.85rem; color: var(--text-muted); }

/* =========================================
   CTA FINAL & FOOTER
========================================= */
.cta-box { text-align: center; padding: 50px 20px; }
.supertitulo-cta { color: var(--gold-primary); font-size: 0.75rem; letter-spacing: 2px; margin-bottom: 10px; font-family: var(--font-heading); }
.cta-box h2 { font-size: 2.2rem; color: var(--text-main); margin-bottom: 10px; }
.cta-box p { font-size: 0.9rem; color: var(--text-muted); font-style: italic; margin-bottom: 30px; }
.large-btn { width: 100%; max-width: 350px; font-size: 1rem; padding: 15px; }

.footer { padding: 40px 20px 20px 20px; margin: 20px; font-size: 0.85rem; }
.footer-grid { display: flex; flex-direction: column; gap: 30px; margin-bottom: 30px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-social { list-style: none; display: flex; flex-direction: row; gap: 15px; flex-wrap: wrap; }
.footer-links ul li a, .footer-social a { color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.footer-links ul li a:hover, .footer-social a:hover { color: var(--gold-primary); }

/* LOGOS DE REDES SOCIALES EN EL FOOTER */
.footer-social a {
    display: flex;
    align-items: center;
    gap: 8px; /* Espacio entre el logo y el texto */
}
.social-img {
    height: 18px;
    width: 18px;
    object-fit: contain;
    /* Efecto elegante: Los hace lucir grises/opacos y al pasar el mouse recuperan su color */
    /*filter: grayscale(0%) opacity(1);*/
    transition: filter 0.3s ease;
}
.footer-social a:hover .social-img {
    filter: grayscale(0%) opacity(1);
}

/* Integración SEO Sutil */
.footer-seo-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
    text-align: justify;
    line-height: 1.6;
    margin: 20px 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-seo-text strong, .footer-seo-text em {
    font-weight: normal; font-style: normal;
    color: rgba(211, 166, 84, 0.4);
}

.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; color: rgba(255,255,255,0.4); font-size: 0.7rem; }

.floating-wa {
    position: fixed; bottom: 20px; right: 20px; background: var(--wa-green); width: 60px; height: 60px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; color: white; text-decoration: none; z-index: 999;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* =========================================
   MODAL (REGLAMENTO)
========================================= */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    display: flex; justify-content: center; align-items: center; z-index: 2000; opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.modal-overlay.show { opacity: 1; pointer-events: all; }
.modal-content {
    position: relative; width: 90%; max-width: 600px; max-height: 90vh;
    padding: 30px; overflow-y: auto; text-align: center;
    transform: scale(0.9); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.modal-overlay.show .modal-content { transform: scale(1); }
.close-btn {
    position: absolute; top: 15px; right: 15px; background: none; border: none;
    color: var(--text-muted); font-size: 1.5rem; cursor: pointer; transition: 0.3s;
}
.close-btn:hover { color: var(--gold-primary); transform: rotate(90deg); }
.modal-img { width: 100%; height: auto; border-radius: 8px; border: 1px solid var(--glass-border); }

/* =========================================
   MEDIA QUERIES
========================================= */
@media (min-width: 768px) {
    .logo-img { max-height: 55px; }
    .titulo-principal { font-size: 4rem; }
    .features-row { flex-direction: row; justify-content: center; padding: 20px 40px; }
    .grid-contenido { grid-template-columns: repeat(4, 1fr); }
    .testimonios-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { flex-direction: row; justify-content: space-between; }
    .footer-social { flex-direction: column; gap: 15px; }
    .footer-seo-text { text-align: center; }
}

@media (min-width: 1024px) {
    .header { padding: 15px 50px; background: rgba(10,10,10,0.6); }
    .hamburger { display: none; }
    .nav-menu { position: static; width: auto; height: auto; background: none; backdrop-filter: none; clip-path: none !important; -webkit-clip-path: none !important; flex-direction: row; gap: 30px; }
    .nav-menu ul { display: flex; gap: 30px; margin: 0; }
    .nav-menu ul li { margin: 0; opacity: 1; transform: none; }
    .nav-menu ul li a { font-size: 0.9rem; font-weight: 600; text-transform: uppercase; }
    .desktop-only-flex { display: inline-flex; }
    .hero-content { display: grid; grid-template-columns: 1fr 350px; align-items: center; text-align: left; max-width: 1200px; margin: 0 auto; gap: 50px; }
    .hero-titles, .hero-content p.descripcion { grid-column: 1 / 2; }
    .hero-logo-img { margin: 0; margin-bottom: 20px; }
    .hero-acciones { grid-column: 1 / 2; text-align: left; }
    .badge-flotante { grid-column: 2 / 3; grid-row: 1 / 5; margin: 0; }
    .features-row { max-width: 1000px; margin: 0 auto; }
    .steps-container { flex-direction: row; align-items: stretch; justify-content: space-between; max-width: 1200px; margin: 0 auto; }
    .step-card { flex: 1; margin: 0 10px; }
    .step-connector { width: 40px; position: relative; }
    .step-connector::after { content: '›'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 2rem; color: var(--gold-dark); font-family: var(--font-heading); }
    .versiones-grid { grid-template-columns: repeat(2, 1fr); max-width: 1000px; margin: 0 auto;}
    .grid-contenido { max-width: 1000px; margin: 0 auto; gap: 25px; }
    .testimonios-grid, .faq-container, .cta-box { max-width: 1000px; margin: 0 auto; }
    .footer-social { flex-direction: row; gap: 20px; }
}