:root {
    --bg-color: #050505;
    /* Deep Black */
    --text-primary: #ffffff;
    /* Pure White */
    --text-secondary: #888888;
    /* Soft Grey */
    --accent: #ffffff;
    /* White Accent */
    --accent-blue: #ffffff;
    /* White instead of Blue */
    --accent-glow: transparent;
    --card-bg: transparent;
    --border-color: #222222;
    --container-width: 1200px;
    --transition: cubic-bezier(0.16, 1, 0.3, 1);
    --legal-bg: #f9f9f9;
}

/* --- Clean Typography --- */
body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

/* --- Removed Noise & Complex Backgrounds --- */
.noise-overlay,
.tech-bg-grid,
.tech-bg-glow {
    display: none !important;
}

/* --- Navigation (Solid High Contrast) --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -1px;
    color: #000000 !important;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-weight: 600;
    color: #000000 !important;
    position: relative;
}

.hover-underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #000;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-btn {
    padding: 10px 24px;
    background: #000;
    color: #fff !important;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* --- Hero Section --- */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 500;
    letter-spacing: -0.03em;
}

.hero-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 40px;
}

/* --- Tech Stack (Hidden/Minimal) --- */
/* User said "esta parte no me gusta... no la veo limpia" -> Remove visible stack titles */
.tech-stack-section {
    padding: 40px 0;
    border: none;
    /* Remove borders */
}

.stack-label {
    display: none;
    /* Hide "Tecnología de Vanguardia" */
}

.stack-grid {
    gap: 60px;
    opacity: 0.5;
    /* Subtle */
}

.stack-item {
    font-size: 1.5rem;
    color: #444;
}

.stack-item:hover {
    opacity: 1;
    color: #fff;
}


*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: auto;
    /* Handled by Lenis */
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: default;
    /* Restore default cursor */
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
.logo {
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
}

a {
    text-decoration: none;
    color: var(--text-primary);
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* --- Loader (Clean White) --- */
.loader {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-text {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    opacity: 0;
    text-align: center;
    color: #000;
}

/* --- Hero Section --- */
/* --- Hero Visual --- */
.hero-visual {
    position: relative;
    width: 100%;
}

.image-reveal {
    width: 100%;
    aspect-ratio: 4/5;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.parallax-img {
    width: 100%;
    height: 120%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: #050505;
    z-index: 2;
}

/* --- Tech Stack (Premium LED/Neon) --- */
.tech-stack-section {
    padding: 100px 0;
    position: relative;
    background: #050505;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Cyber Grid Background */
.tech-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    z-index: 1;
    pointer-events: none;
}

/* Ambient Glow */
.tech-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(94, 23, 235, 0.15), transparent 70%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

.stack-label {
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: var(--text-secondary);
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    text-transform: uppercase;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    padding: 10px 30px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    perspective: 1000px;
}

.stack-item {
    font-size: 2.5rem;
    color: #444;
    /* Dimmed state */
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: default;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.stack-item i {
    transition: all 0.4s ease;
    filter: grayscale(100%) opacity(0.5);
    /* Initially off */
    transform: scale(0.9);
}

.stack-item span {
    font-size: 0.85rem;
    font-family: 'Space Grotesk';
    font-weight: 500;
    opacity: 0.4;
    transform: translateY(5px);
    transition: all 0.4s ease;
    letter-spacing: 1px;
}

/* Hover / Active State (LED ON) */
.stack-item:hover {
    background: rgba(30, 30, 30, 0.9);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px) scale(1.05);
    box-shadow:
        0 20px 40px -10px rgba(0, 0, 0, 0.8),
        inset 0 0 20px rgba(255, 255, 255, 0.02);
}

.stack-item:hover i {
    filter: grayscale(0%) opacity(1) drop-shadow(0 0 15px currentColor);
    transform: scale(1.1);
}

.stack-item:hover span {
    opacity: 1;
    color: white;
    transform: translateY(0);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Subtle glow reflection on top */
.stack-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    transition: 0.4s;
}

.stack-item:hover::after {
    opacity: 1;
}

/* Specific glows based on inline colors */
.stack-item:hover:nth-child(1) {
    box-shadow: 0 20px 50px -15px rgba(227, 79, 38, 0.3);
    border-color: rgba(227, 79, 38, 0.3);
}

.stack-item:hover:nth-child(2) {
    box-shadow: 0 20px 50px -15px rgba(41, 101, 241, 0.3);
    border-color: rgba(41, 101, 241, 0.3);
}

.stack-item:hover:nth-child(3) {
    box-shadow: 0 20px 50px -15px rgba(247, 223, 30, 0.3);
    border-color: rgba(247, 223, 30, 0.3);
}

.stack-item:hover:nth-child(4) {
    box-shadow: 0 20px 50px -15px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.stack-item:hover:nth-child(5) {
    box-shadow: 0 20px 50px -15px rgba(168, 85, 247, 0.3);
    border-color: rgba(168, 85, 247, 0.3);
}

.stack-item:hover:nth-child(6) {
    box-shadow: 0 20px 50px -15px rgba(34, 197, 94, 0.3);
    border-color: rgba(34, 197, 94, 0.3);
}

.highlight-item {
    /* Remove old override */
    color: inherit;
    font-weight: normal;
}

/* --- Services (Clean Grid) --- */
/* --- Services (High Contrast - White Block) --- */
.services {
    padding: 100px 0;
    background: #ffffff !important;
    /* Force White Background */
    color: #000000 !important;
    /* Force Black Text */
}

.section-header {
    margin-bottom: 80px;
    max-width: 600px;
}

.section-tag {
    color: #555555 !important;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.75rem;
    display: block;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #000000 !important;
    font-weight: 700;
    line-height: 1.1;
}

.services-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.sticky-card {
    position: relative;
    top: auto;
    height: auto;
    margin-bottom: 0;
    background: transparent !important;
    /* Blend with white section */
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    display: block;
    color: #000000 !important;
}

.sticky-card:hover {
    transform: none;
    box-shadow: none;
}


.card-icon {
    font-size: 32px;
    color: var(--text-primary);
    margin-bottom: 25px;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #000000 !important;
    /* Absolute Black */
    font-weight: 700;
}

.card-content p {
    display: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #000000 !important;
    /* Absolute Black */
    font-size: 1rem;
    font-weight: 500;
}

.feature-list i {
    color: #000000 !important;
    font-size: 0.8rem;
}

/* Visual placeholders removed for minimalism */
.card-visual {
    display: none;
}

/* --- Horizontal Projects --- */
.horizontal-projects {
    overflow: hidden;
    background: #000;
}

.horizontal-scroll-container {
    display: flex;
    width: 320vw;
    /* Ajustado para 4 slides (60 + 80 + 80 + 80 + algo de margen) */
    height: 100vh;
    padding-left: 5vw;
}

.project-slide {
    width: 80vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5vw;
}

    /* --- Projects Section --- */
    .projects-section {
        padding: 150px 0;
        background: #000;
    }

    .projects-section .section-title {
        color: #ffffff !important;
        /* Force White on Black BG */
    }

    .projects-section .section-tag {
        color: #888888 !important;
    }

    .projects-grid {
        display: flex;
        flex-direction: column;
        gap: 120px;
        margin-top: 100px;
    }

    /* Project Card Container - Zig Zag */
    .project-card {
        display: grid;
        grid-template-columns: 1fr 0.8fr;
        /* Image larger than text */
        gap: 60px;
        align-items: center;
        width: 100%;
    }

    /* Alternate Layout */
    .project-card:nth-child(even) {
        grid-template-columns: 0.8fr 1fr;
        direction: rtl;
        /* Flip order visually */
    }

    .project-card:nth-child(even) .project-card-info {
        direction: ltr;
        /* Reset text direction */
        text-align: right;
        /* Align text to image */
    }

    .project-link {
        display: contents;
        /* Allow children to participate in grid */
        text-decoration: none !important;
    }

    /* Image Container (Ultra-Minimalist) */
    .project-card-image {
        width: 100%;
        aspect-ratio: 16/9;
        background: transparent;
        /* No background */
        border: none;
        overflow: visible;
        /* Allow breathing */
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.6s var(--transition);
        transform-style: preserve-3d;
        will-change: transform;
    }

    .project-card-image img {
        width: 60%;
        height: auto;
        object-fit: contain;
        transition: transform 0.8s var(--transition), filter 0.8s ease;
        filter: grayscale(100%);
        z-index: 2;
        mix-blend-mode: multiply;
        /* Better blending on light bg */
    }

    /* Neon Glow Effect (Removed) */
    .project-glow {
        display: none;
    }

    /* Hover State: Static */
    .project-link:hover .project-card-image {
        transform: none;
        box-shadow: none;
    }

    .project-link:hover img {
        filter: grayscale(0%);
        transform: none;
    }

    /* Project Info */
    .project-card-info {
        padding: 0 20px;
    }

    .project-meta {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
        font-family: 'Space Grotesk';
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--text-secondary);
    }

    .project-number {
        color: var(--text-primary);
        font-weight: 700;
    }

    .project-cat {
        color: var(--text-secondary);
        opacity: 0.8;
        position: relative;
        padding-left: 15px;
    }

    .project-cat::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 1px;
        background: var(--text-secondary);
    }

    .project-card-info p {
        color: #ddd;
        /* Bright but not pure white for hierarchy */
        opacity: 1;
    }

    .project-link:hover h3 {
        color: #fff;
    }

    /* Coming Soon Style */
    .coming-soon .project-card-image {
        background: #111;
        /* Dark placeholder */
        border: 1px dashed #333;
    }

    .coming-soon-text {
        font-size: 1rem;
        font-weight: 600;
        opacity: 0.8;
        letter-spacing: 3px;
        color: #ffffff;
        /* White text */
        text-transform: uppercase;
    }

    /* --- Contact --- */
    .contact {
        padding: 60px 0;
        min-height: auto;
        display: flex;
        align-items: center;
        background: var(--bg-color);
    }

    .contact-content {
        max-width: 800px;
    }

    .contact-content h2 {
        font-size: clamp(3rem, 6vw, 5rem);
        margin-bottom: 40px;
        line-height: 1;
        color: var(--text-primary);
        letter-spacing: -2px;
    }

    .btn-giant {
        font-size: clamp(2rem, 5vw, 3.5rem);
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 30px;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 20px;
        transition: 0.4s;
        color: var(--text-primary) !important;
    }

    .arrow-circle {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        border: 1px solid white;
        display: grid;
        place-items: center;
        font-size: 2rem;
        transition: 0.4s;
    }

    .btn-giant:hover {
        border-color: var(--accent);
        color: var(--accent);
    }

    .btn-giant:hover .arrow-circle {
        background: var(--accent);
        border-color: var(--accent);
        color: white;
        transform: rotate(-45deg);
    }

    .line {
        overflow: hidden;
    }

    .accent-text {
        color: #ffffff;
    }

    .outline-text {
        /* No longer needed but kept safe */
        color: var(--accent-blue);
    }

    /* --- Footer --- */
    .main-footer {
        padding: 30px 0 30px 0;
        /* Narrower footer */
        border-top: 1px solid var(--border-color);
    }

    .footer-bottom {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        gap: 20px;
        color: var(--text-secondary);
        text-align: center;
    }

    .footer-socials {
        display: flex;
        gap: 30px;
    }

    .social-link {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .social-link:hover {
        color: white;
    }

    /* --- WhatsApp --- */


    /* --- Responsive --- */
    @media (max-width: 900px) {

        .hero-container {
            grid-template-columns: 1fr;
            gap: 80px;
            /* More breathing room */
            padding-top: 50px;
        }

        .hero-title {
            font-size: 3.5rem;
        }

        .navbar {
            padding: 15px 0;
        }

        .nav-container {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0;
        }

        .logo {
            font-size: 1.25rem;
        }

        .nav-links {
            display: none !important;
        }

        .hero {
            padding-top: 100px;
            min-height: auto;
        }

        .hero-container {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .hero-content {
            text-align: left;
        }

        .hero-visual {
            max-width: 450px;
            margin: 0 auto;
        }

        /* Mobile Spacing Fixes */
        .tech-stack-section {
            padding: 100px 0;
            /* Increased */
        }

        .services {
            padding: 40px 0;
            /* Tighter section padding */
        }

        .services-stack {
            gap: 15px;
            /* Tighter service grouping */
        }

        .section-header {
            margin-bottom: 30px;
            /* Less space after title */
        }

        .card-content h3 {
            margin-bottom: 5px;
            /* Tighter category titles */
        }

        /* Mobile Animations (Auto-Pulse) */
        .stack-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            /* More gap between items */
        }

        .stack-item {
            padding: 20px 10px;
            font-size: 2rem;
            /* Animation for mobile since no hover */
            animation: mobileGlow 3s infinite alternate;
        }

        .stack-item i {
            filter: grayscale(0%) opacity(0.8);
            /* Always visible on mobile */
            transform: scale(1);
        }

        .stack-item span {
            opacity: 0.8;
            transform: translateY(0);
            font-size: 0.75rem;
        }

        /* Staggered animation delays for wave effect */
        .stack-item:nth-child(1) {
            animation-delay: 0s;
        }

        .stack-item:nth-child(2) {
            animation-delay: 0.5s;
        }

        .stack-item:nth-child(3) {
            animation-delay: 1s;
        }

        .stack-item:nth-child(4) {
            animation-delay: 1.5s;
        }

        .stack-item:nth-child(5) {
            animation-delay: 2s;
        }

        .stack-item:nth-child(6) {
            animation-delay: 2.5s;
        }

        @keyframes mobileGlow {
            0% {
                border-color: rgba(255, 255, 255, 0.05);
                box-shadow: none;
            }

            100% {
                border-color: rgba(255, 255, 255, 0.3);
                box-shadow: 0 0 20px rgba(94, 23, 235, 0.2);
            }
        }

        .sticky-card {
            grid-template-columns: 1fr;
            padding: 40px;
            height: auto;
            margin-bottom: 80px; /* More separation between cards */
        }

        .card-visual {
            display: none;
        }

        .cursor-dot,
        .cursor-outline {
            display: none;
        }

        /* Hide custom cursor on mobile */
        body {
            cursor: auto;
        }

        a {
            cursor: pointer;
        }

        /* --- Mobile Projects (Vertical Stack) --- */
        .projects-grid {
            display: flex;
            flex-direction: column;
            gap: 100px;
            /* Huge gap for separation */
            margin-top: 60px;
        }

        .project-card {
            display: block;
            /* Reset Grid */
            width: 100%;
        }

        .project-card:nth-child(even) {
            direction: ltr;
            /* Reset direction */
        }

        .project-card:nth-child(even) .project-card-info {
            text-align: left;
            /* Reset align */
        }

        .project-link {
            display: block;
        }

        .project-card-image {
            aspect-ratio: 4/3;
        }

        .project-card-image img {
            width: 85%;
            filter: grayscale(0%) opacity(1);
            transform: scale(1);
        }

        /* Disable complex hover on mobile */
        .project-link:hover .project-card-image {
            transform: none;
        }

        .project-link:active .project-card-image {
            transform: scale(0.98);
        }

        .project-card-info h3 {
            font-size: 2rem;
        }
    }


/* --- Cookie Modal (Central & Premium) --- */
.cookie-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 450px;
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.2);
    z-index: 10001;
    display: flex;
    flex-direction: column;
    gap: 25px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s var(--transition);
    text-align: center;
}

.cookie-banner.show {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    pointer-events: auto;
}

/* Modal Overlay */
.cookie-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.cookie-banner.show + .cookie-overlay,
.cookie-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.cookie-content h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #000;
}

.cookie-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.cookie-content a {
    color: #000;
    font-weight: 700;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cookie-btn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.accept-cookies { background: #000; color: #fff; border: 1px solid #000; }
.accept-cookies:hover { background: #222; transform: translateY(-2px); }
.essentials-cookies { background: #eee; color: #333; border: 1px solid #eee; }
.essentials-cookies:hover { background: #e0e0e0; }
.reject-cookies { background: transparent; color: #888; border: 1px solid #eee; }
.reject-cookies:hover { color: #000; border-color: #000; }

/* --- Professional Privacy Checkbox --- */
.privacy-consent {
    margin-top: 15px;
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: border-color 0.3s;
    text-align: center;
}

.privacy-consent:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.privacy-consent p {
    margin: 0;
}

.privacy-consent a {
    color: #fff;
    font-weight: 600;
}

.footer-legal {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    font-size: 0.8rem;
    opacity: 0.6;
}

.footer-legal a {
    color: var(--text-secondary);
    text-decoration: none;
}

.footer-legal a:hover {
    opacity: 1;
    text-decoration: underline;
    color: #fff;
}
