:root {
    --bg-color: #020617; /* Navy muito escuro */
    --surface-color: rgba(15, 23, 42, 0.7);
    --primary-red: #7f1d1d; /* Vermelho escuro discreto */
    --accent-red-glow: rgba(127, 29, 29, 0.3);
    --primary-blue: #1e3a8a;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --glass-border: rgba(255, 255, 255, 0.05);
    --font-main: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Background Effects */
.background-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(circle at 20% 30%, rgba(30, 58, 138, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(127, 29, 29, 0.1) 0%, transparent 50%);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.header {
    text-align: center;
    animation: fadeInDown 0.8s ease-out;
}

.title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.title span {
    color: var(--primary-red);
    text-shadow: 0 0 20px var(--accent-red-glow);
}

.subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Calendly Section */
.calendly-section {
    background: var(--surface-color);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Fura Fila Section */
.fura-fila-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.divider {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
}

.divider::before, .divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.cta-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(127, 29, 29, 0.1) 100%);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    text-align: center;
    width: 100%;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.cta-card:hover {
    transform: translateY(-5px);
    border-color: rgba(127, 29, 29, 0.3);
}

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

.cta-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-fura-fila {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary-red);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px -5px rgba(127, 29, 29, 0.4);
}

.btn-fura-fila:hover {
    background: #991b1b;
    transform: scale(1.05);
    box-shadow: 0 15px 30px -5px rgba(127, 29, 29, 0.6);
}

.icon-whatsapp {
    width: 20px;
    height: 20px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-top: 1px solid var(--glass-border);
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* Mobile Adjustments */
@media (max-width: 768px) {
    .title { font-size: 2.2rem; }
    .cta-card { padding: 2rem 1.5rem; }
    .container { padding: 2rem 1rem; }
}
