:root {
    --brand-primary: #7dc414;
    --brand-secondary: #1d2b78;
    --ink: #0f172a;
    --muted: #64748b;
    --line: #d8e1ef;
    --surface: #ffffff;
    --soft: #f5f8fc;
    --cyan: #2cb7df;
    --gold: #f3bd32;
    --coral: #e45d47;
    --navy: #071437;
    --radius: 8px;
    --shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: #ffffff;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    letter-spacing: 0;
}

body.modal-open {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 1.5rem;
}

h2 {
    font-size: 2rem !important;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.bi {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-style: normal;
}

.bi::before {
    content: ">";
}

.bi-whatsapp::before,
.bi-telephone::before {
    content: "☎";
}

.bi-geo-alt::before,
.bi-pin-map::before {
    content: "⌖";
}

.bi-list::before {
    content: "☰";
}

.bi-wifi::before,
.bi-router::before {
    content: "≋";
}

.bi-envelope::before {
    content: "✉";
}

.bi-receipt::before {
    content: "▤";
}

.bi-person-badge::before {
    content: "◫";
}

.bi-phone::before {
    content: "▯";
}

.bi-key::before {
    content: "⚿";
}

.bi-speedometer2::before {
    content: "◴";
}

.bi-headset::before {
    content: "☏";
}

.bi-tv::before {
    content: "▭";
}

.bi-check2::before {
    content: "✓";
}

.bi-crosshair::before {
    content: "◎";
}

.bi-x-lg::before {
    content: "×";
}

.bi-sliders::before {
    content: "☷";
}

.bi-grid::before {
    content: "▦";
}

.bi-question-circle::before {
    content: "?";
}

.bi-box-arrow-up-right::before {
    content: "↗";
}

.bi-door-open::before {
    content: "↪";
}

.bi-trash::before {
    content: "⌫";
}

button,
input,
textarea,
select {
    font: inherit;
}

[hidden] {
    display: none !important;
}

.section-inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-primary);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    padding: 12px 18px;
    color: var(--ink);
    background: #ffffff;
    font-weight: 800;
    cursor: pointer;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    color: #071437;
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    box-shadow: 0 14px 32px rgba(125, 196, 20, 0.22);
}

.btn-outline {
    color: var(--brand-secondary);
    background: #ffffff;
    border-color: var(--line);
}

.btn-outline.light {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.32);
}

.btn-ghost {
    background: transparent;
    border-color: transparent;
}

.btn-ghost.light {
    color: #ffffff;
}

.btn-danger {
    color: #ffffff;
    background: var(--coral);
    border-color: var(--coral);
}

.btn.full {
    width: 100%;
}

.site-header {
    position: fixed;
    z-index: 40;
    top: 0;
    left: 0;
    right: 0;
    height: 78px;
    padding: 0;
    color: #ffffff;
    background: rgba(7, 20, 55, 0.38);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    transition: background 180ms ease, box-shadow 180ms ease;
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 18px;
    height: 100%;
}

.site-header.is-scrolled {
    background: rgba(7, 20, 55, 0.92);
    box-shadow: 0 14px 38px rgba(7, 20, 55, 0.22);
}

.brand {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    padding: 8px 10px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.92);
}

.brand img {
    max-height: 56px;
    width: auto;
    object-fit: contain;
}

.site-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 0.9rem;
    font-weight: 700;
}

.site-nav a {
    color: rgba(255, 255, 255, 0.86);
    white-space: nowrap;
}

.site-nav a:hover {
    color: #ffffff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.city-chip,
.header-whatsapp,
.nav-toggle {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    padding: 9px 12px;
    font-weight: 800;
}

.city-chip {
    cursor: pointer;
}

.nav-toggle {
    display: none;
    width: 44px;
    justify-content: center;
}

.hero {
    position: relative;
    min-height: calc(100vh - 92px);
    max-height: 760px;
    overflow: hidden;
    color: #ffffff;
    background: var(--navy);
}

.fiber-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 20, 55, 0.92) 0%, rgba(7, 20, 55, 0.72) 45%, rgba(7, 20, 55, 0.26) 100%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 80px);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    height: calc(100vh - 92px);
    min-height: 600px;
    max-height: 760px;
    display: flex;
    align-items: center;
}

.hero-copy {
    width: min(680px, 100%);
    padding-top: 58px;
}

.hero-kicker {
    display: inline-flex;
    padding: 8px 12px;
    color: #dbf7ff;
    background: rgba(44, 183, 223, 0.14);
    border: 1px solid rgba(44, 183, 223, 0.28);
    border-radius: var(--radius);
    font-weight: 800;
}

.hero h1 {
    max-width: 720px;
    margin: 24px 0 20px;
    font-size: 4.3rem;
    line-height: 1.02;
    letter-spacing: 0;
}

.hero p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.16rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 82px;
    margin-bottom: 50px;
}

.hero-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 26px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
}

.hero-contact span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-media {
    position: absolute;
    z-index: 1;
    right: max(12px, calc((100vw - 1180px) / 2 - 40px));
    bottom: -78px;
    width: min(48vw, 580px);
    pointer-events: none;
    filter: drop-shadow(0 30px 70px rgba(0, 0, 0, 0.45));

}

.service-strip {
    position: absolute;
    z-index: 4;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    overflow: hidden;
    padding: 16px 0;
    color: #071437;
    background: linear-gradient(90deg, var(--brand-primary), #cdea4d 46%, var(--cyan));
    font-weight: 900;
    text-transform: uppercase;
}

.service-strip span {
    display: inline-block;
    animation: stripFloat 4s ease-in-out infinite;
}

.service-strip span:nth-child(1) {
    animation-duration: 4s;
    animation-delay: 0s;
}

.service-strip span:nth-child(2) {
    animation-duration: 4.5s;
    animation-delay: 0.5s;
}

.service-strip span:nth-child(3) {
    animation-duration: 5s;
    animation-delay: 1s;
}

.service-strip span:nth-child(4) {
    animation-duration: 4.2s;
    animation-delay: 1.5s;
}

.service-strip span:nth-child(5) {
    animation-duration: 4.8s;
    animation-delay: 0.8s;
}

@keyframes stripFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.service-strip span {
    white-space: nowrap;
}

.quick-access,
.plans-section,
.faq-section,
.page-content {
    padding: 84px 0;
    background: #ffffff;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 32px;
}

.section-heading.split {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.section-heading h2,
.about-copy h2,
.showcase-grid h2,
.local-coverage-grid h2,
.final-cta h2,
.page-hero h1,
.text-layout h2 {
    margin: 8px 0 10px;
    font-size: 2.45rem;
    line-height: 1.12;
    letter-spacing: 0;
}

.section-heading p,
.about-copy p,
.showcase-grid p,
.local-coverage-grid p,
.final-cta p,
.page-hero p,
.text-layout p {
    color: var(--muted);
    font-size: 1.05rem;
    text-align: justify;
}

.self-service-heading-full {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.self-service-lead {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 25px;
    text-align: center;
}

.self-service-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.self-service-content {
    flex: 1;
}

.self-service-image-area {
    flex: 0 0 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.self-service-image {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.self-service-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(15, 23, 42, 0.15));
}

.floating-app-mockup {
    animation: floatApp 6s ease-in-out infinite;
}

@keyframes floatApp {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

.shortcut-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.shortcut-card {
    min-height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 15px;
    border: 1px solid rgba(27, 36, 110, 0.05);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    position: relative;
    overflow: hidden;
}

.shortcut-card i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6rem;
    color: var(--brand-secondary);
    opacity: 0.03;
    background: transparent !important;
    z-index: 0;
    transition: all 0.3s ease;
}

.shortcut-card:hover i {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.06;
}

.shortcut-card strong {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    line-height: 1.2;
}

.shortcut-card span {
    position: relative;
    z-index: 1;
    color: var(--muted);
    font-size: 0.92rem;
}

.about-band {
    padding: 90px 0;
    color: #ffffff;
    background: linear-gradient(135deg, #0c1e54 0%, #102f78 58%, #0e7f94 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 40px;
    align-items: center;
}

.about-copy p {
    color: rgba(255, 255, 255, 0.78);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.value-card {
    min-height: 250px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
}

.value-card i {
    color: var(--brand-primary);
    font-size: 1.8rem;
}

.value-card span {
    display: block;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 800;
}

.value-card strong {
    display: block;
    margin: 6px 0 12px;
    font-size: 2rem;
    line-height: 1;
}

.value-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.plan-card {
    position: relative;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
}

.plan-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 16px;
    border-radius: 12px;
    margin: 24px 0;
    background: transparent;
}

.plan-card.is-featured {
    border-color: rgba(125, 196, 20, 0.72);
    box-shadow: 0 20px 60px rgba(125, 196, 20, 0.16);
}

.plan-card.is-secondary {
    opacity: 0.78;
}

.plan-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 10px;
    color: #071437;
    background: var(--gold);
    border-radius: var(--radius);
    font-size: 0.78rem;
    font-weight: 900;
}

.plan-category {
    color: var(--brand-secondary);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.plan-card h3 {
    margin: 12px 0 8px;
    font-size: 1.8rem;
    line-height: 1.12;
}

.plan-card p {
    min-height: 56px;
    margin: 0;
    color: var(--muted);
}

.plan-price strong {
    display: block;
    color: var(--brand-secondary);
    font-size: 1.65rem;
    line-height: 1.1;
}

.plan-price span {
    color: var(--muted);
    font-weight: 700;
}

.plan-card ul {
    display: grid;
    gap: 10px;
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}

.plan-card li {
    display: flex;
    gap: 8px;
    color: #334155;
}

.plan-card li i {
    color: var(--brand-primary);
    font-weight: 900;
}

.plan-card .btn {
    margin-top: auto;
}

.content-showcase {
    position: relative;
    isolation: isolate;
    padding: 90px 0;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 88% 18%, rgba(44, 183, 223, 0.22), transparent 34%),
        radial-gradient(circle at 12% 100%, rgba(133, 194, 72, 0.16), transparent 30%),
        linear-gradient(135deg, #1b246e 0%, #14228d 48%, #080d32 100%);
}

.content-showcase .eyebrow {
    color: var(--brand-primary);
}

.content-showcase h2 {
    color: #ffffff;
}

.content-showcase p {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 400px;
}

.showcase-copy {
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.showcase-copy .btn {
    align-self: flex-end;
    margin-top: 30px;
    position: relative;
    z-index: 10;
}

.showcase-copy>*:not(.streaming-marquee-wrapper) {
    position: relative;
    z-index: 2;
}

.streaming-marquee-wrapper {
    width: 150vw;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-3deg);
    z-index: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
    opacity: 0.95;
    pointer-events: none;
    will-change: transform;
}

.marquee-row {
    width: 100vw;
    overflow: visible;
    display: flex;
}

.marquee-track {
    display: flex;
    gap: 15px;
    width: max-content;
    animation: marqueeScroll 45s linear infinite;
}

.marquee-track.reverse {
    animation-direction: reverse;
}

.marquee-track img {
    height: 150px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    pointer-events: none;
    transform: translateZ(0);
    backface-visibility: hidden;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.local-coverage-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: start;
    text-align: left;
}

.company-intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.coverage-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.coverage-list button {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    align-items: center;
    width: 100%;
    padding: 18px;
    text-align: left;
    border-radius: 18px;
    cursor: pointer;

    /* Premium Light Theme Details */
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%),
        radial-gradient(at bottom left, #f1f5f9 0%, #ffffff 53%);
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .05), inset 0 1px 0 rgba(255, 255, 255, 1);
    transition: transform .4s ease, box-shadow .4s ease;
}

.coverage-list button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .8), transparent 35%);
    pointer-events: none;
}

.coverage-list button::after {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    right: -40px;
    top: -40px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(133, 194, 72, .15), transparent 70%);
    pointer-events: none;
}

.coverage-list button:nth-child(odd) {
    transform: translateX(-15px);
}

.coverage-list button:nth-child(even) {
    transform: translateX(15px);
}

.coverage-list button:hover:nth-child(odd) {
    transform: translateX(-15px) translateY(-4px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .1), 0 0 20px rgba(133, 194, 72, .2);
}

.coverage-list button:hover:nth-child(even) {
    transform: translateX(15px) translateY(-4px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .1), 0 0 20px rgba(133, 194, 72, .2);
}

.coverage-list button>* {
    position: relative;
    z-index: 2;
}

.coverage-list i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: var(--brand-secondary);
    border-radius: var(--radius);
}

.coverage-list strong {
    display: block;
    margin-bottom: 2px;
    color: var(--navy);
}

.coverage-list span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.coverage-list span {
    color: var(--muted);
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.faq-list.wide {
    grid-template-columns: 1fr;
}

.faq-list details {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
}

.faq-list summary {
    cursor: pointer;
    padding: 20px;
    font-weight: 900;
}

.faq-list p {
    margin: 0;
    padding: 0 20px 20px;
    color: var(--muted);
}

.faq-actions {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.faq-empty {
    padding: 22px;
    color: var(--muted);
    text-align: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
}

.final-cta {
    padding: 54px 0;
    color: #ffffff;
    background: var(--navy);
}

.final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.final-cta p {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.72);
}

.site-footer {
    padding: 56px 0 28px;
    color: rgba(255, 255, 255, 0.74);
    background: #050b1d;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 1.25fr 1.1fr;
    gap: 30px;
}

.footer-logo {
    width: 190px;
    margin-bottom: 14px;
}

.footer-grid strong {
    display: block;
    margin-bottom: 12px;
    color: #ffffff;
}

.footer-grid a,
.footer-grid span {
    display: block;
    margin: 8px 0;
}

.footer-grid p {
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.55;
}

.footer-grid .footer-subtitle {
    margin-top: 18px;
}

.footer-note {
    max-width: 330px;
}

.footer-bottom {
    margin-top: 32px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.86rem;
    text-align: center;
}

.cookie-consent-bar {
    position: fixed;
    right: 18px;
    bottom: 18px;
    left: 18px;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    max-width: 1120px;
    margin: 0 auto;
    padding: 16px 18px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(27, 36, 110, 0.85) 0%, rgba(8, 13, 50, 0.95) 100%);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(22px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.cookie-consent-bar.is-hidden {
    opacity: 0;
    transform: translateY(12px);
}

.cookie-consent-text {
    display: grid;
    gap: 4px;
}

.cookie-consent-text strong,
.cookie-consent-text span {
    color: #ffffff;
}

.cookie-consent-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.cookie-consent-actions a {
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.page-hero {
    padding: 150px 0 76px;
    color: #ffffff;
    background:
        linear-gradient(120deg, rgba(7, 20, 55, 0.94), rgba(21, 46, 118, 0.88)),
        url("../img/mascote_em_pe_joia.png") right top / auto 100% no-repeat;
    /* aumenta a imagem e faz aparecer só a metade superior */
    background-size: auto 150%;

    /* encosta à direita e desce 50px do topo */
    background-position: right 0 top 50px;
}

.page-hero.compact {
    padding-bottom: 62px;
}

.page-hero p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.76);
}

.text-layout {
    max-width: 860px;
}

.page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: stretch;
}

.contact-page-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-page-left .shortcut-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.contact-page-right {
    display: flex;
    flex-direction: column;
}

.contact-info {
    padding: 32px;
    background: linear-gradient(180deg, rgba(27, 36, 110, 0.96) 0%, rgba(8, 13, 50, 0.98) 100%);
    border-radius: var(--radius);
    color: #ffffff;
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.18);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-info h2 {
    margin-top: 8px;
    font-size: 2rem;
    color: #ffffff;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 12px;
    margin-bottom: 32px;
    line-height: 1.6;
    flex-grow: 1;
}

.contact-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-details i {
    font-size: 1.5rem;
    color: #2f9e44;
    margin-top: 4px;
}

.contact-details strong {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}

.contact-details span {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-form-container {
    background: #ffffff;
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-form-container.form-no-bg {
    background: transparent;
    padding: 0;
    box-shadow: none;
    border: none;
}

.contact-form-container form {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.contact-form-container button[type="submit"] {
    margin-top: auto;
}

.city-modal,
.confirm-dialog {
    position: fixed;
    z-index: 80;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
}

.city-modal-backdrop,
.confirm-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.72);
}

.city-dialog,
.confirm-box {
    position: relative;
    z-index: 1;
    width: min(560px, 100%);
    padding: 28px;
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow);
}

.modal-welcome-logo {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
    display: block;
}

.city-dialog h2,
.confirm-box h2 {
    margin: 8px 0 10px;
    font-size: 1.7rem !important;
    line-height: 1.16;
}

.city-dialog p,
.confirm-box p {
    color: var(--muted);
}

.dialog-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    cursor: pointer;
    z-index: 1010;
}

.city-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 22px;
}

.city-actions .btn-primary {
    grid-column: 1 / -1;
}

.toast-zone {
    position: fixed;
    z-index: 120;
    right: 18px;
    bottom: 18px;
    display: grid;
    gap: 10px;
    width: min(360px, calc(100% - 36px));
}

.app-toast {
    padding: 14px 16px;
    color: #ffffff;
    background: #102a56;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 180ms ease, opacity 180ms ease;
}

.app-toast.success {
    color: #071437;
    background: var(--brand-primary);
}

.app-toast.is-leaving {
    opacity: 0;
    transform: translateY(8px);
}

.confirm-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 22px;
}

.install-page,
.login-body {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #071437, #18327d 58%, #0f8aa1);
}

.install-box,
.login-card {
    width: min(340px, 100%);
    padding: 22px;
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow);
}

.install-box img,
.login-card img {
    width: 210px;
    margin-bottom: 10px;
}

.install-box h1,
.login-card h1 {
    margin: 4px 0 8px;
    font-size: 1.8rem;
}

.login-title {
    text-align: center;
    font-size: 1.5rem;
    margin: 0;
}

.install-actions {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.login-card form {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

.login-help {
    color: var(--muted);
    font-size: 0.92rem;
}

.admin-body {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 270px 1fr;
    background: #edf2f7;
}

.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 24px;
    background: #071437;
    color: #ffffff;
}

.admin-brand img {
    width: 190px;
    margin-bottom: 28px;
}

.admin-sidebar nav {
    display: grid;
    gap: 8px;
}

.admin-sidebar-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.4);
    margin: 16px 0 4px 12px;
}

.admin-sidebar-category:first-of-type {
    margin-top: 0;
}

.admin-sidebar a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 2px;
    border-radius: var(--radius);
    color: rgba(255, 255, 255, 0.76);
}

.admin-sidebar a:hover {
    color: #ffffff;

}

.admin-main {
    padding: 12px;
    background: #f8fafc;
    min-height: 100vh;
}

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.admin-topbar h1 {
    margin: 4px 0 0;
    font-size: 2rem;
}

.admin-mobile-toggle {
    display: none;
}

.dashboard-charts-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
}

.admin-flash {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: var(--radius);
    background: #dff8cf;
    color: #245500;
    font-weight: 800;
}

.admin-flash-error {
    background: #ffe1db;
    color: #8c2a19;
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.metric-card,
.admin-panel,
.admin-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.metric-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.metric-card span {
    color: var(--color-gray-600);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-card strong {
    display: block;
    margin-top: 8px;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-gray-900);
}

.metric-card i.bg-icon {
    position: absolute;
    right: -10px;
    bottom: -10px;
    font-size: 5rem;
    color: rgba(0, 0, 0, 0.03);
    pointer-events: none;
}

.admin-panel {
    margin-bottom: 20px;
    padding: 24px;
}

.admin-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.admin-panel-head h2 {
    margin: 0;
    font-size: 1.25rem !important;
}

.admin-actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.admin-actions-grid a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-weight: 900;
}

.admin-form {
    display: grid;
    gap: 14px;
}

.admin-form.grid-two {
    grid-template-columns: repeat(2, 1fr);
}

.admin-form label {
    display: grid;
    gap: 6px;
    color: #334155;
    font-weight: 800;
}

.admin-form input,
.admin-form textarea,
.admin-form select,
.login-card input {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 10px 12px;
    color: var(--ink);
    background: #ffffff;
    font-weight: normal;
}

.admin-form textarea {
    resize: vertical;
}

.span-two {
    grid-column: 1 / -1;
}

.check-row {
    display: inline-flex !important;
    grid-template-columns: auto 1fr;
    align-items: center;
    justify-content: start;
    gap: 8px !important;
}

.check-row input {
    width: auto;
    min-height: auto;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {

    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: middle;
}

.admin-table th {
    color: var(--muted);
    font-size: 0.82rem;
    text-transform: uppercase;
}

.admin-table td span {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
}

.admin-note {
    margin: -6px 0 18px;
    color: var(--muted);
}

.table-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    padding: 8px 12px;
}

.visitor-map-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 14px;
}

.visitor-path-card {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #f8fafc;
}

.visitor-path-card header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.visitor-path-card header span,
.visitor-path-card p,
.visitor-path-card li span {
    color: var(--muted);
    font-size: 0.84rem;
}

.visitor-path-card p {
    margin: 0 0 12px;
    word-break: break-word;
}

.visitor-path-card ol {
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 18px;
}

.visitor-path-card li {
    padding-left: 4px;
}

.visitor-path-card li strong,
.visitor-path-card li em {
    display: block;
}

.visitor-path-card li em {
    color: #334155;
    font-style: normal;
    word-break: break-word;
}

.visitor-path-card details {
    margin-top: 5px;
}

.visitor-path-card summary {
    cursor: pointer;
    color: var(--brand-secondary);
    font-size: 0.82rem;
    font-weight: 900;
}

.visitor-path-card pre {
    max-height: 180px;
    overflow: auto;
    margin: 8px 0 0;
    padding: 10px;
    color: #dbeafe;
    border-radius: 8px;
    background: #0f172a;
    font-size: 0.78rem;
    white-space: pre-wrap;
    word-break: break-word;
}

.inline-editor {
    position: relative;
}

.inline-editor summary {
    cursor: pointer;
    color: var(--brand-secondary);
    font-weight: 900;
}

.inline-editor .mini {
    position: absolute;
    z-index: 10;
    right: 0;
    top: 34px;
    width: 340px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow);
}

.wide-editor .mini {
    width: 460px;
}

.icon-danger {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid #ffd3cb;
    border-radius: var(--radius);
    color: #b5331f;
    background: #fff4f1;
    cursor: pointer;
}

.icon-button {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--brand-secondary);
    background: #ffffff;
    cursor: pointer;
}

.admin-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 24px;
}

.admin-modal[hidden] {
    display: none;
}

.admin-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.58);
}

.admin-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(720px, 100%);
    max-height: min(88vh, 900px);
    overflow-y: auto;
    padding: 28px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 24px 80px rgba(2, 6, 23, 0.32);
}

.admin-modal-dialog.wide {
    width: min(860px, 100%);
}

.admin-modal-dialog.xl {
    width: min(1120px, 100%);
}

.admin-modal-dialog h2 {
    margin: 4px 0 18px;
    font-size: 1.7rem;
}

.addon-row-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.addon-logo-chip,
.plan-addon-logo {
    width: 46px;
    height: 46px;
    display: grid !important;
    place-items: center !important;
    flex: 0 0 auto;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #ffffff;
    color: var(--brand-secondary);
}

.addon-logo-chip img,
.plan-addon-logo img {
    max-width: 82%;
    max-height: 74%;
    object-fit: contain;
}

.plan-addon-logo.is-stack {
    width: auto;
    min-width: 52px;
    padding: 0 5px;
    display: inline-flex;
    gap: 3px;
}

.plan-addon-logo.is-stack img,
.plan-addon-logo.is-stack i {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.admin-addon-picker {
    display: grid;
    gap: 10px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #f8fbff;
}

.admin-addon-picker-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 4px;
}

.admin-addon-picker-head span {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.admin-addon-picker-head a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-secondary);
    font-weight: 900;
}

.admin-addon-section-title {
    margin-top: 8px;
    color: #17306d;
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.admin-addon-option {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(360px, 1.35fr);
    gap: 12px;
    align-items: center;
    padding: 12px;
    border: 1px solid #e4ebf5;
    border-radius: 14px;
    background: #ffffff;
}

.admin-addon-option small {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
}

.admin-addon-controls {
    display: grid;
    grid-template-columns: minmax(150px, 1.3fr) repeat(3, minmax(72px, 0.7fr));
    gap: 8px;
}

.package-items-picker {
    display: grid;
    gap: 14px;
    padding: 14px;
    border: 1px solid #e4ebf5;
    border-radius: 14px;
    background: #f8fbff;
}

.package-items-group {
    display: grid;
    gap: 10px;
}

.package-items-group[hidden] {
    display: none;
}

.package-items-group>strong {
    color: #17306d;
}

.package-item-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}

.package-item-grid .check-row {
    padding: 8px;
    border: 2px solid #e4ebf5;
    border-radius: 12px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.package-item-grid .check-row:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.package-item-grid .check-row:has(input[type="checkbox"]:checked) {
    border-color: var(--brand-primary);
    background: rgba(133, 194, 72, 0.05);
}

.package-item-grid .check-row input[type="checkbox"] {
    display: none;
}

.addon-mini-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.addon-mini-list span {
    display: inline-flex;
    padding: 4px 8px;
    border-radius: 999px;
    background: #edf6ff;
    color: #17306d;
    font-size: 0.8rem;
    font-weight: 800;
}

.admin-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    background: var(--line);
    font-size: 0.8rem;
    font-weight: 600;
}

.admin-badge-success {
    background: #10b981;
    color: white;
}

.admin-badge-warning {
    background: #f59e0b;
    color: white;
}

.plan-addons {
    display: grid;
    gap: 10px;
    margin: 0 0 18px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
}

.plan-addon-group {
    display: grid;
    gap: 8px;
}

.plan-addon-label {
    color: var(--brand-primary);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.plan-addon-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.plan-addon-pill {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.78rem;
    font-weight: 800;
}

.plan-addon-pill small {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.68rem;
}

.plan-addon-pill input {
    width: 14px;
    height: 14px;
    accent-color: var(--brand-primary);
}

.plan-addon-logo {
    width: 34px;
    height: 24px;
    border-radius: 8px;
}

@media (max-width: 1160px) {
    .site-nav {
        position: absolute;
        top: 78px;
        left: 18px;
        right: 18px;
        display: none;
        grid-template-columns: 1fr;
        justify-content: start;
        padding: 18px;
        border-radius: var(--radius);
        background: rgba(7, 20, 55, 0.98);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: grid;
    }

    .nav-toggle {
        display: inline-grid;
    }

    .header-whatsapp span {
        display: none;
    }

    .shortcut-grid,
    .plan-grid,
    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid,
    .showcase-grid,
    .local-coverage-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .section-inner {
        width: min(680px, calc(100% - 28px));
    }

    .site-header {
        height: 70px;
        padding: 0 14px;
    }

    .brand img {
        width: 185px;
    }

    .brand {
        padding: 6px 8px;
    }

    .city-chip span {
        max-width: 84px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .header-whatsapp {
        display: none;
    }

    .header-actions {
        margin-left: auto;
        gap: 6px;
    }

    .site-nav {
        top: 80px;
    }

    .hero,
    .hero-inner {
        min-height: calc(100vh - 82px);
        max-height: none;
        height: calc(100vh - 82px);
    }

    .hero-inner {
        align-items: flex-start;
        padding: 108px 0 30px;
    }

    .hero h1 {
        font-size: 2.28rem;
        line-height: 1.08;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-media {
        right: -96px;
        bottom: -62px;
        width: 330px;
        opacity: 0.34;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        max-width: 360px;
    }

    .hero-contact {
        display: none;
    }

    .service-strip {
        gap: 18px;
        font-size: 0.82rem;
    }

    .section-heading.split,
    .final-cta-inner,
    .admin-topbar,
    .admin-panel-head {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .cookie-consent-bar {
        right: 12px;
        bottom: 12px;
        left: 12px;
        align-items: stretch;
        flex-direction: column;
        padding: 14px;
    }

    .cookie-consent-actions {
        align-items: stretch;
        flex-wrap: wrap;
    }

    .cookie-consent-actions .btn {
        flex: 1 1 120px;
    }

    .section-heading h2,
    .about-copy h2,
    .showcase-grid h2,
    .local-coverage-grid h2,
    .final-cta h2,
    .page-hero h1 {
        font-size: 2rem;
    }

    .shortcut-grid,
    .plan-grid,
    .value-grid,
    .faq-list,
    .footer-grid,
    .admin-grid,
    .admin-actions-grid,
    .admin-form.grid-two {
        grid-template-columns: 1fr;
    }

    .admin-addon-option,
    .admin-addon-controls {
        grid-template-columns: 1fr;
    }

    .admin-modal {
        padding: 12px;
    }

    .city-actions {
        grid-template-columns: 1fr;
    }

    .city-dialog {
        max-height: calc(100vh - 32px);
        overflow-y: auto;
        padding: 22px;
    }

    .city-dialog {
        max-height: calc(100vh - 32px);
        overflow-y: auto;
        padding: 22px;
    }

    .inline-editor .mini,
    .wide-editor .mini {
        position: static;
        width: min(78vw, 420px);
        margin-top: 12px;
    }

    .footer-note {
        max-width: 100%;
    }

    /* Autoatendimento: manter duas colunas no mobile */
    #autoatendimento .shortcut-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    #autoatendimento .shortcut-card {
        min-height: 112px;
        padding: 14px 10px;
    }

    #autoatendimento .shortcut-card strong {
        font-size: 1rem;
    }

    #autoatendimento .shortcut-card span {
        font-size: 0.82rem;
    }

    /* TV e entretenimento: imagens em fluxo normal para o texto ficar legivel */
    .content-showcase p {
        margin-bottom: 20px;
    }

    .streaming-marquee-wrapper {
        position: static;
        top: auto;
        left: auto;
        width: 100%;
        transform: none;
        margin-top: 8px;
        padding: 0;
        opacity: 1;
    }

    .marquee-row {
        width: 100%;
        overflow: hidden;
    }

    .marquee-track img {
        height: 110px;
    }

    .showcase-copy .btn {
        align-self: stretch;
        justify-content: center;
        /* o marquee (width:max-content) alarga o .showcase-copy; o botão não pode herdar isso */
        max-width: calc(100vw - 40px);
    }
}

@media (max-width: 430px) {
    .site-header {
        gap: 8px;
    }

    .brand img {
        width: 175px;
    }

    .city-chip {
        padding: 8px 10px;
    }

    .city-chip span {
        max-width: 58px;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}

/* =====================================================
   Refinamento visual Interlink: header clean, hero 3D e cards vivos
===================================================== */

:root {
    --brand-blue-deep: #080d32;
    --brand-blue-light: #243394;
    --brand-primary: #85c248;
    --brand-secondary: #1b246e;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-primary), #b6ef4d);
    border-color: transparent;
    box-shadow: 0 18px 44px rgba(133, 194, 72, 0.3);
}

.btn-client.light {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.site-header {
    height: 82px;
    padding: 0;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(24px);
}

.site-header.is-scrolled {
    background: #ffffff;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.12);
}

.brand {
    padding: 0;
    background: transparent;
    border-radius: 0;
}

.brand img {
    max-height: 56px;
    width: auto;
    object-fit: contain;
}

.site-nav {
    gap: 6px;
    font-size: 0.84rem;
}

.site-nav a {
    color: #172554;
    padding: 8px 16px;
    border: 1px solid rgba(27, 36, 110, 0.08);
    border-radius: 999px;
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-nav a:hover {
    color: var(--brand-secondary);
    background: rgba(27, 36, 110, 0.04);
    border-color: rgba(27, 36, 110, 0.16);
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-toggle {
    background: transparent;
    border: 1px solid rgba(27, 36, 110, 0.08);
    color: #172554;
    font-size: 0.84rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 999px;
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
    font-family: inherit;
}

.nav-dropdown-toggle:hover {
    color: var(--brand-secondary);
    background: rgba(27, 36, 110, 0.04);
    border-color: rgba(27, 36, 110, 0.16);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #ffffff;
    border-radius: 12px;
    padding: 8px 0;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 50;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #172554;
    text-decoration: none;
    border: none;
    border-radius: 0;
    transition: background 0.2s, color 0.2s;
    font-size: 0.86rem;
}

.nav-dropdown-menu a:hover {
    background: rgba(133, 194, 72, 0.08);
    color: var(--brand-primary);
    transform: none;
}

.header-client,
.city-chip,
.header-whatsapp,
.nav-toggle,
.accessibility-toggle {
    color: #101a4f;
    background: rgba(255, 255, 255, 0.76);
    border-color: rgba(27, 36, 110, 0.1);
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.header-actions {
    gap: 6px;
}

.accessibility-widget {
    position: relative;
    flex: 0 0 auto;
}

.accessibility-toggle {
    width: 38px;
    min-height: 38px;
    display: inline-grid;
    place-items: center;
    padding: 0;
    color: #ffffff;
    cursor: pointer;
    background: linear-gradient(135deg, var(--brand-secondary), var(--brand-blue-light));
    border: 1px solid rgba(27, 36, 110, 0.18);
}

.accessibility-toggle i {
    font-size: 2rem;
}

.accessibility-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 80;
    display: grid;
    grid-template-columns: 34px;
    gap: 6px;
    padding: 8px;
    border: 1px solid rgba(27, 36, 110, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16);
    backdrop-filter: blur(18px);
}

.accessibility-panel[hidden] {
    display: none;
}

.accessibility-panel button {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(27, 36, 110, 0.12);
    border-radius: 999px;
    color: #101a4f;
    background: #f8fafc;
    cursor: pointer;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.accessibility-panel button:hover,
.accessibility-panel button.is-active {
    color: #ffffff;
    background: var(--brand-secondary);
    border-color: var(--brand-secondary);
    transform: translateY(-1px);
}

.header-client {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 11px;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--brand-secondary), var(--brand-blue-light));
}

.city-chip,
.nav-toggle {
    min-height: 38px;
    padding: 7px 10px;
    gap: 6px;
    font-size: 0.8rem;
}

.nav-toggle {
    width: 38px;
}

.header-whatsapp {
    display: none;
}

html.a11y-contrast {
    --brand-primary: #fff200;
    --brand-secondary: #003cff;
    --brand-blue-deep: #000000;
    --brand-blue-light: #005dff;
    --ink: #ffffff;
    --muted: #f8fafc;
    --line: rgba(255, 255, 255, 0.48);
    background: #000000;
}

html.a11y-contrast body,
html.a11y-contrast .site-header,
html.a11y-contrast .page-content,
html.a11y-contrast .quick-access,
html.a11y-contrast .local-company,
html.a11y-contrast .final-cta,
html.a11y-contrast .site-footer {
    color: #ffffff;
    background: #000000;
}

html.a11y-contrast .site-nav a,
html.a11y-contrast .nav-dropdown-toggle,
html.a11y-contrast .city-chip,
html.a11y-contrast .header-client,
html.a11y-contrast .accessibility-toggle,
html.a11y-contrast .accessibility-panel button {
    color: #ffffff;
    background: #003cff;
    border-color: #ffffff;
}

html.a11y-contrast .accessibility-panel {
    background: #000000;
    border-color: #ffffff;
}

html.a11y-contrast p,
html.a11y-contrast li,
html.a11y-contrast span,
html.a11y-contrast .plan-card p,
html.a11y-contrast .plan-card li {
    color: #ffffff;
}

html.a11y-contrast .btn-primary,
html.a11y-contrast .accessibility-panel button.is-active {
    color: #000000;
    background: #fff200;
    border-color: #fff200;
    box-shadow: none;
}

html.a11y-reduced-motion *,
html.a11y-reduced-motion *::before,
html.a11y-reduced-motion *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
}

.hero {
    position: relative;
    min-height: 500px;
    padding: 100px 0;
    max-height: none;
    overflow: hidden;
    isolation: isolate;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(180deg, #1b246e 0%, rgba(27, 36, 110, 0.4) 40%, transparent 80%),
        radial-gradient(at bottom left, #080D32 0%, rgb(20, 34, 141) 53%);
    z-index: 0;
}

.hero-mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-mesh .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.7;
    will-change: transform;
}

.blob.b1 {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(27, 36, 110, 0.8) 0%, transparent 70%);
    top: -160px;
    right: 5%;
    animation: float1 18s ease-in-out infinite;
}

.blob.b2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(133, 194, 72, 0.28) 0%, transparent 70%);
    bottom: -200px;
    left: -80px;
    animation: float2 22s ease-in-out infinite;
}

.blob.b3 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(44, 183, 223, 0.4) 0%, transparent 70%);
    top: 30%;
    left: 40%;
    opacity: 0.45;
    animation: float3 25s ease-in-out infinite;
}

@keyframes float1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-40px, 30px) scale(1.1);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -40px) scale(0.92);
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, 30px) scale(1.05);
    }
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 0%, transparent 80%);
}

.hero-grid::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image:
        radial-gradient(circle at center, black 0%, transparent 60%),
        radial-gradient(circle at center, black 0%, transparent 60%),
        radial-gradient(circle at center, black 0%, transparent 60%);
    -webkit-mask-image:
        radial-gradient(circle at center, black 0%, transparent 60%),
        radial-gradient(circle at center, black 0%, transparent 60%),
        radial-gradient(circle at center, black 0%, transparent 60%);
    mask-size: 400px 400px, 300px 300px, 350px 350px;
    -webkit-mask-size: 400px 400px, 300px 300px, 350px 350px;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    animation: lightRoam 15s infinite ease-in-out alternate;
}

@keyframes lightRoam {
    0% {
        mask-position: 10% 20%, 80% 80%, 50% 50%;
        -webkit-mask-position: 10% 20%, 80% 80%, 50% 50%;
    }

    50% {
        mask-position: 40% 60%, 20% 40%, 80% 10%;
        -webkit-mask-position: 40% 60%, 20% 40%, 80% 10%;
    }

    100% {
        mask-position: 80% 20%, 10% 90%, 30% 70%;
        -webkit-mask-position: 80% 20%, 10% 90%, 30% 70%;
    }
}

.hero-orb {
    position: absolute;
    z-index: 1;
    border-radius: 999px;
    filter: blur(18px);
    pointer-events: none;
}

.hero-orb-a {
    right: 8%;
    top: 16%;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(44, 183, 223, 0.32), transparent 68%);
}

.hero-orb-b {
    left: 4%;
    bottom: 0;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(133, 194, 72, 0.18), transparent 70%);
}

.hero-inner {
    position: relative;
    z-index: 10;
    min-height: 500px;
    max-height: none;
    height: auto;
    padding: 80px 0;
}

.hero-copy {
    width: min(660px, 100%);
    padding-top: 74px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    color: #e7faff;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(133, 194, 72, 0.28);
    border-radius: 999px;
    backdrop-filter: blur(16px);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 54px;
}

.hero-kicker span {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--brand-primary);
}

.hero-kicker span::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 50%;
    border: 1px solid var(--brand-primary);
    animation: ripple 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.hero h1 {
    font-size: clamp(1.8rem, 3vw, 3.2rem);
    text-shadow: 0 18px 46px rgba(0, 0, 0, 0.32);
    margin: 0;
}

.hero-title-rotator {
    position: relative;
    display: grid;
}

.hero-title-rotator span {
    grid-area: 1/1;
    opacity: 0;
    animation: titleRotate 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.hero-title-rotator span:nth-child(2) {
    animation-delay: 5s;
}

@keyframes titleRotate {

    0%,
    5% {
        opacity: 0;
        transform: translateY(15px) scale(0.98);
    }

    10%,
    45% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    50%,
    100% {
        opacity: 0;
        transform: translateY(-15px) scale(1.02);
    }
}

.hero p {
    color: rgba(232, 241, 255, 0.82);
    margin-top: 18px;
}

.hero-media {
    z-index: 3;
    right: max(22px, calc((100vw - 1180px) / 2 - 18px));
    bottom: 12px;
    width: min(45vw, 560px);
    height: 820px;
    display: grid;
    place-items: end center;
    perspective: 1100px;
    transform-style: preserve-3d;
    transform: translate3d(var(--stage-x, 0), var(--stage-y, 0), 0);
    transition: transform 220ms ease-out;
}

.hero-mascot {
    position: relative;
    z-index: 2;
    max-height: 750px;
    width: 100%;
    height: auto;
    object-fit: contain;
    overflow: visible;
}

.avatar__torso {
    transform-box: fill-box;
    transform-origin: center bottom;
    animation: torso-breathe 3.8s ease-in-out infinite;
}

.avatar__arm-left {
    transform-origin: 485px 820px;
    animation: arm-left 3.2s ease-in-out infinite;
}

.avatar__arm-right {
    transform-origin: 1080px 820px;
    animation: arm-right 3.45s ease-in-out infinite;
}

.avatar__head {
    transform-origin: 782px 875px;
    animation: head-idle 4.6s ease-in-out infinite;
}

.hero-media.is-reacting .avatar__arm-left {
    animation: celebrate-left .62s ease-in-out 2;
}

.hero-media.is-reacting .avatar__arm-right {
    animation: celebrate-right .62s ease-in-out 2;
}

.hero-media.is-reacting .avatar__head {
    animation: head-react .62s ease-in-out 2;
}

@keyframes torso-breathe {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-4px) scale(1.006, 1.012);
    }
}

@keyframes arm-left {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(-1.45deg) translate(-3px, -2px);
    }
}

@keyframes arm-right {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(1.35deg) translate(3px, -3px);
    }
}

@keyframes head-idle {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    35% {
        transform: translate(-2px, -5px) rotate(-.7deg);
    }

    70% {
        transform: translate(2px, -3px) rotate(.65deg);
    }
}

@keyframes celebrate-left {

    0%,
    100% {
        transform: rotate(0);
    }

    50% {
        transform: rotate(-3.2deg) translateY(-7px);
    }
}

@keyframes celebrate-right {

    0%,
    100% {
        transform: rotate(0);
    }

    50% {
        transform: rotate(3.2deg) translateY(-7px);
    }
}

@keyframes head-react {

    0%,
    100% {
        transform: rotate(0);
    }

    50% {
        transform: translateY(-7px) rotate(1.4deg);
    }
}

.hero-floating-card {
    position: absolute;
    z-index: 4;
    width: 210px;
    padding: 16px;
    border-radius: 18px;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(27, 36, 110, 0.85) 0%, rgba(8, 13, 50, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(22px);
    transform-style: preserve-3d;
}

.hero-floating-card span {
    display: block;
    color: var(--brand-primary);
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-floating-card strong {
    display: block;
    margin-top: 4px;
    font-size: 1.22rem;
    line-height: 1.12;
}

.hero-floating-card small {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.68);
    font-weight: 700;
}

.hero-card-speed {
    left: 0;
    top: 150px;
    animation: floatCardSpeed 7.6s ease-in-out infinite;
}

@keyframes floatCardSpeed {

    0%,
    100% {
        transform: rotateY(16deg) rotateX(4deg) translateZ(56px) translateY(0px);
    }

    50% {
        transform: rotateY(16deg) rotateX(4deg) translateZ(56px) translateY(-14px);
    }
}

.hero-card-status {
    right: 0;
    top: 245px;
    animation: floatCardStatus 8.8s ease-in-out infinite;
    z-index: 1
}

@keyframes floatCardStatus {

    0%,
    100% {
        transform: rotateY(-18deg) rotateX(5deg) translateZ(76px) translateY(0px);
    }

    50% {
        transform: rotateY(-18deg) rotateX(5deg) translateZ(76px) translateY(14px);
    }
}

.hero-card-tv {
    left: 38px;
    bottom: 72px;
    animation: floatCardTv 9.4s ease-in-out infinite;
}

@keyframes floatCardTv {

    0%,
    100% {
        transform: rotateY(10deg) rotateX(-3deg) translateZ(42px) translateY(0px);
    }

    50% {
        transform: rotateY(10deg) rotateX(-3deg) translateZ(42px) translateY(-14px);
    }
}

.service-strip {
    padding: 14px 28px;
    background: linear-gradient(90deg, var(--brand-primary), #d7ff69 46%, var(--cyan));
}

@keyframes mascotFloat {

    0%,
    100% {
        transform: translateY(0) rotateZ(-1deg);
    }

    50% {
        transform: translateY(-16px) rotateZ(1deg);
    }
}

@keyframes ringSpin {
    0% {
        transform: rotateX(62deg) rotateZ(-12deg) translateZ(-58px);
    }

    100% {
        transform: rotateX(62deg) rotateZ(348deg) translateZ(-58px);
    }
}

.quick-access {
    position: relative;
    padding: 92px 0;
    background:
        radial-gradient(circle at 8% 8%, rgba(133, 194, 72, 0.14), transparent 28%),
        radial-gradient(circle at 92% 12%, rgba(36, 51, 148, 0.12), transparent 30%),
        #f6f9fd;
}

.self-service-shell {
    position: relative;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.self-service-shell::before {
    content: "";
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(133, 194, 72, 0.15), transparent 70%);
    pointer-events: none;
    z-index: 0;
}



.shortcut-grid {
    position: relative;
    z-index: 1;
}

.shortcut-card {
    border: 1px solid rgba(27, 36, 110, 0.08);
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 251, 255, 0.8));
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
    transform-style: preserve-3d;
}

.shortcut-card:hover {
    transform: translateY(-8px);
    border-color: rgba(133, 194, 72, 0.35);
    box-shadow: 0 28px 60px rgba(27, 36, 110, 0.14);
}

.about-band {
    background:
        radial-gradient(circle at 12% 20%, rgba(133, 194, 72, 0.2), transparent 30%),
        linear-gradient(135deg, #0c1e54 0%, #102f78 58%, #0e7f94 100%);
}

.value-card,
.plan-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 24px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

.plan-grid {
    padding: 0 0 18px;
    margin: 0;
    scroll-padding-inline: 0;
}

.plans-carousel-wrapper {
    position: relative;
    padding: 0 54px;
    overflow: visible;
}

.carousel-nav {
    position: absolute;
    top: calc(50% - 12px);
    transform: translateY(-50%);
    z-index: 20;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--brand-primary);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(125, 196, 20, 0.25);
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.carousel-nav:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 24px rgba(125, 196, 20, 0.4);
    background: #6ab00a;
}

.carousel-nav.prev {
    left: 0;
}

.carousel-nav.next {
    right: 0;
}

.plan-grid::-webkit-scrollbar {
    display: none;
}

.value-card {
    border-radius: 24px;
    transform-style: preserve-3d;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 26px 60px rgba(0, 0, 0, 0.14);
}

.plan-card {
    flex: 0 0 calc(33.333% - 14px);
    scroll-snap-align: start;
    border-radius: 24px;
    transform-style: preserve-3d;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background:
        radial-gradient(circle at 14% 0%, rgba(255, 255, 255, 0.15), transparent 32%),
        radial-gradient(circle at 100% 100%, rgba(44, 183, 223, 0.12), transparent 36%),
        linear-gradient(180deg, #1b246e 0%, #14228d 48%, #080d32 100%),
        radial-gradient(at bottom left, #080d32 0%, #14228d 53%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        inset 0 -86px 120px rgba(2, 6, 23, 0.28);
    transition: transform 260ms ease, box-shadow 260ms ease;
    color: #ffffff;
    padding: 32px;
}

.plan-card h3 {
    color: #ffffff;
    font-size: 4.8rem;
    font-weight: 900;
    margin: 4px 0 16px;
    display: flex;
    align-items: baseline;
    gap: 8px;
    line-height: 0.9;
}

.plan-card h3 .speed-unit {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--brand-primary);
    text-transform: uppercase;
}

.plan-card .plan-price {
    align-items: flex-start;
}

.plan-card .plan-price strong {
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 3.6rem;
    line-height: 0.9;
    font-weight: 800;
}

.plan-card .plan-price .price-row {
    display: flex;
    align-items: flex-start;
}

.plan-card .plan-price .currency {
    font-size: 0.85rem;
    margin-top: 2px;
    margin-right: 4px;
    color: rgba(255, 255, 255, 0.7);
}

.plan-card .plan-price .cents {
    font-size: 1rem;
    margin-top: 2px;
    margin-left: 2px;
    line-height: 1;
}

.plan-card .plan-price .month {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    margin-top: 4px;
    line-height: 1;
}

.plan-card .plan-category {
    color: #ffffff;
}

.plan-card p,
.plan-card .plan-price span,
.plan-card li {
    color: rgba(255, 255, 255, 0.82);
}

.plan-card.is-highest-mega {
    z-index: 10;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        inset 0 -90px 124px rgba(2, 6, 23, 0.3);
    border-color: rgba(133, 194, 72, 0.42);
    background:
        radial-gradient(circle at 12% 0%, rgba(133, 194, 72, 0.22), transparent 34%),
        radial-gradient(circle at 100% 100%, rgba(44, 183, 223, 0.14), transparent 36%),
        linear-gradient(180deg, #20348d 0%, #14228d 42%, #080d32 100%);
}

.plan-card:hover,
.plan-card.is-highest-mega:hover {
    transform: rotateX(1deg);
    border-color: var(--brand-primary);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.24),
        inset 0 -90px 124px rgba(2, 6, 23, 0.34);
}

@media (max-width: 1160px) {
    .site-nav {
        background: rgba(255, 255, 255, 0.96);
    }

    .site-nav a {
        color: #172554;
    }

    .hero-media {
        width: min(48vw, 500px);
    }
}

@media (max-width: 991px) {
    .plan-card {
        flex: 0 0 85%;
    }

    .plans-carousel-wrapper {
        padding: 0;
    }

    .carousel-nav {
        display: none;
    }

    .plan-card.is-highest-mega {
        /* No scaling */
    }

    .plan-card:hover,
    .plan-card.is-highest-mega:hover {
        transform: rotateX(1deg);
    }

    .plan-title {
        font-size: 2rem;
    }

    .admin-mobile-toggle {
        display: block;
    }

    .admin-body {
        display: block;
    }

    .admin-sidebar {
        position: fixed;
        top: 0;
        left: -280px;
        width: 270px;
        height: 100vh;
        z-index: 1000;
        padding: 24px;
        transition: transform 0.3s ease;
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .admin-sidebar.is-open {
        transform: translateX(280px);
    }

    .admin-main {
        padding: 16px;
    }

    .admin-form.grid-two {
        grid-template-columns: 1fr;
    }

    .admin-grid,
    .admin-actions-grid,
    .dashboard-charts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .site-header {
        height: 72px;
        padding: 8px 14px;
    }

    .brand {
        padding: 0;
    }

    .brand img {
        width: 178px;
    }

    .header-client,
    .header-whatsapp {
        display: none;
    }

    .city-chip,
    .nav-toggle,
    .accessibility-toggle {
        color: #ffffff;
        background: rgba(27, 36, 110, 0.88);
        border-color: rgba(255, 255, 255, 0.14);
    }

    .hero {
        min-height: 500px;
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .hero-inner {
        min-height: auto;
        height: auto;
        order: 1;
    }

    .hero-inner {
        padding: 0px;
    }

    .hero-copy {
        padding-top: 0;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero-actions.mobile-hidden {
        display: none;
    }

    .hero-media {
        position: relative;
        order: 2;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: 480px;
        height: auto;
        margin-left: auto;
        margin-right: auto;
        margin-top: auto !important;
        opacity: 1;
        zoom: unset;
        margin-bottom: -80px !important;
        z-index: 1;
    }

    .hero-floating-card {
        top: auto !important;
        bottom: 40px !important;
        left: 20px !important;
        right: auto !important;
        width: 170px;
        z-index: 10;
        opacity: 0;
        animation: mobileCardFade 12s infinite !important;
        pointer-events: none;
    }

    .hero-card-speed {
        animation-delay: 0s !important;
    }

    .hero-card-status {
        animation-delay: 4s !important;
    }

    .hero-card-tv {
        animation-delay: 8s !important;
    }

    @keyframes mobileCardFade {
        0% {
            opacity: 0;
            transform: translateY(15px);
        }

        4% {
            opacity: 1;
            transform: translateY(0);
        }

        29% {
            opacity: 1;
            transform: translateY(0);
        }

        33%,
        100% {
            opacity: 0;
            transform: translateY(-15px);
        }
    }

    .hero-mascot {
        max-height: 420px;
    }

    .self-service-shell {
        padding: 22px;
        border-radius: 22px;
    }

    .self-service-heading {
        align-items: stretch;
        flex-direction: column;
    }
}

@media (max-width: 430px) {
    .brand img {
        width: 122px;
    }

    .hero h1 {
        font-size: 1.35rem;
    }
}

/* =====================================================
   SEÇÃO EMPRESA LOCAL
===================================================== */
.local-company {
    position: relative;
    padding: 90px 10px;
    text-align: left;
    overflow: hidden;
    background: linear-gradient(135deg, #8dc830 0%, var(--brand-primary) 50%, #659f10 100%);
    box-shadow: inset 0 20px 40px rgba(0, 0, 0, 0.05), inset 0 -20px 40px rgba(0, 0, 0, 0.05);
}

.local-company::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 85%, rgba(29, 43, 120, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.local-company>* {
    position: relative;
    z-index: 2;
}

.local-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(29, 43, 120, .3);
    color: var(--brand-secondary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.local-badge span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-secondary);
    animation: pulseLocal 2s infinite;
}

@keyframes pulseLocal {
    0% {
        box-shadow: 0 0 0 0 rgba(29, 43, 120, .5);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(29, 43, 120, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(29, 43, 120, 0);
    }
}

.local-title {
    font-size: 3rem;
    line-height: .95;
    font-weight: 900;
    letter-spacing: -2px;
    color: var(--brand-secondary);
    margin: 0;
}

.local-company h2,
.local-company .eyebrow {
    color: var(--brand-secondary);
}

.local-title strong {
    display: block;
    color: var(--brand-secondary);
}

.local-description {
    max-width: 850px;
    margin: 28px 0 0;
    font-size: 18px;
    line-height: 1.9;
    color: var(--brand-secondary) !important;
}

.local-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 40px;
    position: relative;
}

.local-card {
    position: relative;
    padding: 14px;
    border-radius: 28px;
    overflow: hidden;
    background:
        linear-gradient(180deg, #1b246e 0%, #14228d 48%, #080d32 100%),
        radial-gradient(at bottom left, #080d32 0%, #14228d 53%);
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: 0 24px 54px rgba(8, 13, 50, .24), inset 0 1px 0 rgba(255, 255, 255, .16);
    transition: transform .4s ease, box-shadow .4s ease;
}

.local-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .18), transparent 35%);
    pointer-events: none;
}

.local-card::after {
    content: '';
    position: absolute;
    width: 240px;
    height: 240px;
    right: -80px;
    top: -80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .08), transparent 70%);
    pointer-events: none;
}

.local-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 28px 70px rgba(8, 13, 50, .32), 0 0 28px rgba(133, 194, 72, .2);
}

.local-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .05));
    border: 1px solid rgba(255, 255, 255, .12);
    color: #ffffff;
    font-size: 22px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.local-card h3 {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    color: var(--brand-primary);
    letter-spacing: .2px;
}

.local-highlight {
    margin-top: 10px;
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -.5px;
    line-height: 1;
}

.local-card p {
    margin: 8px 0 0;
    font-size: 14px;
    color: rgba(255, 255, 255, .7);
    line-height: 1.5;
}

@keyframes floatUp {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-14px);
    }
}

@keyframes floatDown {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(14px);
    }
}

.local-card:nth-child(1) {
    animation: floatUp 8s ease-in-out infinite;
}

.local-card:nth-child(2) {
    animation: floatDown 9s ease-in-out infinite;
}

.local-card:nth-child(3) {
    animation: floatUp 10s ease-in-out infinite;
}

@media(max-width: 991px) {
    .local-company {
        padding: 90px 20px;
    }

    .local-cards {
        display: grid;
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .local-card {
        /*padding: 18px 20px;*/
        display: grid;
        grid-template-columns: 58px 1fr;
        grid-template-rows: auto auto 1fr;
        gap: 0 16px;
        align-items: start;
        animation: none !important;
        width: 80vw;
    }

    .local-icon {
        grid-column: 1;
        grid-row: 1 / 4;
        margin: 0;
    }

    .local-card h3 {
        grid-column: 2;
        grid-row: 1;
        font-size: 16px;
        text-align: left;
    }

    .local-highlight {
        grid-column: 2;
        grid-row: 2;
        margin-top: 4px;
        font-size: 22px;
        text-align: left;
    }

    .local-card p {
        grid-column: 2;
        grid-row: 3;
        margin: 6px 0 0;
        font-size: 13.5px;
        text-align: left;
    }

    .local-card:nth-child(even) {
        margin-left: 32px;
    }

    .coverage-list {
        gap: 20px;
    }

    .local-title {
        font-size: 52px;
    }

    .local-description {
        font-size: 16px;
    }
}

/* =====================================================
   PLANOS TABS DESIGN SYSTEM
===================================================== */
.plans-design-system {
    margin-top: 40px;
}

.plans-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.plans-tab-btn {
    padding: 12px 28px;
    border-radius: 999px;
    border: 1px solid rgba(27, 36, 110, 0.1);
    background: #ffffff;
    color: var(--brand-secondary);
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.plans-tab-btn:hover {
    background: rgba(133, 194, 72, 0.08);
    transform: translateY(-2px);
}

.plans-tab-btn.active {
    background: var(--brand-primary);
    color: var(--brand-secondary);
    border-color: var(--brand-primary);
    box-shadow: 0 10px 24px rgba(133, 194, 72, 0.25);
}

.plans-tab-content .tab-pane {
    display: none;
    animation: fadeInTab 0.4s ease forwards;
}

.plans-tab-content .tab-pane.active {
    display: flex;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================================
   CITY MODAL REDESIGN
===================================================== */
.styled-select {
    width: 100%;
    padding: 14px 20px;
    appearance: none;
    background: #f6f9fd;
    border: 1px solid rgba(27, 36, 110, 0.1);
    border-radius: 12px;
    font-size: 16px;
    color: #1b246e;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.styled-select:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(133, 194, 72, 0.2);
}

.custom-select-wrapper {
    position: relative;
    margin-bottom: 16px;
}

.select-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #1b246e;
    pointer-events: none;
}

.city-selection-box {
    margin: 24px 0;
    display: flex;
    flex-direction: column;
}

.location-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 16px;
    gap: 16px;
}

.location-divider span {
    font-size: 14px;
    color: #7b88a8;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.btn-location-blue {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: #243394;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-location-blue:hover {
    background: #1b246e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(27, 36, 110, 0.2);
    color: #ffffff;
}

/* =====================================================
   NEON PULSE EFFECT FOR CITY CHIP
===================================================== */
@keyframes neonPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(44, 183, 223, 0.7);
        border-color: rgba(44, 183, 223, 0.8);
    }

    50% {
        box-shadow: 0 0 15px 5px rgba(44, 183, 223, 0.4);
        border-color: rgba(44, 183, 223, 0.4);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(44, 183, 223, 0);
        border-color: rgba(27, 36, 110, 0.1);
    }
}

.city-chip.neon-pulse-active {
    animation: neonPulse 1.5s ease-out 2;
    background: rgba(255, 255, 255, 0.95);
    color: #1b246e;
}

/* =====================================================
   PLAN CUSTOMIZATION MODAL
===================================================== */

.modal-plan {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms ease;
}

.modal-plan-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 20, 55, 0.85);
    backdrop-filter: blur(8px);
}

.modal-plan:not([hidden]) {
    opacity: 1;
    pointer-events: auto;
}

.modal-plan-content {
    position: relative;
    z-index: 1001;
    width: 100%;
    max-width: 960px;
    background: #ffffff;
    border-radius: var(--radius);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2), 0 0 30px rgba(125, 196, 20, 0.25);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateY(20px) scale(0.98);
    transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
    max-height: calc(100vh - 40px);
}

.modal-plan:not([hidden]) .modal-plan-content {
    transform: translateY(0) scale(1);
}

.modal-plan-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    background: #fff;
    overflow-y: auto;
}

.modal-plan-form-area {
    padding: 40px;
    overflow-y: auto;
}

.modal-plan-promo-area {
    background: var(--brand-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.promo-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.promo-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    mix-blend-mode: lighten;
    padding-bottom: 30%;
}

.promo-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(7, 20, 55, 0.95), transparent);
    color: #fff;
    text-align: center;
}

.promo-content h3 {
    color: var(--brand-primary);
    font-size: 2rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 900;
}

.promo-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.modal-title {
    margin: 10px 0 5px;
    font-size: 2rem;
    color: var(--navy);
}

.modal-price {
    font-size: 1.4rem;
    color: var(--brand-primary);
    font-weight: 800;
    margin-bottom: 25px;
}

.plan-capture-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.plan-capture-form .form-group {
    margin-bottom: 18px;
}

.plan-capture-form .btn-submit-lead {
    margin-top: 15px;
    width: 100%;
}

.customizations-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.customization-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    padding: 20px 15px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fdfdfd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.customization-item:hover {
    border-color: var(--brand-primary);
    background: #fcfdfa;
}

/* Fallback for browsers that do not support :has() */
.customization-item.selected,
.customization-item:has(input[type="checkbox"]:checked) {
    border-color: var(--brand-primary);
    background: #f6faef;
    box-shadow: 0 4px 12px rgba(133, 194, 72, 0.15);
}

.customization-item input[type="checkbox"] {
    display: none;
}

.customization-check-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    color: var(--brand-primary);
    font-size: 1.2rem;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease;
}

.customization-item.selected .customization-check-icon,
.customization-item:has(input[type="checkbox"]:checked) .customization-check-icon {
    opacity: 1;
    transform: scale(1);
}

.customization-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 4px;
    background: transparent;
    margin-bottom: 5px;
}

i.customization-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--navy);
}

.customization-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.customization-text span {
    font-weight: 600;
    color: var(--navy);
    font-size: 1.05rem;
}

.customization-text small {
    color: var(--brand-primary);
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 2px;
}

.customization-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.channels-grid {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
    gap: 8px;
    padding: 15px;
    margin-top: 15px;
    background: #fbfbfb;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.channels-grid.open {
    display: grid;
    animation: slideDown 0.2s ease-out;
}

.channel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 6px;
    font-size: 0.7rem;
    color: var(--color-gray-600);
    text-align: center;
    min-height: 40px;
}

.channel-item img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.addon-row-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 12px;
}



.addon-logo-chip img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.addon-logo-chip i {
    font-size: 1.4rem;
    color: var(--navy);
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
}

.addon-row-title>span:last-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.addon-row-title>span:last-child>span {
    color: var(--color-gray-500);
    font-size: 0.9rem;
}

.package-item-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.package-item-grid .check-row {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--line);
    padding: 15px;
    border-radius: var(--radius);
    background: #fdfdfd;
}

.plan-capture-form label {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 0.9rem;
}

.plan-capture-form input,
.plan-capture-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--soft);
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.plan-capture-form input:focus,
.plan-capture-form select:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(133, 194, 72, 0.15);
}

.customizations-section {
    margin: 25px 0;
    padding: 20px;
    background: rgba(133, 194, 72, 0.05);
    border: 1px solid rgba(133, 194, 72, 0.2);
    border-radius: var(--radius);
}

.customizations-section h3 {
    margin: 0 0 5px;
    font-size: 1.1rem;
    color: var(--navy);
}

.customizations-group {
    margin-bottom: 15px;
}

.customizations-group-title {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--brand-secondary);
    text-transform: uppercase;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 5px;
}

.customizations-desc {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 15px;
}

.customizations-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.customization-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.customization-item input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    accent-color: var(--brand-primary);
}

.customization-item span {
    font-size: 0.95rem;
    color: var(--navy);
    font-weight: 600;
}

.customization-item small {
    display: block;
    font-size: 0.8rem;
    color: var(--muted);
}

.customization-item.is-disabled {
    opacity: 0.42;
    cursor: not-allowed;
    border-color: var(--line);
    background: #f4f6f8;
    box-shadow: none;
    filter: grayscale(0.25);
}

.customization-item.is-disabled:hover {
    border-color: var(--line);
    background: #f4f6f8;
}

.customizations-list[data-customization-type="app"] {
    grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
    gap: 8px;
}

.customizations-list[data-customization-type="app"] .customization-item {
    min-height: 106px;
    padding: 12px 8px;
    gap: 6px;
    border-radius: 10px;
}

.customizations-list[data-customization-type="app"] .customization-check-icon {
    top: 8px;
    right: 8px;
    font-size: 0.9rem;
}

.customizations-list[data-customization-type="app"] .customization-logo {
    width: 34px;
    height: 34px;
    margin-bottom: 2px;
}

.customizations-list[data-customization-type="app"] i.customization-logo {
    font-size: 1.35rem;
}

.customizations-list[data-customization-type="app"] .customization-text span {
    font-size: 0.78rem;
    line-height: 1.15;
}

.customizations-list[data-customization-type="app"] .customization-text small {
    font-size: 0.72rem;
}

.btn-submit-lead {
    font-size: 1.1rem;
    padding: 15px;
    margin-top: 10px;
}

.form-feedback {
    margin-top: 15px;
    text-align: center;
    font-weight: 600;
}

.form-feedback.error {
    color: var(--coral);
}

.form-feedback.success {
    color: var(--brand-primary);
}

/* WIZARD E ETAPAS DO MODAL */
.wizard-step {
    display: none;
    animation: fadeInStep 0.3s ease;
}

.wizard-step.active {
    display: block;
}

@keyframes fadeInStep {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wizard-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.wizard-actions-left,
.wizard-actions-right {
    display: flex;
    gap: 10px;
}

.btn-wizard-customize {
    color: var(--brand-secondary);
    border-color: var(--brand-secondary);
}

.promo-brand-logo {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    z-index: 10;
}

.wizard-step-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed var(--line);
}

.wizard-step-header h3 {
    margin: 0 0 5px;
    font-size: 1.2rem;
    color: var(--navy);
}

.wizard-step-header p {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0;
}

.wizard-progress {
    font-size: 0.85rem;
    color: var(--brand-primary);
    font-weight: 800;
    margin-bottom: 15px;
    display: inline-block;
    padding: 4px 10px;
    background: rgba(125, 196, 20, 0.15);
    border-radius: 20px;
}

@media (max-width: 768px) {
    .modal-plan-grid {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column-reverse;
    }

    .modal-plan-promo-area {
        height: 200px;
    }

    .promo-content h3 {
        font-size: 1.5rem;
        line-height: 1.1;
    }

    .plan-capture-form .form-row {
        grid-template-columns: 1fr;
    }

    .customizations-list {
        grid-template-columns: 1fr;
    }

    .modal-plan-form-area {
        padding: 25px;
    }

    .self-service-shell {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .self-service-image-area {
        flex: 0 0 auto;
        max-width: 350px;
    }

    .shortcut-grid {
        grid-template-columns: 1fr;
    }

    .content-showcase p {
        margin-bottom: 20px;
    }
}

/* ==========================================================================
   Central de Atendimento (Chat)
   ========================================================================== */
.atendimento-body {
    margin: 0;
    padding: 0;
    background: #edf2f7;
    height: 100vh;
    display: flex;
    font-family: var(--font-family, sans-serif);
}

.chat-app-container {
    display: flex;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.chat-nav {
    width: 60px;
    background: #040d24;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.chat-nav-top,
.chat-nav-bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    width: 100%;
}

.chat-nav a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.chat-nav a:hover,
.chat-nav a.active {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.chat-sidebar {
    width: 320px;
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

.chat-sidebar-header {
    padding: 16px;
    background: #071437;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-sidebar-header .chat-logo {
    height: 24px;
}

.chat-sidebar-header .btn-logout {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
}

.chat-sidebar-header .btn-logout:hover {
    color: #ffffff;
}

.chat-list {
    flex: 1;
    overflow-y: auto;
}

.chat-item {
    display: flex;
    padding: 16px;
    border-bottom: 1px solid var(--line);
    cursor: pointer;
    transition: background 0.2s;
}

.chat-item:hover {
    background: #f8fafc;
}

.chat-item.active {
    background: #f1f5f9;
}

.chat-item.unread .chat-name-row strong {
    font-weight: 900;
}

.chat-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #64748b;
    display: grid;
    place-items: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.chat-info {
    flex: 1;
    min-width: 0;
}

.chat-name-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.chat-name-row strong {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.95rem;
    color: #0f172a;
}

.chat-time {
    font-size: 0.75rem;
    color: #94a3b8;
}

.chat-msg-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-msg-row p {
    margin: 0;
    font-size: 0.85rem;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chat-badge {
    background: var(--brand-primary);
    color: #0f172a;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 8px;
}

.chat-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #f8fafc;
}

.chat-main-header {
    padding: 16px 24px;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
}

.chat-user-info {
    display: flex;
    align-items: center;
}

.chat-user-info h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #0f172a;
}

.chat-messages {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-empty-state {
    margin: auto;
    text-align: center;
    color: #94a3b8;
}

.chat-empty-state i {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: 0.5;
}

.message-wrap {
    display: flex;
    flex-direction: column;
    max-width: 75%;
}

.message-wrap.msg-in {
    align-self: flex-start;
}

.message-wrap.msg-out {
    align-self: flex-end;
}

.message-bubble {
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.4;
    position: relative;
    word-wrap: break-word;
}

.msg-in .message-bubble {
    background: #ffffff;
    color: #0f172a;
    border-bottom-left-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.msg-out .message-bubble {
    background: #e0f2fe;
    color: #0c4a6e;
    border-bottom-right-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.message-time {
    font-size: 0.7rem;
    color: inherit;
    opacity: 0.6;
    text-align: right;
    margin-top: 4px;
}

.chat-input-area {
    padding: 16px 24px;
    background: #ffffff;
    border-top: 1px solid var(--line);
}

.chat-input-area form {
    display: flex;
    gap: 12px;
    width: 100%;
}

.chat-input-area input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: 24px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}

.chat-input-area input:focus {
    border-color: var(--brand-primary);
}

.btn-send {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: var(--brand-primary);
    color: #0f172a;
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    transition: transform 0.2s;
}

.btn-send:hover {
    transform: scale(1.05);
}

/* Hero Rotator Wrapper */
.hero-rotator-wrapper {
    display: grid;
    width: 100%;
}

.hero.slide-section {
    grid-area: 1 / 1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s;
    z-index: 1;
    overflow: visible !important;
}

.hero.slide-section.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-global-controls {
    grid-area: 1 / 1;
    align-self: end;
    justify-self: center;
    z-index: 20;
    margin-bottom: 100px;
    display: flex;
    gap: 12px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    padding: 0;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.hero-dot.active {
    background: var(--brand-primary);
    transform: scale(1.2);
}

/* Mesh House Image & Points (Independent Hero Section) */
.house-media {
    position: absolute;
    right: max(12px, calc((100vw - 1180px) / 2 - 40px));
    bottom: -10px;
    width: min(55vw, 680px);
    z-index: 1;
    aspect-ratio: 977 / 650;
    animation: floatHouse 8s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes floatHouse {
    0% {
        transform: translateY(0) rotateY(0deg);
    }

    50% {
        transform: translateY(-12px) rotateY(2deg);
    }

    100% {
        transform: translateY(0) rotateY(0deg);
    }
}

.house-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
}

.mesh-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.fiber-line {
    fill: none;
    stroke: #ccff00;
    stroke-width: 2px;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 4 6;
    animation: fiberFlow 10s linear infinite;
    filter: drop-shadow(0 0 6px #ccff00);
}

@keyframes fiberFlow {
    to {
        stroke-dashoffset: -200;
    }
}

.wireless-line {
    fill: none;
    stroke: rgba(255, 255, 255, 0.45);
    stroke-width: 1.5px;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 0.1 10;
    animation: wirelessFlow 30s linear infinite;
}

@keyframes wirelessFlow {
    to {
        stroke-dashoffset: -500;
    }
}

.mesh-point {
    position: absolute;
    width: 32px;
    height: 32px;
    background: rgba(204, 255, 0, 0.1);
    border: none;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccff00;
    font-size: 14px;
    filter: drop-shadow(0 0 6px rgba(204, 255, 0, 0.6));
}

.mesh-point::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px solid #ccff00;
    animation: ripple 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

.hero-card-mesh {
    right: -2%;
    top: 15%;
    z-index: -1;
    animation: floatCardMesh 8s ease-in-out infinite;
}

@keyframes floatCardMesh {

    0%,
    100% {
        transform: rotateY(-20deg) rotateX(8deg) translateZ(-80px) translateY(0px);
    }

    50% {
        transform: rotateY(-20deg) rotateX(8deg) translateZ(-80px) translateY(-15px);
    }
}

.hero-card-router {
    left: -5%;
    bottom: 20%;
    z-index: 3;
    animation: floatCardRouter 7.5s ease-in-out infinite;
}

@keyframes floatCardRouter {

    0%,
    100% {
        transform: rotateY(16deg) rotateX(4deg) translateZ(80px) translateY(0px);
    }

    50% {
        transform: rotateY(16deg) rotateX(4deg) translateZ(80px) translateY(-14px);
    }
}

@media (max-width: 820px) {
    .house-media {
        position: relative;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
        margin-top: auto !important;
        margin-bottom: -40px !important;
    }

    .hero-global-controls {
        margin-bottom: 90px;
    }
}

@media (max-width: 991px) {
    .hero-card-mesh {
        animation-delay: 0s !important;
        z-index: 10 !important;
    }

    .hero-card-router {
        animation-delay: 6s !important;
        z-index: 10 !important;
    }
}