:root {
    --primary-color: #0c1c33; /* Azul marinho baseado na logo */
    --accent-color: #8c8c8c;
    --whatsapp-color: #25d366;
    --bg-color: #ffffff;
    --text-color: #1a1a1a;
    --text-muted: #666666;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.content-wrapper {
    max-width: 600px;
    width: 100%;
    text-align: center;
    animation: fadeInScale 1s ease-out forwards;
}

.logo-container {
    margin-bottom: 3rem;
}

.logo {
    max-width: 320px;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.05));
}

.message-section h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.message-section p {
    font-size: 1.125rem;
    color: var(--text-muted);
    font-weight: 300;
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    margin: 2rem auto;
    border-radius: 2px;
}

.message-section h2 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.cta-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 480px) {
    .cta-section {
        flex-direction: row;
        justify-content: center;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-whatsapp {
    background-color: var(--whatsapp-color);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    background-color: #20bd5a;
}

.btn-email {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-email:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

footer {
    padding: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Glassmorphism subtle effect for mobile background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(12, 28, 51, 0.02) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(12, 28, 51, 0.02) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
}
