/* =============================================================
   PRO NET — Design System
   Paleta baseada na logo:
   - Verde principal: #22C55E / #16A34A / #4ADE80
   - Grafite da logo: #2D3748
   - Fundo escuro (alto contraste com a logo): #0A0F1E → #111827
   ============================================================= */

:root {
    /* Cores da marca */
    --brand-green:       #22C55E;
    --brand-green-dark:  #16A34A;
    --brand-green-light: #4ADE80;
    --brand-graphite:    #2D3748;

    /* Fundos */
    --bg-0:  #0A0F1E;  /* mais escuro */
    --bg-1:  #0E1426;
    --bg-2:  #111827;
    --bg-3:  #1A2236;

    /* Texto */
    --text-0: #F8FAFC;
    --text-1: #E2E8F0;
    --text-2: #94A3B8;
    --text-3: #64748B;

    /* Bordas / glass */
    --border-1: rgba(255,255,255,0.08);
    --border-2: rgba(255,255,255,0.14);
    --glass:    rgba(255,255,255,0.03);
    --glass-2:  rgba(255,255,255,0.06);

    /* Gradientes */
    --grad-green: linear-gradient(135deg, #16A34A 0%, #22C55E 50%, #4ADE80 100%);
    --grad-green-soft: linear-gradient(135deg, rgba(34,197,94,.15), rgba(74,222,128,.05));
    --grad-text: linear-gradient(135deg, #4ADE80 0%, #22C55E 60%, #16A34A 100%);

    /* Sombras */
    --shadow-green: 0 14px 40px -10px rgba(34,197,94,.45), 0 4px 12px -4px rgba(34,197,94,.3);
    --shadow-card:  0 24px 60px -20px rgba(0,0,0,.6), 0 8px 24px -8px rgba(0,0,0,.5);
    --shadow-soft:  0 10px 40px -10px rgba(0,0,0,.4);

    /* Tipografia */
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;

    /* Radius */
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 22px;
    --r-xl: 28px;

    /* Transições */
    --t-fast: 180ms cubic-bezier(.4,0,.2,1);
    --t-base: 300ms cubic-bezier(.4,0,.2,1);
    --t-slow: 600ms cubic-bezier(.4,0,.2,1);
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-sans);
    background: var(--bg-0);
    color: var(--text-1);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
button { border: none; background: none; color: inherit; cursor: pointer; font: inherit; }

.container {
    width: min(1200px, 92%);
    margin-inline: auto;
}

/* ============ BOTÕES ============ */
.btn {
    --btn-h: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: var(--btn-h);
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14.5px;
    letter-spacing: .2px;
    cursor: pointer;
    transition: transform var(--t-fast), box-shadow var(--t-base), background var(--t-base), color var(--t-base), border-color var(--t-base);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.btn--sm  { --btn-h: 40px; padding: 0 18px; font-size: 13.5px; }
.btn--lg  { --btn-h: 56px; padding: 0 30px; font-size: 15.5px; }
.btn--block { width: 100%; }

.btn--primary {
    background: var(--grad-green);
    color: #05140B;
    box-shadow: var(--shadow-green);
}
.btn--primary::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #4ADE80, #22C55E);
    opacity: 0;
    transition: opacity var(--t-base);
    z-index: -1;
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 50px -10px rgba(34,197,94,.6), 0 6px 16px -4px rgba(34,197,94,.4); }
.btn--primary:hover::before { opacity: 1; }
.btn--primary:active  { transform: translateY(0); }

.btn--ghost {
    background: var(--glass-2);
    color: var(--text-0);
    border: 1px solid var(--border-2);
    backdrop-filter: blur(10px);
}
.btn--ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(74,222,128,.5); transform: translateY(-2px); }

.btn--outline {
    background: transparent;
    color: var(--brand-green-light);
    border: 1.5px solid rgba(74,222,128,.35);
}
.btn--outline:hover {
    background: rgba(34,197,94,.12);
    border-color: var(--brand-green-light);
    color: #fff;
    transform: translateY(-2px);
}

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: background var(--t-base), backdrop-filter var(--t-base), border-color var(--t-base), padding var(--t-base);
    border-bottom: 1px solid transparent;
}
.navbar.is-scrolled {
    background: rgba(10,15,30,.75);
    backdrop-filter: blur(20px) saturate(140%);
    border-bottom-color: var(--border-1);
    padding: 10px 0;
}
.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.navbar__brand { display: flex; align-items: center; }
.navbar__logo {
    /* PNG transparente real — proporção nativa 420×112 preservada */
    display: block;
    height: 56px;
    width: auto;
    transition: height var(--t-base), transform var(--t-base), filter var(--t-base);
    filter: drop-shadow(0 4px 14px rgba(34,197,94,.18));
}
.navbar__brand:hover .navbar__logo {
    transform: scale(1.04);
    filter: drop-shadow(0 4px 20px rgba(34,197,94,.35));
}
.navbar.is-scrolled .navbar__logo { height: 44px; }

@media (max-width: 640px) {
    .navbar__logo { height: 42px; }
    .navbar.is-scrolled .navbar__logo { height: 36px; }
}

.navbar__nav {
    display: flex;
    gap: 4px;
    background: var(--glass);
    border: 1px solid var(--border-1);
    border-radius: 999px;
    padding: 6px;
    backdrop-filter: blur(10px);
}
.navbar__link {
    padding: 9px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-2);
    transition: color var(--t-fast), background var(--t-fast);
}
.navbar__link:hover { color: var(--text-0); background: var(--glass-2); }

.navbar__cta { display: flex; gap: 10px; }

.navbar__burger {
    display: none;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--glass-2);
    border: 1px solid var(--border-1);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.navbar__burger span {
    display: block;
    width: 20px; height: 2px;
    background: var(--text-0);
    border-radius: 2px;
    transition: transform var(--t-fast), opacity var(--t-fast);
}
.navbar__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.navbar__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 160px 0 80px;
    background:
        radial-gradient(ellipse 80% 60% at 80% 20%, rgba(34,197,94,.15), transparent 70%),
        radial-gradient(ellipse 70% 50% at 10% 90%, rgba(22,163,74,.12), transparent 70%),
        linear-gradient(180deg, #0A0F1E 0%, #0E1426 60%, #111827 100%);
    overflow: hidden;
}
.hero__grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(148, 163, 184, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, .06) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 80%);
    animation: gridShift 30s linear infinite;
}
@keyframes gridShift {
    0%   { background-position: 0 0, 0 0; }
    100% { background-position: 60px 60px, 60px 60px; }
}

.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .55;
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
}
.hero__glow--1 {
    width: 420px; height: 420px;
    background: radial-gradient(circle, #22C55E 0%, transparent 70%);
    top: -80px; right: -80px;
}
.hero__glow--2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #16A34A 0%, transparent 70%);
    bottom: -100px; left: -120px;
    animation-delay: -4s;
    opacity: .4;
}
@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(20px, -30px) scale(1.08); }
}

.hero__noise {
    position: absolute; inset: 0;
    opacity: .03;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 60px;
}

.hero__content { position: relative; z-index: 2; }

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
    animation: fadeUp .8s cubic-bezier(.4,0,.2,1) .1s both;
}
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--glass);
    border: 1px solid var(--border-1);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-1);
    backdrop-filter: blur(10px);
}
.hero__badge--location {
    background: rgba(34,197,94,.08);
    border-color: rgba(74,222,128,.3);
    color: var(--brand-green-light);
}
.hero__badge--location svg { color: var(--brand-green-light); }
.hero__badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--brand-green);
    box-shadow: 0 0 0 4px rgba(34,197,94,.25);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(34,197,94,.25); }
    50%      { box-shadow: 0 0 0 8px rgba(34,197,94,.05); }
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.2vw, 4.4rem);
    line-height: 1.04;
    letter-spacing: -.02em;
    font-weight: 700;
    color: var(--text-0);
    margin: 0 0 20px;
    animation: fadeUp .8s cubic-bezier(.4,0,.2,1) .2s both;
}
.hero__title-gradient {
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}
.hero__title-gradient::after {
    content: '';
    position: absolute; left: 0; right: 0; bottom: -6px;
    height: 3px;
    background: var(--grad-green);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    animation: lineGrow 1.2s cubic-bezier(.4,0,.2,1) 1s forwards;
}
@keyframes lineGrow { to { transform: scaleX(1); } }

.hero__subtitle {
    font-size: 1.1rem;
    color: var(--text-2);
    max-width: 540px;
    margin: 0 0 36px;
    animation: fadeUp .8s cubic-bezier(.4,0,.2,1) .3s both;
}
.hero__subtitle strong { color: var(--brand-green-light); font-weight: 600; }

.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeUp .8s cubic-bezier(.4,0,.2,1) .4s both;
}

.hero__stats {
    display: flex;
    gap: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-1);
    animation: fadeUp .8s cubic-bezier(.4,0,.2,1) .5s both;
}
.hero__stats li {
    display: flex;
    flex-direction: column;
}
.hero__stats strong {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-0);
    line-height: 1;
}
.hero__stats strong span {
    color: var(--brand-green-light);
    font-size: 1.2rem;
}
.hero__stats li > span {
    font-size: 13px;
    color: var(--text-3);
    margin-top: 6px;
}

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

/* ========== HERO VISUAL — SPEED CARD ========== */
.hero__visual {
    position: relative;
    display: grid;
    place-items: center;
    animation: fadeUp 1s cubic-bezier(.4,0,.2,1) .4s both;
}

.speed-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: linear-gradient(160deg, rgba(26,34,54,.85) 0%, rgba(14,20,38,.85) 100%);
    border: 1px solid var(--border-2);
    border-radius: var(--r-xl);
    padding: 28px;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}
.speed-card::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(34,197,94,.15), transparent 60%);
    pointer-events: none;
}
.speed-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    position: relative;
}
.speed-card__pill {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(34,197,94,.12);
    border: 1px solid rgba(34,197,94,.25);
    font-size: 12px;
    color: var(--brand-green-light);
    font-weight: 600;
}
.speed-card__live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    color: #F87171;
    letter-spacing: .5px;
}
.speed-card__live-dot {
    width: 6px; height: 6px;
    background: #F87171;
    border-radius: 50%;
    animation: pulse 1.4s ease-in-out infinite;
}

.speedometer {
    position: relative;
    width: 240px;
    margin: 10px auto 20px;
    aspect-ratio: 1;
}
.speedometer__svg {
    width: 100%; height: 100%;
    transform: rotate(-220deg);
}
.speedometer__track {
    fill: none;
    stroke: rgba(255,255,255,.06);
    stroke-width: 14;
    stroke-linecap: round;
    stroke-dasharray: 377;
    stroke-dashoffset: 94; /* 75% trail */
}
.speedometer__progress {
    fill: none;
    stroke: url(#speedGrad);
    stroke-width: 14;
    stroke-linecap: round;
    stroke-dasharray: 377;
    stroke-dashoffset: 377;
    filter: drop-shadow(0 0 8px rgba(34,197,94,.7));
    transition: stroke-dashoffset 2.8s cubic-bezier(.4,0,.2,1);
}
.speedometer__ticks line {
    stroke: rgba(255,255,255,.2);
    stroke-width: 2;
    stroke-linecap: round;
}
.speedometer__center {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    text-align: center;
}
.speedometer__value {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    color: var(--text-0);
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.speedometer__unit {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-2);
    letter-spacing: 1px;
    margin-top: 4px;
}

.speed-card__legend {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 8px;
    padding-top: 20px;
    border-top: 1px solid var(--border-1);
}
.speed-card__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}
.speed-card__item > span {
    font-size: 11px;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 600;
}
.speed-card__item strong {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-0);
    font-weight: 700;
}
.speed-card__item strong em {
    font-style: normal;
    font-size: .75rem;
    color: var(--text-2);
    font-weight: 500;
}

/* Chips flutuantes */
.floating-chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px 12px 14px;
    background: linear-gradient(160deg, rgba(26,34,54,.95), rgba(14,20,38,.95));
    border: 1px solid var(--border-2);
    border-radius: 16px;
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-soft);
    animation: float 6s ease-in-out infinite;
}
.floating-chip strong { display: block; color: var(--text-0); font-size: 13.5px; font-weight: 600; }
.floating-chip small  { display: block; color: var(--text-3); font-size: 11.5px; }
.floating-chip__icon {
    display: grid;
    place-items: center;
    width: 40px; height: 40px;
    border-radius: 12px;
    background: var(--grad-green-soft);
    color: var(--brand-green-light);
    border: 1px solid rgba(74,222,128,.25);
}
.floating-chip--wifi   { top: 30px;  left: -20px; animation-delay: -1s; }
.floating-chip--fiber  { bottom: 20px; right: -10px; animation-delay: -3s; }

/* Marquee */
.marquee {
    position: relative;
    margin-top: 80px;
    padding: 18px 0;
    border-top: 1px solid var(--border-1);
    border-bottom: 1px solid var(--border-1);
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee__track {
    display: flex;
    gap: 48px;
    width: max-content;
    animation: marquee 35s linear infinite;
}
.marquee__track span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-2);
    letter-spacing: .3px;
}
@keyframes marquee {
    to { transform: translateX(-50%); }
}

/* ============ SECTION HEAD ============ */
.section-head {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}
.section-head__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(34,197,94,.1);
    border: 1px solid rgba(34,197,94,.22);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--brand-green-light);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.section-head__tag-dot {
    width: 6px; height: 6px;
    background: var(--brand-green);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(34,197,94,.2);
}
.section-head__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
    letter-spacing: -.02em;
    font-weight: 700;
    color: var(--text-0);
    margin: 0 0 16px;
}
.section-head__title-gradient {
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.section-head__desc {
    font-size: 1.05rem;
    color: var(--text-2);
    margin: 0;
}

/* ============ PLANS ============ */
.plans {
    position: relative;
    padding: 120px 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(34,197,94,.07), transparent 70%),
        var(--bg-1);
}
.plans__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 24px;
    align-items: stretch;
}

.plan-card {
    --accent: var(--brand-green);
    position: relative;
    border-radius: var(--r-xl);
    padding: 1.5px;
    background:
        linear-gradient(160deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.02) 50%, rgba(255,255,255,.06) 100%);
    transition: transform var(--t-base), box-shadow var(--t-base);
    overflow: hidden;
}
.plan-card::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at var(--mx,50%) var(--my,0%), rgba(34,197,94,.18), transparent 50%);
    opacity: 0;
    transition: opacity var(--t-base);
    pointer-events: none;
    z-index: 2;
    border-radius: inherit;
}
.plan-card:hover::before { opacity: 1; }
.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.plan-card__inner {
    position: relative;
    height: 100%;
    padding: 32px 26px;
    background: linear-gradient(160deg, #12182A 0%, #0D1322 100%);
    border-radius: calc(var(--r-xl) - 1.5px);
    display: flex;
    flex-direction: column;
    gap: 22px;
    z-index: 1;
}

/* Destaque / Ultra */
.plan-card--featured {
    background: linear-gradient(160deg, #22C55E 0%, #16A34A 40%, #0E1426 100%);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px -20px rgba(34,197,94,.5), var(--shadow-card);
}
.plan-card--featured:hover { transform: translateY(-18px); }
.plan-card--featured .plan-card__inner { background: linear-gradient(160deg, #0F1A24 0%, #0A1218 100%); }
.plan-card--featured .plan-card__tag { background: var(--grad-green); color: #05140B; border-color: transparent; }

.plan-card--ultra { background: linear-gradient(160deg, rgba(74,222,128,.25) 0%, rgba(34,197,94,.08) 50%, rgba(255,255,255,.04) 100%); }

.plan-card__ribbon {
    position: absolute;
    top: 14px; left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--grad-green);
    color: #05140B;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .6px;
    text-transform: uppercase;
    box-shadow: var(--shadow-green);
    white-space: nowrap;
}
.plan-card__ribbon--ultra {
    background: linear-gradient(135deg, #4ADE80, #22C55E);
}
/* Empurra o conteúdo pra baixo pra não colidir com a fita */
.plan-card--featured .plan-card__inner,
.plan-card--ultra    .plan-card__inner { padding-top: 52px; }

.plan-card__head {}
.plan-card__tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(74,222,128,.1);
    border: 1px solid rgba(74,222,128,.25);
    font-size: 11px;
    font-weight: 700;
    color: var(--brand-green-light);
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 14px;
}
.plan-card__name {
    font-family: var(--font-display);
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--text-0);
    margin: 0 0 8px;
    letter-spacing: -.01em;
    line-height: 1;
}
.plan-card__name em {
    font-style: normal;
    font-size: 1rem;
    font-weight: 600;
    color: var(--brand-green-light);
    letter-spacing: .1em;
    vertical-align: middle;
}
.plan-card__desc {
    font-size: 13.5px;
    color: var(--text-2);
    margin: 0;
    line-height: 1.5;
}

.plan-card__speeds {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 14px;
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border-1);
    border-radius: var(--r-md);
}
/* Layout em grid — ícone à esquerda, label em cima, valor embaixo (não corta) */
.plan-card__speed {
    display: grid;
    grid-template-columns: 16px 1fr;
    column-gap: 8px;
    row-gap: 2px;
    align-items: center;
    color: var(--text-2);
    min-width: 0;
}
.plan-card__speed svg {
    color: var(--brand-green-light);
    grid-row: 1 / span 2;
    align-self: center;
    flex-shrink: 0;
}
.plan-card__speed > span {
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 600;
    color: var(--text-3);
    grid-column: 2;
    grid-row: 1;
    line-height: 1;
}
.plan-card__speed strong {
    font-family: var(--font-display);
    font-size: 15px;
    color: var(--text-0);
    font-weight: 700;
    grid-column: 2;
    grid-row: 2;
    line-height: 1.1;
    white-space: nowrap;
}
.plan-card__speed strong em {
    font-style: normal;
    font-size: 11px;
    color: var(--text-2);
    font-weight: 500;
    margin-left: 2px;
}

.plan-card__price {
    padding: 20px 0 6px;
    border-top: 1px dashed var(--border-1);
    border-bottom: 1px dashed var(--border-1);
}
.plan-card__price-from {
    display: block;
    font-size: 12px;
    color: var(--text-3);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 600;
}
.plan-card__price-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.plan-card__price-currency {
    font-size: 1.1rem;
    color: var(--brand-green-light);
    font-weight: 700;
}
.plan-card__price-value {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-0);
    line-height: 1.1;
    letter-spacing: -.02em;
    padding: 4px 0;
    display: inline-block;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.plan-card__price-cents {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-0);
}
.plan-card__price-cents small {
    font-family: var(--font-sans);
    display: inline-block;
    font-size: .75rem;
    color: var(--text-3);
    font-weight: 500;
    margin-left: 2px;
}

.plan-card__features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    flex: 1;
}
.plan-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: var(--text-1);
}
.check {
    display: inline-grid;
    place-items: center;
    width: 18px; height: 18px;
    border-radius: 6px;
    background: rgba(34,197,94,.15);
    border: 1px solid rgba(34,197,94,.3);
    flex-shrink: 0;
    position: relative;
}
.check::after {
    content: '';
    width: 8px; height: 4px;
    border-left: 2px solid var(--brand-green-light);
    border-bottom: 2px solid var(--brand-green-light);
    transform: rotate(-45deg) translate(1px,-1px);
}

.plans__note {
    margin: 40px auto 0;
    max-width: 700px;
    text-align: center;
    font-size: 12.5px;
    color: var(--text-3);
}

/* ============ TRUST / MASCOTE ============ */
.trust {
    position: relative;
    padding: 40px 0 120px;
    overflow: hidden;
    background:
        radial-gradient(ellipse 60% 50% at 80% 100%, rgba(34,197,94,.08), transparent 70%),
        linear-gradient(180deg, var(--bg-1) 0%, var(--bg-0) 100%);
}
.trust__glow {
    position: absolute;
    top: 20%; left: -10%;
    width: 540px; height: 540px;
    background: radial-gradient(circle, rgba(34,197,94,.25), transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    animation: float 10s ease-in-out infinite;
}

.trust__inner {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

/* ---------- figura + moldura ---------- */
.trust__figure {
    position: relative;
    margin: 0;
    /* parallax: o JS injeta --scroll (-1..1) e a gente converte em translateY */
    transform: translateY(calc(var(--scroll, 0) * 30px));
    transition: transform .1s linear;
}
.trust__frame {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--border-2);
    box-shadow:
        0 30px 80px -20px rgba(0,0,0,.6),
        0 0 0 1px rgba(74,222,128,.12),
        0 40px 100px -20px rgba(34,197,94,.25);
    background: linear-gradient(180deg, #0E1426, #0A0F1E);
    isolation: isolate;
}
.trust__frame::before {
    /* moldura gradiente sutil */
    content: '';
    position: absolute; inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(160deg, rgba(74,222,128,.5) 0%, transparent 30%, transparent 70%, rgba(34,197,94,.25) 100%);
    -webkit-mask: linear-gradient(#000,#000) content-box, linear-gradient(#000,#000);
            mask: linear-gradient(#000,#000) content-box, linear-gradient(#000,#000);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}
.trust__img {
    width: 100%;
    height: auto;
    display: block;
    /* zoom sutil que amplifica quando a seção entra em viewport */
    transform: scale(1.02) translateY(calc(var(--scroll, 0) * -14px));
    transition: transform 1.2s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}
.trust.is-visible .trust__img {
    transform: scale(1.04) translateY(calc(var(--scroll, 0) * -14px));
}
.trust__shine {
    position: absolute; inset: 0;
    background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,.12) 50%, transparent 60%);
    transform: translateX(-120%);
    pointer-events: none;
}
.trust.is-visible .trust__shine {
    animation: shine 1.8s cubic-bezier(.4,0,.2,1) .4s 1 forwards;
}
@keyframes shine {
    to { transform: translateX(120%); }
}

/* ---------- chips sobre a imagem ---------- */
.trust__chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px 12px 14px;
    background: linear-gradient(160deg, rgba(26,34,54,.96), rgba(14,20,38,.96));
    border: 1px solid var(--border-2);
    border-radius: 16px;
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    transform: translateY(12px) scale(.9);
    transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
    z-index: 3;
}
.trust.is-visible .trust__chip {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: float 7s ease-in-out infinite;
}
.trust__chip strong { display: block; color: var(--text-0); font-size: 13.5px; font-weight: 600; }
.trust__chip small  { display: block; color: var(--text-3); font-size: 11.5px; }
.trust__chip-icon {
    display: grid;
    place-items: center;
    width: 40px; height: 40px;
    border-radius: 12px;
    background: var(--grad-green-soft);
    color: var(--brand-green-light);
    border: 1px solid rgba(74,222,128,.25);
    flex-shrink: 0;
}

.trust__chip--1 { top: -24px; right: -24px; transition-delay: .3s; animation-delay: -2s; }
.trust__chip--2 { bottom: 32px; left: -30px; transition-delay: .5s; animation-delay: -5s; }
.trust__chip--3 { top: 42%; right: -36px; transition-delay: .7s; animation-delay: -3s; }

/* ---------- conteúdo ---------- */
.trust__content { position: relative; }
.trust__title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.6vw, 2.8rem);
    line-height: 1.12;
    letter-spacing: -.02em;
    font-weight: 700;
    color: var(--text-0);
    margin: 18px 0 20px;
}
.trust__title-gradient {
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.trust__desc {
    font-size: 1.02rem;
    color: var(--text-2);
    margin: 0 0 32px;
    line-height: 1.7;
}
.trust__desc strong { color: var(--text-0); font-weight: 600; }

.trust__features {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 36px;
}
.trust__features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
/* --- ÍCONES EMOJI XL --- */
.trust__feature-icon {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 56px !important;
    height: 56px !important;
    flex-shrink: 0;
    font-size: 56px !important;
    line-height: 1 !important;
    -webkit-font-smoothing: antialiased;
    transition: transform var(--t-base);
}
.trust__features li:hover .trust__feature-icon {
    transform: scale(1.1) rotate(-4deg);
}
.trust__features strong {
    display: block;
    color: var(--text-0);
    font-size: 15.5px;
    font-weight: 600;
    margin-bottom: 2px;
}
.trust__features span {
    display: block;
    color: var(--text-2);
    font-size: 13.5px;
    line-height: 1.5;
}

.trust__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ---------- reveal on scroll (genérico) ---------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1);
}
.reveal--left   { transform: translateX(-40px); }
.reveal.is-visible {
    opacity: 1;
    transform: translate(0,0);
}
/* stagger dentro do conteúdo do trust */
.trust.is-visible .trust__content .reveal:nth-of-type(1) { transition-delay: .05s; }
.trust.is-visible .trust__content .reveal:nth-of-type(2) { transition-delay: .15s; }
.trust.is-visible .trust__content .reveal:nth-of-type(3) { transition-delay: .25s; }
.trust.is-visible .trust__features .reveal:nth-child(1) { transition-delay: .35s; }
.trust.is-visible .trust__features .reveal:nth-child(2) { transition-delay: .45s; }
.trust.is-visible .trust__features .reveal:nth-child(3) { transition-delay: .55s; }
.trust.is-visible .trust__features .reveal:nth-child(4) { transition-delay: .65s; }
.trust.is-visible .trust__actions.reveal { transition-delay: .8s; }

/* ---------- responsivo ---------- */
@media (max-width: 960px) {
    .trust { padding: 30px 0 90px; }
    .trust__inner { grid-template-columns: 1fr; gap: 60px; }
    .trust__chip--1 { top: -18px; right: 10px; }
    .trust__chip--2 { bottom: 20px; left: 10px; }
    .trust__chip--3 { top: 50%; right: 10px; }
}
@media (max-width: 640px) {
    .trust { padding: 20px 0 70px; }
    .trust__chip { padding: 8px 12px 8px 10px; }
    .trust__chip-icon { width: 32px; height: 32px; }
    .trust__chip strong { font-size: 12px; }
    .trust__chip small { font-size: 10.5px; }
    .trust__chip--1 { top: -14px; right: 8px; }
    .trust__chip--3 { display: none; }
    .trust__actions .btn { flex: 1; min-width: 160px; }
}

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 200;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.wa-float__icon {
    display: grid;
    place-items: center;
    width: 62px; height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    box-shadow:
        0 14px 34px -8px rgba(37,211,102,.55),
        0 6px 14px rgba(0,0,0,.35),
        inset 0 1px 0 rgba(255,255,255,.25);
    transition: transform var(--t-base), box-shadow var(--t-base);
    position: relative;
}
/* Anel pulsante */
.wa-float__icon::before,
.wa-float__icon::after {
    content: '';
    position: absolute; inset: 0;
    border-radius: 50%;
    border: 2px solid #25D366;
    opacity: 0;
    animation: waPulse 2.4s cubic-bezier(.4,0,.2,1) infinite;
    pointer-events: none;
}
.wa-float__icon::after { animation-delay: 1.2s; }
@keyframes waPulse {
    0%   { transform: scale(.9);  opacity: .7; }
    70%  { transform: scale(1.6); opacity: 0;  }
    100% { transform: scale(1.6); opacity: 0;  }
}
.wa-float__tooltip {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: #fff;
    color: #111827;
    font-size: 13.5px;
    font-weight: 600;
    box-shadow: 0 10px 30px -6px rgba(0,0,0,.3);
    opacity: 0;
    transform: translateX(10px);
    transition: opacity var(--t-base), transform var(--t-base);
    pointer-events: none;
    white-space: nowrap;
    position: relative;
}
.wa-float__tooltip::after {
    content: '';
    position: absolute;
    right: -5px; top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px; height: 10px;
    background: #fff;
    border-radius: 2px;
}
.wa-float:hover .wa-float__tooltip {
    opacity: 1;
    transform: translateX(0);
}
.wa-float:hover .wa-float__icon {
    transform: scale(1.08);
    box-shadow:
        0 18px 44px -8px rgba(37,211,102,.75),
        0 6px 16px rgba(0,0,0,.4),
        inset 0 1px 0 rgba(255,255,255,.3);
}
@media (max-width: 640px) {
    .wa-float { right: 16px; bottom: 16px; }
    .wa-float__icon { width: 56px; height: 56px; }
    .wa-float__icon svg { width: 26px; height: 26px; }
    .wa-float__tooltip { display: none; }
}

/* ============ FOOTER ============ */
.footer {
    padding: 28px 0;
    font-size: 13px;
    color: var(--text-3);
    border-top: 1px solid var(--border-1);
    background: var(--bg-0);
}
.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
}
.footer__copy { margin: 0; }
.footer__coverage {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(34,197,94,.08);
    border: 1px solid rgba(74,222,128,.25);
    color: var(--text-1);
    font-size: 12.5px;
}
.footer__coverage svg { color: var(--brand-green-light); }
.footer__coverage strong { color: var(--brand-green-light); font-weight: 700; }
.footer__social {
    display: flex;
    gap: 10px;
}
.footer__social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px 8px 10px;
    border-radius: 999px;
    background: var(--glass);
    border: 1px solid var(--border-1);
    color: var(--text-1);
    font-size: 13px;
    font-weight: 500;
    transition: background var(--t-base), border-color var(--t-base), color var(--t-base), transform var(--t-base);
}
.footer__social-link svg {
    color: var(--brand-green-light);
    transition: color var(--t-base);
}
.footer__social-link:hover {
    background: rgba(34,197,94,.08);
    border-color: rgba(74,222,128,.4);
    color: #fff;
    transform: translateY(-2px);
}
.footer__social-link:hover svg { color: #fff; }

@media (max-width: 640px) {
    .footer__inner { justify-content: center; text-align: center; flex-direction: column-reverse; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
    .hero__inner { grid-template-columns: 1fr; gap: 50px; }
    .hero__visual { max-width: 420px; margin: 0 auto; }
    .navbar__nav,
    .navbar__cta .btn--ghost { display: none; }
    .navbar__burger { display: flex; }

    .navbar__nav.is-open {
        display: flex;
        position: absolute;
        top: calc(100% + 8px);
        left: 4%;
        right: 4%;
        flex-direction: column;
        padding: 12px;
        background: rgba(10,15,30,.95);
        backdrop-filter: blur(20px);
        border: 1px solid var(--border-1);
        border-radius: var(--r-lg);
        gap: 2px;
    }
    .navbar__nav.is-open .navbar__link { padding: 12px 16px; border-radius: 12px; }

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

@media (max-width: 640px) {
    .hero { padding: 130px 0 60px; }
    .hero__stats { gap: 28px; }
    .hero__stats strong { font-size: 1.6rem; }
    .hero__actions .btn { flex: 1; min-width: 160px; }

    .floating-chip--wifi { left: 4px; top: 10px; }
    .floating-chip--fiber { right: 4px; bottom: 10px; }
    .floating-chip { padding: 10px 14px 10px 12px; }
    .floating-chip strong { font-size: 12.5px; }
    .floating-chip small { font-size: 10.5px; }

    .speedometer { width: 200px; }
    .speedometer__value { font-size: 2.4rem; }

    .plans { padding: 80px 0; }
    .plans__grid { grid-template-columns: 1fr; }
    .navbar__cta .btn--sm { padding: 0 14px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
