:root {
    --color-primary: #ff0055;
    --color-primary-soft: #ff4b82;
    --color-dark: #111827;
    --color-bg: #f9fafb;
    --color-card: #ffffff;
    --color-accent: #f97316;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #111827;
    background: var(--color-bg);
}

/* LAYOUT BASE */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}

/* TOPO / NAVBAR */
.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(17, 24, 39, 0.96);
    backdrop-filter: blur(10px);
    color: #e5e7eb;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    gap: 16px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-circle {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f9fafb;
    font-weight: 800;
    font-size: 0.9rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-weight: 700;
    font-size: 0.95rem;
}
.logo-subtitle {
    font-size: 0.7rem;
    color: #9ca3af;
}

.nav {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.85rem;
    padding: 4px 8px;
    border-radius: 999px;
    transition: background 0.2s, color 0.2s;
}

.nav a:hover {
    background: rgba(249, 250, 251, 0.1);
}

.nav-cta {
    background: var(--color-primary);
    color: #fff;
    font-weight: 600;
}

/* HERO */
.hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    color: white;
    background-image:
        linear-gradient(135deg, rgba(17, 24, 39, 0.85), rgba(17, 24, 39, 0.25)),
        url('https://images.unsplash.com/photo-1526498460520-4c246339dccb?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 0, 85, 0.4), transparent 55%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    padding: 60px 0;
}

.hero-text {
    max-width: 600px;
}

.hero h1 {
    font-size: 2.4rem;
    margin: 0 0 10px;
}

.hero p {
    font-size: 1rem;
    max-width: 480px;
}

.hero-actions {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-badges {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-badges span {
    font-size: 0.8rem;
    background: rgba(15, 23, 42, 0.8);
    border-radius: 999px;
    padding: 6px 12px;
}

/* BOTÕES */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-soft));
    color: #f9fafb;
    box-shadow: 0 8px 20px rgba(255, 0, 85, 0.4);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(255, 0, 85, 0.5);
}

.btn-secondary {
    background: rgba(15, 23, 42, 0.9);
    color: #f9fafb;
    border: 1px solid rgba(249, 250, 251, 0.2);
}

.btn-secondary:hover {
    background: rgba(15, 23, 42, 1);
}

.btn-primary.full {
    width: 100%;
}

/* SEÇÕES */
.section {
    padding: 60px 0;
    text-align: center;
    background: var(--color-bg);
}

.section-dark {
    background: var(--color-dark);
    color: #e5e7eb;
}

.section-title {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.section-intro {
    max-width: 720px;
    margin: 0 auto 30px;
    font-size: 0.95rem;
    color: #4b5563;
}

.section-dark .section-intro {
    color: #9ca3af;
}

/* GRID */
.grid {
    display: grid;
    gap: 18px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* CARDS */
.card {
    background: var(--color-card);
    border-radius: 14px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border 0.15s ease;
    border: 1px solid rgba(15, 23, 42, 0.03);
}

.card.soft {
    background: rgba(15, 23, 42, 0.95);
    color: #e5e7eb;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    border-color: rgba(249, 250, 251, 0.06);
}

.section-dark .card {
    background: #020617;
    color: #e5e7eb;
    border-color: rgba(148, 163, 184, 0.2);
}

.card h3, .card h4 {
    margin-top: 0;
    margin-bottom: 8px;
}

.card p {
    font-size: 0.9rem;
    margin: 0;
    color: #4b5563;
}

.section-dark .card p,
.card.soft p {
    color: #9ca3af;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

/* STATS */
.stats {
    margin-top: 20px;
}

.stat-card {
    background: white;
    border-radius: 16px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-primary);
}

.stat-label {
    font-size: 0.85rem;
    color: #4b5563;
}

/* VÍDEO */
.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.video-wrapper iframe {
    width: 100%;
    height: 360px;
}

/* COTAS */
.cotas-wrapper {
    margin-top: 40px;
}

.cotas-wrapper h3 {
    margin-bottom: 20px;
}

/* CALLOUT */
.callout {
    margin-top: 40px;
    padding: 24px;
    border-radius: 16px;
    background: radial-gradient(circle at top left, rgba(255, 0, 85, 0.18), rgba(15, 23, 42, 0.95));
    color: #f9fafb;
    text-align: center;
}

/* CONTATO */
.contact-grid .card {
    height: 100%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 9px 10px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-size: 0.9rem;
    outline: none;
    transition: border 0.15s, box-shadow 0.15s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 0, 85, 0.2);
}

/* FOOTER */
.footer {
    background: #020617;
    color: #9ca3af;
    padding: 20px 0;
    font-size: 0.8rem;
}

.footer-inner {
    text-align: center;
}

.footer-small {
    color: #6b7280;
}

/* ANIMAÇÕES SIMPLES */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-up {
    animation: fadeInUp 0.7s ease-out both;
}

.animate-fade {
    animation: fadeIn 0.8s ease-out both;
}

.delay-1 {
    animation-delay: 0.15s;
}
.delay-2 {
    animation-delay: 0.3s;
}
.delay-3 {
    animation-delay: 0.45s;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
    }
    .hero h1 {
        font-size: 1.9rem;
    }
    .topbar-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .nav {
        justify-content: flex-start;
    }
    .video-wrapper iframe {
        height: 230px;
    }
}
