:root {
    --blue-950: #08243f;
    --blue-900: #0d355c;
    --blue-800: #00457c;
    --blue-700: #005dac;
    --blue-600: #0877d8;
    --blue-100: #eaf5ff;
    --cyan: #2fb6e9;
    --green: #55c85f;
    --green-dark: #31a943;
    --yellow: #ffc400;
    --orange: #ff9f1c;
    --text: #1d2734;
    --muted: #6c7682;
    --line: #e8eef6;
    --soft: #f4f8fc;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(8, 36, 63, .14);
    --shadow-soft: 0 12px 38px rgba(8, 36, 63, .10);
    --radius: 28px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

img,
svg {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 25px rgba(8, 36, 63, .08);
}

.top-logo {
    min-height: 72px;
    display: grid;
    place-items: center;
    padding: 10px 20px;
}

.brand img {
    height: auto;
}

.main-nav {
    background: linear-gradient(90deg, var(--blue-950), var(--blue-800));
    color: var(--white);
}

.nav-wrap {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.home-link {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .16);
}

.home-link svg,
.footer-contact svg,
.whatsapp-float svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-right: auto;
}

.nav-links a {
    font-size: .86rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
    opacity: .92;
    transition: .2s ease;
}

.nav-links a:hover {
    color: var(--yellow);
}

.menu-toggle {
    width: 44px;
    height: 44px;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    border: 0;
    background: transparent;
    color: var(--white);
    cursor: pointer;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    border: 0;
    font-weight: 900;
    letter-spacing: .01em;
    cursor: pointer;
    transition: .22s ease;
    white-space: nowrap;
}

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

.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-700), var(--cyan));
    box-shadow: 0 16px 38px rgba(0, 93, 172, .26);
}

.btn-outline {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .45);
    background: rgba(255, 255, 255, .12);
}

.btn-outline-dark {
    color: var(--blue-900);
    border: 1px solid rgba(8, 36, 63, .16);
    background: var(--white);
}

.btn-green,
.btn-boleto {
    color: var(--white);
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    box-shadow: 0 14px 30px rgba(49, 169, 67, .25);
}

.btn-boleto {
    min-height: 38px;
    padding: 0 24px;
    font-size: .86rem;
}

.hero {
    position: relative;
    min-height: 650px;
    padding: 74px 0 130px;
    color: var(--white);
    background:
        radial-gradient(circle at 82% 12%, rgba(255, 255, 255, .62) 0 2%, transparent 12%),
        radial-gradient(circle at 12% 80%, rgba(255, 255, 255, .22) 0 14%, transparent 28%),
        linear-gradient(135deg, #ffba00 0%, #ffd24a 42%, #ffae00 100%);
    isolation: isolate;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(8, 36, 63, .18), rgba(8, 36, 63, 0)),
        repeating-linear-gradient(120deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .12) 1px, transparent 1px, transparent 34px);
}

.hero-bg-orb {
    position: absolute;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: radial-gradient(circle at 32% 28%, #fff 0 9%, var(--yellow) 22%, #ff7b00 58%, rgba(255, 123, 0, .25) 70%, transparent 72%);
    filter: blur(.2px);
    opacity: .68;
}

.orb-one {
    top: 86px;
    left: 35%;
    width: 150px;
    height: 150px;
}

.orb-two {
    right: -40px;
    bottom: 100px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 480px);
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--blue-700);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .78rem;
    font-weight: 900;
}

.hero .eyebrow {
    color: var(--blue-950);
    background: rgba(255, 255, 255, .55);
    padding: 10px 16px;
    border-radius: 999px;
}

.hero h1 {
    max-width: 680px;
    margin: 22px 0 18px;
    color: var(--blue-950);
    font-size: clamp(2.6rem, 5.4vw, 4.9rem);
    line-height: .92;
    letter-spacing: -.045em;
    font-weight: 950;
    text-transform: none;
}

.hero p {
    max-width: 590px;
    color: rgba(8, 36, 63, .84);
    font-size: 1.18rem;
    line-height: 1.58;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-actions.center {
    justify-content: center;
}

.hero-stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.hero-stats div {
    min-width: 135px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .50);
    border: 1px solid rgba(255, 255, 255, .45);
    box-shadow: 0 12px 35px rgba(8, 36, 63, .08);
}

.hero-stats strong {
    display: block;
    color: var(--blue-950);
    font-size: 1.3rem;
    font-weight: 950;
}

.hero-stats span {
    color: rgba(8, 36, 63, .75);
    font-size: .83rem;
    font-weight: 800;
}

.hero-card {
    position: relative;
    min-height: 465px;
    border-radius: 44px;
    background:
        radial-gradient(circle at 50% 28%, rgba(255, 255, 255, .95), transparent 10%),
        linear-gradient(145deg, rgba(255, 255, 255, .38), rgba(255, 255, 255, .12));
    border: 1px solid rgba(255, 255, 255, .42);
    box-shadow: 0 35px 85px rgba(8, 36, 63, .20);
    backdrop-filter: blur(14px);
    overflow: hidden;
}

.hero-card::before {
    content: "";
    position: absolute;
    width: 255px;
    height: 255px;
    border-radius: 999px;
    top: 84px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle at 45% 35%, var(--yellow), #f58800 50%, rgba(245, 136, 0, .15) 72%, transparent 74%);
    box-shadow: inset 0 0 0 16px rgba(255, 255, 255, .24), 0 28px 60px rgba(8, 36, 63, .20);
}

.hero-card::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 180px;
    left: 50%;
    bottom: 48px;
    transform: translateX(-50%);
    border-radius: 50px 50px 32px 32px;
    background: linear-gradient(135deg, var(--blue-900), var(--blue-600));
    box-shadow: inset 0 14px 0 rgba(255, 255, 255, .12), 0 28px 60px rgba(8, 36, 63, .28);
}

.speed-ring {
    position: absolute;
    z-index: 2;
    top: 126px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-align: center;
    background: conic-gradient(var(--blue-700), var(--cyan), var(--yellow), var(--blue-700));
    padding: 12px;
    color: var(--blue-950);
}

.speed-ring::before {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .94);
}

.speed-ring span,
.speed-ring small {
    position: relative;
    z-index: 1;
    display: block;
}

.speed-ring span {
    font-size: 2.1rem;
    font-weight: 950;
    letter-spacing: -.06em;
}

.speed-ring small {
    margin-top: -38px;
    font-weight: 800;
    font-size: .8rem;
}

.stream-card {
    position: absolute;
    z-index: 4;
    padding: 14px 18px;
    border-radius: 18px;
    color: var(--blue-950);
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 16px 35px rgba(8, 36, 63, .14);
    font-weight: 900;
    border: 1px solid rgba(255, 255, 255, .65);
}

.play-card {
    left: 25px;
    top: 58px;
}

.game-card {
    right: 22px;
    top: 278px;
}

.wifi-card {
    left: 48px;
    bottom: 52px;
}

.hero-wave {
    position: absolute;
    left: -5%;
    right: -5%;
    bottom: -1px;
    height: 130px;
    background: var(--white);
    clip-path: ellipse(56% 42% at 50% 100%);
}

.benefits-section {
    padding: 40px 0 38px;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.benefit-card {
    position: relative;
    padding: 26px 22px;
    border-radius: 26px;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    transition: .22s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.benefit-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background:
        radial-gradient(circle, var(--white) 0 56%, transparent 57%),
        conic-gradient(var(--cyan), var(--blue-700), var(--yellow), var(--cyan));
}

.benefit-icon svg {
    width: 52px;
    height: 52px;
    stroke: var(--yellow);
    fill: none;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-card h2 {
    margin: 0 0 8px;
    color: var(--blue-950);
    font-size: 1.02rem;
    font-weight: 950;
}

.benefit-card p {
    margin: 0;
    color: var(--muted);
    font-size: .91rem;
    line-height: 1.55;
}

.plans-section {
    padding: 60px 0 45px;
    background:
        radial-gradient(circle at 10% 0, rgba(47, 182, 233, .16), transparent 30%),
        linear-gradient(180deg, #eef3f8, #f8fbff);
}

.section-heading {
    text-align: center;
    margin-bottom: 36px;
}

.section-heading h2 {
    margin: 10px 0 10px;
    color: var(--blue-950);
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -.045em;
    font-weight: 950;
}

.section-heading p {
    max-width: 610px;
    margin: 0 auto;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 600;
}

.section-heading.compact {
    margin-bottom: 24px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    align-items: stretch;
}

.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(255, 255, 255, .82);
    box-shadow: var(--shadow-soft);
    transition: .25s ease;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.plan-card.featured {
    border: 2px solid rgba(255, 196, 0, .72);
    transform: translateY(-10px);
}

.plan-card.featured:hover {
    transform: translateY(-16px);
}

.plan-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--blue-950);
    background: var(--yellow);
    font-size: .72rem;
    font-weight: 950;
}

.plan-top {
    padding: 30px 20px 24px;
    text-align: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
}

.plan-card.featured .plan-top {
    background: linear-gradient(135deg, var(--blue-950), var(--blue-600));
}

.plan-top h3 {
    margin: 0;
    font-size: clamp(2.1rem, 3vw, 3rem);
    line-height: 1;
    letter-spacing: -.06em;
    font-weight: 950;
}

.plan-top span {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, .80);
    font-size: .9rem;
    font-weight: 700;
}

.plan-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    padding: 30px 20px 18px;
    color: #4a4f56;
}

.plan-price span {
    margin-top: 10px;
    font-weight: 900;
}

.plan-price strong {
    font-size: clamp(2.8rem, 4vw, 4.2rem);
    line-height: .8;
    letter-spacing: -.07em;
    font-weight: 800;
}

.plan-price small {
    align-self: flex-end;
    margin-bottom: 7px;
    font-weight: 800;
}

.plan-list {
    list-style: none;
    margin: 0;
    padding: 0 28px 22px;
    color: var(--muted);
    font-size: .91rem;
}

.plan-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}

.plan-list svg,
.coverage-list svg,
.router-content li svg {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    stroke: var(--blue-700);
    fill: none;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.plan-button {
    align-self: center;
    min-width: 150px;
    margin-top: auto;
}

.plan-note {
    margin: 16px 0 26px;
    text-align: center;
    color: var(--muted);
    font-size: .75rem;
    font-weight: 700;
}

.plans-disclaimer {
    margin: 30px auto 0;
    text-align: center;
    color: var(--muted);
    font-size: .94rem;
    font-weight: 600;
}


.plan-includes,
.plan-addon-box {
    margin: 0 20px 20px;
    padding: 16px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(8, 119, 216, .06), rgba(47, 182, 233, .03));
    border: 1px solid rgba(8, 119, 216, .10);
}

.plan-includes strong {
    display: block;
    color: var(--blue-950);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.28;
}

.plan-includes p,
.plan-addon-box p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.55;
    font-weight: 600;
}

.plan-includes-label {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--blue-950);
    background: rgba(255, 196, 0, .20);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 900;
}



.content-section {
    padding: 22px 0 56px;
    background: linear-gradient(180deg, #f8fbff, #ffffff);
}

.content-offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.content-offer-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 28px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.content-offer-card.premium {
    border-color: rgba(255, 196, 0, .55);
    box-shadow: 0 24px 72px rgba(8, 36, 63, .16);
}

.content-offer-visual {
    display: grid;
    place-items: center;
    min-height: 560px;
    padding: 22px;
    overflow: hidden;
}

.content-offer-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.content-offer-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
}

.content-offer-description {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
    font-weight: 600;
    min-height: 108px;
}

.content-offer-btn {
    width: 100%;
    margin-top: auto;
}

.coverage-section {
    padding: 46px 0 35px;
    background: var(--white);
}

.coverage-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.coverage-list span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 16px;
    border-radius: 999px;
    color: var(--blue-950);
    background: var(--blue-100);
    border: 1px solid rgba(0, 93, 172, .12);
    font-weight: 900;
}

.router-section {
    padding: 35px 0 80px;
    background: linear-gradient(180deg, var(--white), #f7fbff);
}

.router-grid {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(320px, 1fr);
    align-items: center;
    gap: 66px;
}

.router-visual {
    min-height: 420px;
    display: grid;
    place-items: end center;
    padding: 18px 18px 0;
    border-radius: 42px;
    background:
        radial-gradient(circle at 30% 20%, rgba(47, 182, 233, .16), transparent 28%),
        radial-gradient(circle at 82% 82%, rgba(255, 196, 0, .18), transparent 25%),
        linear-gradient(180deg, #f7fbff, #ffffff);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.router-image {
    width: min(320px, 82%);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 28px 34px rgba(8, 36, 63, .12));
}

.person-card {
    position: relative;
    width: 330px;
    height: 330px;
}

.avatar-head {
    position: absolute;
    width: 86px;
    height: 86px;
    top: 18px;
    left: 122px;
    border-radius: 50%;
    background: linear-gradient(145deg, #f4c8a0, #d98e61);
    box-shadow: inset 0 12px 0 rgba(255, 255, 255, .18);
}

.avatar-head::before {
    content: "";
    position: absolute;
    width: 92px;
    height: 32px;
    top: -8px;
    left: -3px;
    border-radius: 40px 40px 12px 12px;
    background: var(--blue-950);
}

.avatar-body {
    position: absolute;
    width: 180px;
    height: 165px;
    top: 102px;
    left: 76px;
    border-radius: 44px 44px 18px 18px;
    background: linear-gradient(145deg, #eaf5ff, #bfe5fb);
    border: 8px solid rgba(255, 255, 255, .9);
    box-shadow: 0 28px 52px rgba(8, 36, 63, .16);
}

.avatar-body::before,
.avatar-body::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 22px;
    top: 54px;
    background: #bfe5fb;
    border-radius: 999px;
}

.avatar-body::before {
    left: -76px;
    transform: rotate(-24deg);
}

.avatar-body::after {
    right: -76px;
    transform: rotate(24deg);
}

.laptop {
    position: absolute;
    width: 230px;
    height: 125px;
    left: 50px;
    bottom: 28px;
    border-radius: 16px 16px 8px 8px;
    background: linear-gradient(145deg, #d8e2ed, #ffffff);
    box-shadow: 0 25px 45px rgba(8, 36, 63, .15);
}

.laptop::after {
    content: "";
    position: absolute;
    height: 12px;
    left: -18px;
    right: -18px;
    bottom: -12px;
    border-radius: 999px;
    background: #c8d3de;
}

.wifi-signal {
    position: absolute;
    border: 5px solid var(--blue-700);
    border-bottom: 0;
    border-left-color: transparent;
    border-right-color: transparent;
    border-radius: 999px 999px 0 0;
    opacity: .20;
}

.signal-one {
    width: 240px;
    height: 120px;
    left: 45px;
    top: 4px;
}

.signal-two {
    width: 180px;
    height: 90px;
    left: 75px;
    top: 34px;
}

.signal-three {
    width: 120px;
    height: 60px;
    left: 105px;
    top: 65px;
}

.router-content h2,
.cta-card h2,
.error-card h1 {
    margin: 10px 0 12px;
    color: var(--blue-700);
    font-size: clamp(2.2rem, 4vw, 3.7rem);
    letter-spacing: -.06em;
    line-height: .98;
    font-weight: 950;
}

.router-content p,
.cta-card p,
.error-card p {
    margin: 0;
    color: var(--text);
    font-size: 1.25rem;
    line-height: 1.45;
    font-weight: 600;
}

.router-content ul {
    list-style: none;
    margin: 28px 0 28px;
    padding: 0;
    display: grid;
    gap: 14px;
}

.router-content li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 950;
}

.router-content small {
    display: block;
    color: var(--muted);
    line-height: 1.45;
    font-weight: 700;
}

.cta-section {
    padding: 0 0 74px;
    background: #f7fbff;
}

.cta-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 26px;
    align-items: center;
    padding: 38px;
    border-radius: 32px;
    color: var(--white);
    background:
        radial-gradient(circle at 100% 0, rgba(255, 196, 0, .30), transparent 26%),
        linear-gradient(135deg, var(--blue-950), var(--blue-700));
    box-shadow: var(--shadow);
}

.cta-card .eyebrow,
.cta-card h2,
.cta-card p {
    color: var(--white);
}

.cta-card p {
    color: rgba(255, 255, 255, .80);
    font-size: 1rem;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.site-footer {
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-950), var(--blue-900));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    gap: 42px;
    align-items: center;
    padding: 46px 0 38px;
}

.footer-brand p {
    margin: 14px 0 0;
    max-width: 360px;
    color: rgba(255, 255, 255, .78);
    font-size: .92rem;
    line-height: 1.55;
    font-weight: 600;
}

.footer-contract {
    text-align: center;
}

.footer-contract h3,
.footer-contact h3 {
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: .03em;
    font-size: .92rem;
    line-height: 1.35;
    color: var(--white);
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
    color: rgba(255, 255, 255, .86);
    font-weight: 700;
}

.footer-bottom {
    background: #003f78;
    text-align: center;
    padding: 16px 0;
}

.footer-bottom p {
    margin: 0;
    font-size: .86rem;
    font-weight: 850;
}

.footer-bottom strong {
    color: #ff405e;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 60;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    box-shadow: 0 14px 38px rgba(49, 169, 67, .35);
    transition: .22s ease;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.03);
}

.error-page {
    min-height: 62vh;
    padding: 80px 0;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 20% 10%, rgba(255, 196, 0, .18), transparent 24%),
        linear-gradient(180deg, #f7fbff, var(--white));
}

.error-card {
    max-width: 720px;
    padding: 52px 34px;
    text-align: center;
    border-radius: 32px;
    background: var(--white);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}


@media (max-width: 1100px) {
    .nav-wrap {
        gap: 16px;
    }

    .nav-links {
        gap: 18px;
    }

    .nav-links a {
        font-size: .8rem;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
        gap: 30px;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 5vw, 4.3rem);
    }
}

@media (max-width: 1080px) {
    .hero-grid,
    .router-grid {
        grid-template-columns: 1fr;
    }

    .hero-card {
        max-width: 540px;
        width: 100%;
        margin: 0 auto;
    }

    .benefits-grid,
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .plan-card.featured {
        transform: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        margin-inline: auto;
    }

    .footer-brand img {
        margin-inline: auto;
    }

    .footer-contact a {
        justify-content: center;
    }
}

@media (max-width: 820px) {
    .top-logo {
        min-height: 62px;
    }

    .nav-wrap {
        gap: 12px;
    }

    .menu-toggle {
        display: flex;
        margin-left: auto;
    }

    .home-link {
        order: 0;
    }

    .btn-boleto {
        display: none;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--blue-950);
        box-shadow: 0 20px 40px rgba(8, 36, 63, .18);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 18px 24px;
        border-top: 1px solid rgba(255, 255, 255, .10);
    }

    .hero {
        padding-top: 52px;
        min-height: auto;
    }

    .hero h1 {
        font-size: clamp(2.3rem, 14vw, 4.2rem);
    }

    .hero p,
    .router-content p {
        font-size: 1.04rem;
    }

    .hero-card {
        min-height: 390px;
        border-radius: 34px;
    }

    .hero-card::before {
        width: 210px;
        height: 210px;
    }

    .hero-card::after {
        width: 245px;
        height: 150px;
    }

    .speed-ring {
        top: 112px;
        width: 150px;
        height: 150px;
    }

    .speed-ring span {
        font-size: 1.7rem;
    }

    .stream-card {
        font-size: .82rem;
    }

    .plans-section,
    .router-section {
        padding-block: 52px;
    }

    .cta-card {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .benefits-grid,
    .plans-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions,
    .cta-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: 1fr;
    }

    .router-grid {
        gap: 36px;
    }

    .router-visual {
        min-height: 330px;
        overflow: hidden;
    }

    .person-card {
        transform: scale(.82);
    }

    .footer-grid {
        padding: 36px 0 30px;
    }

    .coverage-list {
        align-items: stretch;
        flex-direction: column;
    }

    .coverage-list span {
        justify-content: center;
        text-align: center;
    }
}





@media (max-width: 620px) {
    .plan-includes,
    .plan-addon-box {
        margin-inline: 16px;
    }

    .content-offer-visual {
        min-height: 420px;
        padding: 16px;
    }
}


/* Ajustes finais de alinhamento e responsividade */
@media (max-width: 1080px) {
    .content-offers-grid {
        align-items: stretch;
    }

    .content-offer-description {
        min-height: auto;
    }

    .router-visual {
        max-width: 620px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 820px) {
    .hero h1 {
        text-transform: none;
        letter-spacing: -.035em;
        line-height: 1;
    }

    .content-offer-visual {
        min-height: 460px;
    }

    .router-visual {
        min-height: 360px;
        border-radius: 32px;
    }

    .router-image {
        width: min(280px, 78%);
    }
}

@media (max-width: 620px) {
    .content-offer-visual {
        min-height: 390px;
    }

    .content-offer-body {
        padding: 20px;
    }

    .router-visual {
        min-height: 310px;
        padding: 14px 14px 0;
    }

    .router-image {
        width: min(240px, 82%);
    }
}

/* =========================================================
   Responsividade refinada - Mobile / tablets
   Ajusta banner inicial e Conteúdos e Benefícios
   ========================================================= */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.hero-content,
.section-heading,
.content-offer-card,
.content-offer-body,
.benefit-card,
.router-content,
.cta-card > div {
    min-width: 0;
}

.hero h1,
.section-heading h2,
.router-content h2,
.cta-card h2,
.error-card h1 {
    overflow-wrap: anywhere;
    word-break: normal;
}

.content-offer-visual img,
.router-image,
.hero-card {
    max-width: 100%;
}

@media (max-width: 1080px) {
    .hero {
        padding: 58px 0 118px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .hero-content {
        text-align: center;
    }

    .hero p,
    .hero h1 {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions,
    .hero-stats {
        justify-content: center;
    }

    .content-offers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .content-offer-visual {
        min-height: clamp(330px, 46vw, 480px);
    }

    .content-offer-visual img {
        width: min(100%, 380px);
        height: auto;
        max-height: 430px;
    }
}

@media (max-width: 820px) {
    .hero {
        padding: 42px 0 92px;
    }

    .hero-grid {
        gap: 30px;
    }

    .hero .eyebrow,
    .section-heading .eyebrow,
    .router-content .eyebrow,
    .cta-card .eyebrow {
        font-size: .69rem;
        letter-spacing: .075em;
        line-height: 1.25;
        text-align: center;
    }

    .hero .eyebrow {
        padding: 9px 13px;
        white-space: normal;
    }

    .hero h1 {
        max-width: 100%;
        margin-top: 18px;
        font-size: clamp(2rem, 9.4vw, 3rem);
        line-height: 1.06;
        letter-spacing: -.028em;
    }

    .hero p {
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.55;
    }

    .hero-actions {
        margin-top: 24px;
    }

    .hero-stats {
        margin-top: 26px;
    }

    .hero-stats div {
        min-width: 0;
        flex: 1 1 145px;
    }

    .content-section {
        padding: 42px 0 48px;
    }

    .section-heading {
        margin-bottom: 26px;
    }

    .section-heading h2 {
        font-size: clamp(1.85rem, 7.4vw, 2.45rem);
        line-height: 1.05;
        letter-spacing: -.035em;
    }

    .section-heading p {
        max-width: 100%;
        font-size: .98rem;
        line-height: 1.55;
    }

    .content-offers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .content-offer-card {
        border-radius: 24px;
    }

    .content-offer-visual {
        min-height: clamp(280px, 68vw, 390px);
        padding: 18px;
    }

    .content-offer-visual img {
        width: min(100%, 340px);
        max-height: 350px;
        object-fit: contain;
    }

    .content-offer-body {
        padding: 21px;
    }

    .content-offer-description {
        min-height: auto;
        font-size: .96rem;
        line-height: 1.58;
        text-align: center;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 26px, 1180px);
    }

    .brand img {
        width: min(230px, 78vw);
        height: auto;
    }

    .main-nav {
        position: relative;
    }

    .nav-wrap {
        min-height: 54px;
    }

    .home-link,
    .menu-toggle {
        width: 40px;
        height: 40px;
    }

    .nav-links a {
        padding: 16px 20px;
        font-size: .82rem;
        text-align: center;
    }

    .btn {
        width: 100%;
        min-height: 48px;
        padding: 12px 18px;
        white-space: normal;
        line-height: 1.18;
        text-align: center;
    }

    .hero {
        padding: 34px 0 74px;
    }

    .hero h1 {
        font-size: clamp(1.85rem, 9vw, 2.35rem);
        line-height: 1.08;
        letter-spacing: -.018em;
    }

    .hero p {
        font-size: .96rem;
        line-height: 1.58;
        font-weight: 650;
    }

    .hero-actions {
        gap: 11px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-stats div {
        padding: 14px 15px;
        border-radius: 18px;
    }

    .hero-card {
        min-height: 350px;
        border-radius: 28px;
    }

    .hero-card::before {
        width: 190px;
        height: 190px;
        top: 74px;
    }

    .hero-card::after {
        width: 220px;
        height: 135px;
        bottom: 38px;
    }

    .speed-ring {
        top: 96px;
        width: 132px;
        height: 132px;
    }

    .speed-ring::before {
        inset: 9px;
    }

    .speed-ring span {
        font-size: 1.45rem;
        letter-spacing: -.035em;
    }

    .speed-ring small {
        margin-top: -28px;
        font-size: .68rem;
    }

    .stream-card {
        max-width: calc(100% - 36px);
        padding: 10px 12px;
        border-radius: 14px;
        font-size: .75rem;
        line-height: 1.2;
    }

    .play-card {
        left: 14px;
        top: 34px;
    }

    .game-card {
        right: 14px;
        top: 236px;
    }

    .wifi-card {
        left: 18px;
        bottom: 38px;
    }

    .hero-wave {
        height: 82px;
    }

    .benefits-section {
        padding: 28px 0 34px;
    }

    .benefits-grid {
        gap: 16px;
    }

    .benefit-card {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .benefit-icon {
        width: 82px;
        height: 82px;
        margin-bottom: 14px;
    }

    .benefit-icon svg {
        width: 44px;
        height: 44px;
    }

    .content-section {
        padding: 34px 0 44px;
    }

    .content-offers-grid {
        gap: 18px;
    }

    .content-offer-visual {
        min-height: 0;
        aspect-ratio: 1 / 1.08;
        padding: 14px;
    }

    .content-offer-visual img {
        width: min(100%, 310px);
        max-height: 100%;
    }

    .content-offer-body {
        padding: 18px;
        gap: 14px;
    }

    .content-offer-description {
        font-size: .94rem;
        line-height: 1.55;
    }

    .content-offer-btn {
        margin-top: 0;
    }

    .router-section {
        padding: 38px 0 56px;
    }

    .router-content {
        text-align: center;
    }

    .router-content h2,
    .cta-card h2,
    .error-card h1 {
        font-size: clamp(1.85rem, 8vw, 2.35rem);
        line-height: 1.06;
    }

    .router-content ul {
        justify-items: center;
    }

    .router-content li {
        justify-content: center;
        text-align: center;
    }

    .cta-card {
        padding: 28px 20px;
        border-radius: 26px;
        text-align: center;
    }

    .cta-actions {
        justify-content: stretch;
    }
}

@media (max-width: 420px) {
    .container {
        width: min(100% - 22px, 1180px);
    }

    .hero h1 {
        font-size: clamp(1.74rem, 8.8vw, 2.12rem);
    }

    .hero p,
    .section-heading p,
    .content-offer-description {
        font-size: .92rem;
    }

    .section-heading h2 {
        font-size: clamp(1.65rem, 7.2vw, 2rem);
    }

    .hero-card {
        min-height: 326px;
    }

    .content-offer-visual {
        aspect-ratio: 1 / 1.02;
    }

    .content-offer-visual img {
        width: min(100%, 286px);
    }

    .whatsapp-float {
        right: 14px !important;
        bottom: calc(14px + env(safe-area-inset-bottom)) !important;
        width: 54px !important;
        height: 54px !important;
    }
}


/* =========================================================
   Ajuste pontual - imagem completa da grade de canais no mobile
   ========================================================= */
@media (max-width: 620px) {
    .content-offer-card.premium .content-offer-visual {
        min-height: auto;
        height: auto;
        aspect-ratio: auto;
        padding: 34px 18px 24px;
        overflow: visible;
    }

    .content-offer-card.premium .content-offer-visual img {
        display: block;
        width: min(72vw, 250px);
        height: auto;
        max-width: 100%;
        max-height: none;
        object-fit: contain;
        object-position: center;
    }
}

@media (max-width: 390px) {
    .content-offer-card.premium .content-offer-visual {
        padding: 30px 14px 22px;
    }

    .content-offer-card.premium .content-offer-visual img {
        width: min(70vw, 232px);
    }
}
