 :root {
            --gold: #c5a059;
            --black-pure: #000000;
            --black-soft: #0a0a0a;
            --dark-gray: #1a1a1a;
            --text-light: #e0e0e0;
        }

        body { 
            font-family: 'Inter', sans-serif; 
            background-color: var(--black-pure);
            color: var(--text-light);
            overflow-x: hidden;
        }

        /* --- NAVBAR --- */
        .navbar {
            background-color: rgba(0, 0, 0, 0.95) !important;
            padding: 15px 0;
            border-bottom: 1px solid #222;
        }

        .nav-link {
            color: #ffffff !important;
            font-weight: 600;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: 0.3s;
        }

        .nav-link:hover {
            color: var(--gold) !important;
        }

        .navbar-toggler { border-color: var(--gold); }
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23c5a059' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
        }

        /* --- HERO --- */
        /*url('https://images.unsplash.com/photo-1574629810360-7efbbe195018?auto=format&fit=crop&q=80') center/cover;*/
        .hero {
            height: 75vh;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                        url('../imgs/home.png') center/cover;
                        
            display: flex;
            align-items: center;
            text-align: center;
        }

        .hero h1 { 
            color: white; 
            letter-spacing: -1px;
            font-size: 3.5rem;
            margin-bottom: 30px;
        }

        .hero .tagline {
            color: var(--gold);
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
        }

        .hero .subtitle {
            color: #ffffff;
            font-size: 1.3rem;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 40px;
            line-height: 1.6;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
        }

        /* --- SECCIONES ALTERNAS (Sombras de Negro) --- */
        section { padding: 100px 0; }
        .bg-black-pure { background-color: var(--black-pure); }
        .bg-black-soft { background-color: var(--black-soft); }
        
        .section-title {
            font-weight: 800;
            margin-bottom: 60px;
            text-transform: uppercase;
            position: relative;
            text-align: center;
            color: white;
        }
        .section-title::after {
            content: '';
            width: 50px;
            height: 3px;
            background: var(--gold);
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }

        #about .section-title {
            text-align: start;
            margin-bottom: 0;
        }

        /* --- TARJETAS DE SERVICIO (EFECTO ZOOM) --- */
        .service-card {
            background: var(--dark-gray);
            padding: 45px 30px;
            border-radius: 4px;
            border: 1px solid #333;
            transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
            height: 100%;
            text-align: center;
        }
        .service-card:hover {
            transform: scale(1.06);
            border-color: var(--gold);
            background: #222;
        }
        .service-card i {
            font-size: 2.8rem;
            color: var(--gold);
            margin-bottom: 25px;
        }
        .service-card h5 { color: white; margin-bottom: 15px; }
        .service-card p { color: #aaa; font-size: 0.95rem; }

        /* --- EQUIPO Y BOCADILLOS --- */
        .team-img {
            width: 140px; height: 140px;
            object-fit: cover;
            border-radius: 50%;
            border: 2px solid var(--gold);
            margin-bottom: 20px;
        }
        .speech-bubble {
            position: relative;
            background: var(--gold);
            color: #000;
            padding: 15px;
            border-radius: 5px;
            font-size: 0.88rem;
            margin-top: 20px;
            font-weight: 500;
        }
        .speech-bubble::after {
            content: '';
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-width: 0 10px 10px 10px;
            border-style: solid;
            border-color: transparent transparent var(--gold) transparent;
        }

        /* --- PARTNERS --- */
        .partner-img {
            filter: none;
            opacity: 1;
            max-height: 120px;
            transition: 0.4s;
        }
        .partner-img:hover { opacity: 1; filter: none; }

        /* --- FORMULARIO --- */
        .form-control {
            background: var(--text-light);
            border: 1px solid #333;
            color: white;
            padding: 12px;
        }
        .form-control:focus {
            background: #222;
            border-color: var(--gold);
            color: white;
            box-shadow: none;
        }

        @media (max-width: 991px) {
            .navbar-brand img { width: 85px !important; }
            .navbar-collapse { background: var(--black-pure); padding: 20px; }
        }

        /* --- MODO CLARO --- */
        body.light-mode {
            --black-pure: #e8e8e8;
            --black-soft: #d9d9d9;
            --dark-gray: #cccccc;
            --text-light: #2a2a2a;
        }

        body.light-mode .navbar {
            background-color: rgba(220, 220, 220, 0.97) !important;
            border-bottom: 1px solid #bbb;
        }

        body.light-mode .nav-link {
            color: #333333 !important;
        }

        body.light-mode .nav-link:hover {
            color: var(--gold) !important;
        }

        body.light-mode .hero {
            background: linear-gradient(rgba(200,200,200,0.6), rgba(200,200,200,0.6)), 
                        url('../imgs/home.png') center/cover;
        }

        body.light-mode .hero h1 { color: #1a1a1a; }
        body.light-mode .hero h3 { color: #2a2a2a; }

        body.light-mode .section-title { color: #1a1a1a; }

        body.light-mode .service-card {
            background: #c8c8c8;
            border: 1px solid #b0b0b0;
            color: #2a2a2a;
        }

        body.light-mode .service-card:hover {
            background: #b8b8b8;
        }

        body.light-mode .service-card h5 { color: #1a1a1a; }
        body.light-mode .service-card p { color: #444; }

        body.light-mode .text-white-50 { color: #444 !important; }

        body.light-mode .form-control {
            background: #d5d5d5;
            border: 1px solid #b0b0b0;
            color: #2a2a2a;
        }

        body.light-mode .form-control:focus {
            background: #e0e0e0;
            border-color: var(--gold);
            color: #2a2a2a;
        }

        body.light-mode .form-control::placeholder {
            color: #666;
        }

        body.light-mode .btn-lang {
            color: #333 !important;
        }

        /* --- BOTÓN CAMBIO TEMA --- */
        .theme-toggle {
            background: transparent;
            border: 2px solid var(--gold);
            color: var(--gold);
            padding: 8px 12px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 0.9rem;
            transition: 0.3s;
            margin-left: 10px;
        }

        .theme-toggle:hover {
            background: var(--gold);
            color: #000;
        }

        body.light-mode .navbar-toggler-icon {
            background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23333333' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
        }

        /* --- BUSINESS SECTION CON HOJAS DE LAUREL --- */
        .business-item {
            text-align: center;
            padding: 20px;
        }

        .laurel-circle {
            position: relative;
            width: 280px;
            height: 280px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .laurel-svg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            transition: transform 0.5s ease;
        }

        .laurel-circle:hover .laurel-svg {
            transform: scale(1.05);
        }

        .laurel-svg ellipse {
            fill: transparent;
            stroke: var(--gold);
            transition: fill 0.3s ease, stroke 0.3s ease;
        }

        .laurel-circle:hover .laurel-svg ellipse {
            fill: rgba(197, 160, 89, 0.2);
        }

        .business-content {
            position: relative;
            z-index: 2;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
            max-width: 180px;
        }

        .business-content h3 {
            color: var(--gold);
            font-size: 1.1rem;
            font-weight: 700;
            letter-spacing: 2px;
            margin: 0 0 10px 0;
            order: 1;
        }

        .business-content i {
            font-size: 2rem;
            color: var(--gold);
            display: block;
            transition: transform 0.3s ease, color 0.3s ease;
            order: 2;
            margin-bottom: 10px;
        }

        .laurel-circle:hover .business-content i {
            transform: scale(1.2);
        }

        .business-text-inner {
            color: #aaa;
            font-size: 0.8rem;
            line-height: 1.4;
            margin: 0;
            order: 3;
        }

        body.light-mode .business-text-inner {
            color: #666;
        }

        /* --- PÁGINAS DE SERVICIOS --- */
        .hero-service {
            padding: 120px 0 80px;
            background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.9)), 
                        url('../imgs/home.png') center/cover;
        }

        .service-icon-large {
            width: 120px;
            height: 120px;
            border: 3px solid var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
        }

        .service-icon-large i {
            font-size: 3rem;
            color: var(--gold);
        }

        .demand-box, .offer-box {
            background: var(--dark-gray);
            border: 1px solid #333;
            border-radius: 8px;
            padding: 30px;
            height: 100%;
        }

        .demand-box:hover, .offer-box:hover {
            border-color: var(--gold);
        }

        .demand-list, .offer-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .demand-list li {
            color: #ccc;
            padding: 12px 0;
            border-bottom: 1px solid #444;
            font-size: 1.1rem;
        }

        .demand-list li:last-child {
            border-bottom: none;
        }

        .demand-list li i {
            color: var(--gold);
            width: 25px;
        }

        .offer-list li {
            color: #ccc;
            padding: 15px 0;
            border-bottom: 1px solid #444;
            display: flex;
            align-items: flex-start;
        }

        .offer-list li:last-child {
            border-bottom: none;
        }

        .offer-list li i {
            margin-top: 4px;
            flex-shrink: 0;
        }

        .offer-list li span {
            flex: 1;
        }

        .service-card-link {
            text-decoration: none;
            display: block;
            height: 100%;
        }

        .service-card-link:hover .service-card {
            transform: scale(1.06);
            border-color: var(--gold);
            background: #222;
        }

        body.light-mode .demand-box,
        body.light-mode .offer-box {
            background: #f0f0f0;
            border-color: #ddd;
        }

        body.light-mode .demand-list li,
        body.light-mode .offer-list li {
            color: #555;
            border-color: #ddd;
        }

        /* Carrusel */
        /* Contenedor que oculta lo que sale de la pantalla */
.logos-wrapper {
    overflow: hidden;
    padding: 60px 0;
    background: transparent;
    white-space: nowrap;
    position: relative;
    display: flex;
}

/* El bloque que contiene los logos */
.logos-slide {
    display: flex;
    align-items: center;
    /* Duración de la animación: 30s (ajusta para más rápido o lento) */
    animation: 30s slide infinite linear;
}

/* Estilo de los logos */
.partner-img {
    height: 100px; /* Ajusta el tamaño según necesites */
    margin: 0 40px; /* Espaciado entre logos */
    flex-shrink: 0;
}

/* Keyframes para el movimiento */
@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Pausar al pasar el ratón (opcional) */
.logos-wrapper:hover .logos-slide {
    animation-play-state: paused;
}

/* Banner de cookies */
.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 1100;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: rgba(12, 12, 12, 0.96);
    border: 1px solid #2f2f2f;
    border-left: 4px solid var(--gold);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    animation: cookieBannerIn 0.35s ease;
}

.cookie-banner-text {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.45;
}

.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    border: 1px solid var(--gold);
    border-radius: 4px;
    padding: 8px 14px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-btn-primary {
    background: var(--gold);
    color: #000;
}

.cookie-btn-primary:hover {
    filter: brightness(1.06);
}

.cookie-btn-secondary {
    background: transparent;
    color: var(--gold);
}

.cookie-btn-secondary:hover {
    background: rgba(197, 160, 89, 0.15);
}

.cookie-banner-hidden {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.28s ease, transform 0.28s ease;
}

body.light-mode .cookie-banner {
    background: rgba(245, 245, 245, 0.98);
    border-color: #c7c7c7;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
}

body.light-mode .cookie-banner-text {
    color: #2f2f2f;
}

body.light-mode .cookie-btn-secondary {
    color: #7a6028;
    border-color: #7a6028;
}

@keyframes cookieBannerIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner-actions {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }
}

.legal-links {
    margin-top: 10px;
    margin-bottom: 0;
}

.legal-link {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, opacity 0.2s ease;
}

.legal-link:hover {
    border-bottom-color: var(--gold);
    opacity: 0.9;
}

.legal-page {
    padding: 90px 0;
    background: var(--black-soft);
}

.legal-wrapper {
    max-width: 980px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #2b2b2b;
    border-radius: 8px;
    padding: 36px;
}

.legal-wrapper h1 {
    color: #fff;
    margin-bottom: 24px;
    font-size: 2.1rem;
    font-weight: 800;
}

.legal-wrapper h2 {
    color: var(--gold);
    margin-top: 26px;
    margin-bottom: 12px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.legal-wrapper p,
.legal-wrapper li {
    color: #cfcfcf;
    line-height: 1.7;
}

.legal-wrapper ul {
    margin: 0;
    padding-left: 18px;
}

body.light-mode .legal-wrapper {
    background: rgba(255, 255, 255, 0.7);
    border-color: #c4c4c4;
}

body.light-mode .legal-wrapper h1 {
    color: #1f1f1f;
}

body.light-mode .legal-wrapper p,
body.light-mode .legal-wrapper li {
    color: #3c3c3c;
}

@media (max-width: 767px) {
    .legal-wrapper {
        padding: 22px;
    }

    .legal-wrapper h1 {
        font-size: 1.6rem;
    }
}
        