:root {
    --bg-color: #080808;
    --bg-secondary: #121212;
    --bg-card: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-color: #00ff55;
    --accent-dark: #00cc44;
    --accent-glow: rgba(0, 255, 85, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Typography */
h1, h2, h3 {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.highlight {
    color: var(--accent-color);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(8, 8, 8, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 15px 5%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.logo {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 2px;
    font-style: italic;
}
.logo span {
    color: var(--accent-color);
}

.menu-toggle {
    display: none;
    font-size: 26px;
    color: var(--text-primary);
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s;
}

.menu-toggle:hover {
    color: var(--accent-color);
}

nav.nav-menu {
    display: flex;
    gap: 30px;
}

nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s, transform 0.3s;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 5% 50px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--accent-glow) 0%, rgba(8, 8, 8, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(50px);
}

.hero-content {
    flex: 1;
    max-width: 650px;
    z-index: 1;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.05;
    margin-bottom: 25px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 45px;
    max-width: 500px;
}

.cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: #000;
    padding: 20px 45px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 255, 85, 0.3);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--accent-color);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 255, 85, 0.5);
    background: var(--bg-color);
    color: var(--accent-color);
}

.cta-button:hover::before {
    left: 100%;
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.image-wrapper {
    position: relative;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    z-index: -1;
    border-radius: 50%;
    animation: pulseGlow 4s infinite alternate ease-in-out;
}

@keyframes pulseGlow {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.hero-img {
    max-width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
    border: 1px solid rgba(0, 255, 85, 0.3);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    object-fit: cover;
    max-height: 700px;
}

.hero-img:hover {
    transform: scale(1.03) rotate(-1deg);
    border-color: var(--accent-color);
}

/* About Section */
.about {
    padding: 120px 5%;
    background-color: var(--bg-secondary);
    position: relative;
}

.about-grid {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    line-height: 1.1;
}

.about p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.benefits {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: left;
}

.benefits li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--bg-card);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.benefits li:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 255, 85, 0.1);
}

.icon-box {
    background: rgba(0, 255, 85, 0.1);
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 24px;
    transition: all 0.4s ease;
}

.benefits li:hover .icon-box {
    background: var(--accent-color);
    color: var(--bg-color);
    transform: rotate(10deg);
}

.benefits strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.benefits span {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Contact Section */
.contact {
    padding: 120px 5%;
    display: flex;
    justify-content: center;
}

.contact-card {
    background: linear-gradient(145deg, var(--bg-card), var(--bg-secondary));
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    max-width: 800px;
    width: 100%;
    border: 1px solid rgba(0, 255, 85, 0.1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-color);
}

.contact h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.contact p {
    color: var(--text-secondary);
    margin-bottom: 50px;
    font-size: 1.2rem;
}

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

.contact-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.contact-btn i {
    font-size: 22px;
}

.contact-btn.whatsapp:hover { border-color: #25D366; color: #25D366; }
.contact-btn.instagram:hover { border-color: #E1306C; color: #E1306C; }
.contact-btn.email:hover { border-color: var(--accent-color); color: var(--accent-color); }

.contact-btn:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.05);
}

/* Footer */
footer {
    padding: 40px 5%;
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-content .logo {
    font-size: 20px;
}

footer p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }
    
    nav.nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 350px;
        height: 100vh;
        background: rgba(8, 8, 8, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1);
        z-index: 1000;
        border-left: 1px solid rgba(255,255,255,0.05);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    
    nav.nav-menu.active {
        right: 0;
    }

    nav.nav-menu a {
        font-size: 18px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 130px;
    }
    
    .hero h1 {
        font-size: 3.2rem;
    }
    
    .hero p {
        margin: 0 auto 40px;
    }
    
    .hero-image-container {
        margin-top: 60px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 110px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about, .contact {
        padding: 80px 5%;
    }

    .about h2, .contact h2 {
        font-size: 2.2rem;
    }
    
    .contact-card {
        padding: 40px 20px;
    }
    
    .contact-btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

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

    .hero p {
        font-size: 1.05rem;
    }

    .about h2, .contact h2 {
        font-size: 1.8rem;
    }

    .cta-button {
        padding: 16px 30px;
        font-size: 14px;
    }
    
    .benefits li {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 25px 20px;
    }
}
