:root {
    --primary-yellow: #FAE637; /* RGB(250, 230, 55) */
    --accent-green: #2ecc71;
    --dark-bg: #121212;
    --card-bg: #1e1e1e;
    --text-white: #ffffff;
    --text-muted: #b3b3b3;
}

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

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

header {
    background: linear-gradient(135deg, #000, #1a1a1a);
    padding: 1.5rem 0;
    border-bottom: 3px solid var(--primary-yellow);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.logo {
    height: 60px;
    margin-right: 20px;
    filter: drop-shadow(0 0 5px rgba(250, 230, 55, 0.3));
}

h1 {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-section {
    padding: 4rem 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-image-container {
    flex: 1;
    min-width: 300px;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.7);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.02);
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-yellow);
    line-height: 1.1;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.whatsapp-section {
    margin: 4rem auto;
    max-width: 600px;
    padding: 0 20px;
}

.card {
    background-color: var(--card-bg);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.05);
}

.card h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.card p {
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.captcha-container {
    margin-bottom: 2rem;
}

.captcha-container label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

#captcha-input {
    background: #2a2a2a;
    border: 2px solid #3a3a3a;
    color: white;
    padding: 0.8rem;
    border-radius: 10px;
    text-align: center;
    font-size: 1.1rem;
    width: 100px;
}

.whatsapp-btn {
    background-color: var(--accent-green);
    color: var(--primary-yellow);
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 15px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    width: 100%;
}

.whatsapp-btn:hover {
    background-color: #27ae60;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.4);
}

.whatsapp-btn:active {
    transform: translateY(0);
}

#status-message {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

footer {
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 4rem;
}

.footer-link {
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 700;
    margin-top: 1rem;
    display: inline-block;
    transition: opacity 0.3s;
}

.footer-link:hover {
    opacity: 0.8;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-text, .hero-image-container, .card {
    animation: fadeIn 0.8s ease-out forwards;
}

@media (max-width: 768px) {
    .hero-text h2 {
        font-size: 2.2rem;
    }
    
    .hero-section {
        padding: 2rem 20px;
    }
    
    h1 {
        font-size: 1.5rem;
    }
}
