:root {
    --primary: #0647a6;
    --primary-dark: #032b65;
    --primary-light: #2e7cf6;
    --accent: #ffc107;
    --accent-dark: #e0a800;
    --soft: #f5f8ff;
    --soft-blue: #eaf2ff;
    --text: #172033;
    --muted: #667085;
    --border: #dbe8ff;
    --white: #ffffff;
    --dark: #101827;
    --shadow-sm: 0 8px 24px rgba(23, 32, 51, .08);
    --shadow-md: 0 16px 40px rgba(23, 32, 51, .12);
    --shadow-lg: 0 24px 70px rgba(6, 71, 166, .20);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 32px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

/* HEADER */

.site-header {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    box-shadow: 0 10px 28px rgba(0, 0, 0, .16);
    backdrop-filter: blur(10px);
}

.navbar {
    padding: 14px 0;
}

.navbar-brand {
    font-size: 1.35rem;
    letter-spacing: -.4px;
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent), #ffe082);
    color: var(--primary-dark);
    margin-right: 8px;
    box-shadow: 0 8px 22px rgba(255, 193, 7, .35);
}

.navbar .nav-link {
    position: relative;
    font-weight: 700;
    font-size: .94rem;
    opacity: .95;
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.navbar .nav-link:hover {
    color: var(--accent);
}

.navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 2px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .22s ease;
}

.navbar .nav-link:hover::after {
    transform: scaleX(1);
}

.navbar .container {
    max-width: 1320px;
}

.navbar-brand {
    white-space: nowrap;
    min-width: 150px;
}

.navbar .nav-link {
    white-space: nowrap;
    font-size: .88rem;
    padding-left: 8px !important;
    padding-right: 8px !important;
}

.navbar .btn {
    white-space: nowrap;
    min-width: max-content;
}

.navbar .btn-sm {
    padding: 9px 22px;
    font-size: .88rem;
}

/* ACESSIBILIDADE */

.skip-link {
    background: var(--accent);
    color: #000;
    padding: 8px 12px;
    position: absolute;
    z-index: 9999;
}

/* BOTÕES */

.btn {
    border-radius: 999px;
    font-weight: 800;
    padding: 11px 22px;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    box-shadow: 0 12px 28px rgba(6, 71, 166, .24);
}

.btn-primary:hover {
    filter: brightness(1.08);
}

.btn-warning {
    background: linear-gradient(135deg, var(--accent), #ffd95a);
    border: none;
    color: var(--primary-dark);
    box-shadow: 0 10px 24px rgba(255, 193, 7, .24);
}

.btn-outline-light:hover {
    color: var(--primary-dark);
}

/* HERO */

.hero-section {
    position: relative;
    background:
        radial-gradient(circle at 85% 10%, rgba(255, 193, 7, .28), transparent 28%),
        radial-gradient(circle at 10% 85%, rgba(255, 255, 255, .12), transparent 30%),
        linear-gradient(135deg, var(--primary-dark), var(--primary) 52%, var(--primary-light));
    color: #fff;
    min-height: 690px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    width: 560px;
    height: 560px;
    right: -180px;
    top: -160px;
    background: rgba(255, 193, 7, .18);
    border-radius: 50%;
    filter: blur(6px);
}

.hero-section::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    left: -160px;
    bottom: -180px;
    background: rgba(255, 255, 255, .10);
    border-radius: 50%;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: clamp(2.55rem, 5vw, 5rem);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -1.7px;
}

.hero-section .lead {
    font-size: clamp(1.05rem, 2vw, 1.32rem);
    opacity: .95;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 15px;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 999px;
    font-weight: 800;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.eyebrow.dark {
    color: var(--primary);
    background: #e7f0ff;
    border-color: #cddfff;
}

.hero-card {
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: var(--radius-lg);
    padding: 34px;
    backdrop-filter: blur(12px);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .22);
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--primary-dark);
    border-radius: 999px;
    padding: 11px 19px;
    font-weight: 900;
    box-shadow: 0 14px 38px rgba(0,0,0,.18);
    border: 2px solid rgba(255,193,7,.7);
}

/* MÉTRICAS */

.metric-box {
    background: #fff;
    color: var(--text);
    border-radius: 20px;
    padding: 22px;
    min-height: 112px;
    box-shadow: var(--shadow-sm);
}

.metric-box strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 900;
}

.metric-box span {
    color: var(--muted);
    font-size: .95rem;
}

/* SEÇÕES */

.section-padding {
    padding: 86px 0;
}

.section-soft-gradient {
    background: linear-gradient(180deg, #fff 0%, var(--soft) 100%);
}

.bg-premium {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
}

/* CARDS */

.card,
.form-card,
.plan-card,
.feature-card,
.category-card,
.testimonial-card {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.form-card {
    border: none;
    padding: 30px;
}

.plan-card {
    border: 1px solid #e8efff;
    border-radius: 26px;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.plan-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
}

.plan-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    border-radius: 999px;
    padding: 7px 12px;
    font-weight: 800;
}

/* HOVERS */

.hero-card,
.plan-card,
.feature-card,
.category-card,
.metric-box,
.form-card,
.timeline-card,
.business-box,
.testimonial-card {
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.hero-card:hover,
.plan-card:hover,
.feature-card:hover,
.category-card:hover,
.metric-box:hover,
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

/* ENTRETENIMENTO */

.entertainment-section {
    background:
        radial-gradient(circle at 80% 20%, rgba(255, 193, 7, .22), transparent 30%),
        linear-gradient(135deg, var(--primary-dark), #121c3d);
    color: #fff;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.app-grid span {
    padding: 25px;
    border-radius: 22px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    font-weight: 900;
    text-align: center;
    transition: transform .25s ease, background .25s ease;
}

.app-grid span:hover {
    transform: translateY(-4px) scale(1.02);
    background: rgba(255,255,255,.18);
}

/* FEATURE CARDS */

.feature-card,
.category-card {
    background: var(--soft);
    border: 1px solid #e2ebff;
    padding: 30px;
    border-radius: 26px;
    height: 100%;
}

.feature-card h2,
.feature-card h3,
.category-card h2,
.category-card h3 {
    color: var(--primary);
    font-weight: 900;
    font-size: 1.25rem;
}

.feature-card.large {
    min-height: 250px;
}

/* COBERTURA */

.coverage-box {
    background: linear-gradient(135deg, #eaf2ff, #ffffff);
    border: 1px solid #dbe8ff;
    border-radius: var(--radius-lg);
    padding: 34px;
    box-shadow: 0 16px 40px rgba(6, 71, 166, .10);
}

.coverage-city {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--primary);
    border: 1px solid #d7e5ff;
    border-radius: 999px;
    padding: 10px 16px;
    margin: 6px;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(6, 71, 166, .08);
}

.coverage-city::before {
    content: "📍";
}

/* BANNER CASA & CINEMA */

.cinema-banner {
    background:
        radial-gradient(circle at right, rgba(255,193,7,.35), transparent 35%),
        linear-gradient(135deg, var(--primary-dark), #111b3c);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 44px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.cinema-banner h2 {
    font-weight: 900;
    letter-spacing: -.8px;
}

.cinema-banner p {
    opacity: .92;
}

/* PROVA SOCIAL */

.testimonial-card {
    background: #fff;
    border: 1px solid #e6eeff;
    padding: 28px;
    height: 100%;
}

.testimonial-card strong {
    color: var(--primary);
}

.testimonial-card .stars {
    color: var(--accent);
    letter-spacing: 2px;
    font-size: 1.1rem;
}

/* PÁGINAS INTERNAS */

.page-hero {
    background:
        radial-gradient(circle at right, rgba(255,193,7,.20), transparent 32%),
        linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    padding: 96px 0;
}

.page-hero h1 {
    font-weight: 900;
    font-size: clamp(2.2rem, 5vw, 4rem);
    letter-spacing: -1px;
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 760px;
}

.timeline-card,
.business-box {
    background:
        radial-gradient(circle at top right, rgba(255,193,7,.25), transparent 34%),
        linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 52px;
    min-height: 270px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.timeline-card strong {
    font-size: 4rem;
    line-height: 1;
    color: var(--accent);
}

.timeline-card span {
    font-size: 1.3rem;
}

.legal-text {
    max-width: 850px;
}

/* FORMULÁRIOS */

.form-control,
.form-select {
    border-radius: 16px;
    border-color: #d8e3f7;
    padding: 12px 14px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 .25rem rgba(6, 71, 166, .12);
}

/* FOOTER */

.footer {
    background: #101827;
    color: #e9eef8;
}

.footer a {
    color: #e9eef8;
}

.footer a:hover {
    color: var(--accent);
}

.footer-bottom {
    background: #0a101c;
}

.footer-links li {
    margin-bottom: 8px;
}

/* WHATSAPP */

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 999;
    background: #25d366;
    color: #fff;
    border-radius: 999px;
    padding: 14px 20px;
    font-weight: 900;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.whatsapp-float:hover {
    color: #fff;
    transform: translateY(-2px);
}

/* ALTO CONTRASTE */

body.high-contrast {
    background: #000 !important;
    color: #fff !important;
}

body.high-contrast .bg-light,
body.high-contrast .feature-card,
body.high-contrast .category-card,
body.high-contrast .card,
body.high-contrast .accordion-item,
body.high-contrast .form-card,
body.high-contrast .plan-card,
body.high-contrast .testimonial-card {
    background: #111 !important;
    color: #fff !important;
    border-color: #fff !important;
}

body.high-contrast a {
    color: #ffff00 !important;
}

/* MOBILE */

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(3, 43, 101, .98);
        border-radius: 20px;
        padding: 18px;
        margin-top: 14px;
        box-shadow: 0 18px 40px rgba(0,0,0,.22);
    }

    .navbar .nav-link {
        padding: 10px 0 !important;
    }

    .navbar .nav-link::after {
        display: none;
    }

    .hero-section {
        min-height: auto;
        text-align: center;
        padding: 62px 0;
    }

    .hero-card {
        margin-top: 30px;
        padding: 26px;
    }

    .hero-section h1 {
        font-size: clamp(2.2rem, 10vw, 3.25rem);
    }

    .section-padding {
        padding: 58px 0;
    }

    .metric-box {
        min-height: auto;
    }

    .cinema-banner,
    .coverage-box,
    .timeline-card,
    .business-box {
        padding: 28px;
        border-radius: 24px;
    }

    .app-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        padding: 12px 16px;
        font-size: .9rem;
    }
}

@media (max-width: 575px) {
    .section-padding {
        padding: 46px 0;
    }

    .page-hero {
        padding: 64px 0;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .hero-card,
    .form-card,
    .feature-card,
    .category-card,
    .plan-card,
    .testimonial-card {
        border-radius: 20px;
        padding: 22px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .d-flex.gap-2,
    .d-flex.gap-3 {
        flex-direction: column;
    }
}
@media (min-width: 992px) {
    .navbar-nav {
        flex-wrap: nowrap;
    }

    .navbar .container {
        gap: 18px;
    }

    .navbar-collapse {
        gap: 16px;
    }
}