/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Glacial Indifference', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #222222;
    background: #FFFBED;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.landing-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.hero-section {
    text-align: center;
    padding: 60px 20px;
}

.brand-logo {
    max-width: 300px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
}

.brand-title {
    font-size: 90px;
    font-weight: 700;
    color: #222222;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    font-family: 'Glacial Indifference', sans-serif;
}

.tagline {
    font-size: 1.5rem;
    color: #222222;
    margin-bottom: 24px;
    font-weight: 400;
    opacity: 0.9;
}

.description {
    font-size: 1.1rem;
    color: #222222;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.8;
    line-height: 1.7;
}

.cta-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 400px;
    margin: 0 auto;
}

.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    border: 2px solid #222222;
}

.cta-primary {
    background: #222222;
    color: #FFFBED;
}

.cta-primary:hover {
    background: #444444;
    border-color: #444444;
    transform: translateY(-2px);
}

.cta-secondary {
    background: transparent;
    color: #222222;
}

.cta-secondary:hover {
    background: #222222;
    color: #FFFBED;
    transform: translateY(-2px);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .brand-title {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1.25rem;
    }

    .description {
        font-size: 1rem;
    }

    .cta-btn {
        padding: 16px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .brand-title {
        font-size: 2.5rem;
    }

    .hero-section {
        padding: 40px 20px;
    }
}
