:root {
    --primary: #FFD700;
    --primary-hover: #E5C100;
    --secondary: #2C3E50;
    --secondary-dark: #1a252f;
    --text-main: #333333;
    --text-light: #f4f4f4;
    --bg-dark: #121212;
    --bg-card: #1E1E1E;
    --transition: all 0.3s ease;
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.dark-alt {
    background: #0f151a;
}

.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 215, 0, 0.2);
    z-index: -1;
    border-radius: 4px;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary);
    color: var(--secondary-dark);
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 2px solid var(--primary);
    display: inline-block;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    transition: background 0.3s ease, padding 0.3s ease;
    z-index: 1000;
    padding: 20px 0;
}

.navbar.scrolled {
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-links a:not(.btn-primary) {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
}

.nav-links a:hover:not(.btn-primary) {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.7), rgba(18, 18, 18, 0.8)), url('hero-new.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 850px;
}

.badge {
    background: rgba(255, 215, 0, 0.15);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid rgba(255, 215, 0, 0.4);
    display: inline-block;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.trust-indicators {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Benefits Grid */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.icon-box {
    width: 65px;
    height: 65px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.icon-box i {
    font-size: 1.6rem;
    color: var(--primary);
}

/* WEG Section */
.weg-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.weg-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.weg-content h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.weg-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.weg-benefits {
    list-style: none;
}

.weg-benefits li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.weg-benefits li i {
    color: var(--primary);
    background: rgba(255, 215, 0, 0.1);
    padding: 8px;
    border-radius: 50%;
}

.weg-image-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
}

.weg-logo-img {
    width: 300px !important;
    /* DEFINITIVE DESKTOP SIZE */
    max-width: 300px !important;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(0, 87, 174, 0.4));
    animation: float 6s ease-in-out infinite;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    background: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: left;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer.active {
    max-height: 500px;
    padding: 20px 25px;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    background: var(--bg-card);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item i {
    width: 45px;
    height: 45px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.info-item p {
    margin: 0;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.form-row label {
    flex: 0 0 120px;
    text-align: right;
    font-size: 0.95rem;
    opacity: 0.8;
}

.clean-input {
    flex: 1;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding: 12px 5px;
    color: white;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.clean-input:focus {
    border-bottom-color: var(--primary);
    outline: none;
}

/* Footer */
footer {
    padding: 60px 0;
    background: #0f151a;
    text-align: center;
}

.footer-legal {
    margin: 20px 0;
    opacity: 0.6;
}

.footer-legal a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
}

.stars {
    color: var(--primary);
    margin-bottom: 15px;
}

.quote {
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 20px;
    flex-grow: 1;
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.logo-circle {
    background: white;
    padding: 5px;
}

/* Floating Elements */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.floating-whatsapp img {
    width: 35px;
}

.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(30, 30, 30, 0.98);
    padding: 20px 30px;
    border-radius: 15px;
    z-index: 9999;
    width: 90%;
    max-width: 600px;
    display: none;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* MOBILE OPTIMIZATIONS */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 40px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

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

    .hero h1 {
        font-size: 2.8rem;
    }

    .weg-container {
        grid-template-columns: 1fr !important;
    }

    /* THE CRITICAL FIX: HIDE LOGO ON MOBILE */
    .weg-image-placeholder {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Hero & Nav */
    .hero-content {
        padding-top: 140px !important;
        text-align: center;
        width: 100%;
    }

    .hero-content .badge {
        display: inline-block !important;
        margin-bottom: 25px;
    }

    .hero h1 {
        font-size: 2.6rem;
        line-height: 1.2;
        margin-bottom: 25px;
    }

    .hero p {
        margin: 0 auto 35px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }

    .contact-info {
        text-align: center;
        margin-bottom: 20px;
    }

    .info-item {
        justify-content: center;
    }

    .contact-form {
        max-width: 100%;
        margin: 0 auto;
    }

    .form-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .form-row label {
        text-align: center;
        flex: 0 0 auto;
        width: 100%;
        margin-bottom: 5px;
    }

    .clean-input {
        width: 100% !important;
        text-align: center;
    }

    .form-btn {
        margin-top: 10px;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .weg-title {
        font-size: 2.2rem;
        text-align: center;
    }
}