/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #07112a;
    background: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: all .25s ease; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }

/* ===== VARIABLES ===== */
:root {
    --blue: #0025ea;
    --blue-dark: #0019a8;
    --blue-light: #2c4dff;
    --navy: #07112a;
    --cyan: #00eff8;
    --green: #aada12;
    --yellow: #ffbb01;
    --pink: #f30fa2;
    --white: #ffffff;
    --gray-50: #f7f8fc;
    --gray-100: #eef0f8;
    --gray-200: #dde1ee;
    --gray-400: #9aa2b8;
    --gray-600: #5a6179;
    --gray-800: #2a3148;
    --shadow-sm: 0 2px 8px rgba(7, 17, 42, 0.06);
    --shadow-md: 0 12px 40px rgba(7, 17, 42, 0.08);
    --shadow-lg: 0 24px 60px rgba(7, 17, 42, 0.14);
    --shadow-blue: 0 20px 50px rgba(0, 37, 234, 0.25);
    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 28px;
    --container: 1200px;
    --display: 'Space Grotesk', 'Inter', sans-serif;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== TYPO ===== */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; color: var(--navy); }
h1 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
h3 { font-size: clamp(1.05rem, 1.4vw, 1.25rem); }
p { color: var(--gray-600); }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--display);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 16px;
}
.eyebrow::before {
    content: '';
    width: 24px; height: 2px;
    background: var(--blue);
    border-radius: 2px;
}
.eyebrow--light { color: var(--cyan); }
.eyebrow--light::before { background: var(--cyan); }

.ink-blue { color: var(--blue); }
.ink-white { color: var(--white, #fff); }
.ink-navy { color: var(--navy); }
.highlight-yellow { background: var(--yellow); padding: 2px 10px; color: var(--navy); border-radius: 6px; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.highlight-green { background: var(--green); padding: 2px 10px; color: var(--navy); border-radius: 6px; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.highlight-cyan { background: var(--cyan); padding: 2px 10px; color: var(--navy); border-radius: 6px; box-decoration-break: clone; -webkit-box-decoration-break: clone; }

.section-head { max-width: 680px; margin-bottom: 40px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head__desc { margin-top: 14px; font-size: .98rem; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 999px;
    font-family: var(--display);
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: .01em;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    white-space: nowrap;
    cursor: pointer;
}
.btn--lg { padding: 18px 32px; font-size: 1rem; }
.btn--block { display: flex; width: 100%; }

.btn--primary { background: var(--blue); color: var(--white); box-shadow: var(--shadow-blue); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 28px 60px rgba(0, 37, 234, .35); background: var(--blue-dark); }

.btn--accent { background: var(--yellow); color: var(--navy); box-shadow: 0 12px 32px rgba(255, 187, 1, .35); }
.btn--accent:hover { transform: translateY(-2px); box-shadow: 0 20px 44px rgba(255, 187, 1, .5); }

.btn--outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn--outline:hover { background: var(--blue); color: var(--white); }

.btn--ghost { background: rgba(255, 255, 255, .1); color: var(--white); border: 1.5px solid rgba(255, 255, 255, .3); backdrop-filter: blur(10px); }
.btn--ghost:hover { background: rgba(255, 255, 255, .2); border-color: rgba(255, 255, 255, .5); }
.btn--ghost-light { background: transparent; color: var(--white); border: 1.5px solid rgba(255, 255, 255, .4); }
.btn--ghost-light:hover { background: rgba(255, 255, 255, .1); }

/* ===== TAG / CHIP ===== */
.tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 500;
    color: var(--white);
    backdrop-filter: blur(12px);
    margin-bottom: 24px;
}
.tag__dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(170, 218, 18, .25);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .4; }
}

.chip {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 999px;
    font-family: var(--display);
    font-weight: 600;
    font-size: .85rem;
    box-shadow: var(--shadow-md);
}
.chip--green { background: var(--green); color: var(--navy); }
.chip--yellow { background: var(--yellow); color: var(--navy); }
.chip--pink { background: var(--pink); color: var(--white); }

/* ===== TOPBAR ===== */
.topbar {
    background: var(--navy);
    color: var(--white);
    font-size: .82rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.topbar__item { opacity: .85; }
.topbar__item strong { color: var(--cyan); font-weight: 600; }
.topbar__wpp { display: inline-flex; align-items: center; gap: 6px; font-weight: 500; }
.topbar__wpp:hover { color: var(--green); }

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-100);
    transition: all .25s ease;
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    gap: 24px;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo__mark {
    display: grid;
    place-items: center;
    width: 42px; height: 42px;
    background: var(--blue);
    border-radius: 12px;
    overflow: hidden;
}
.logo__mark img { width: 26px; height: 26px; }
.logo__text { display: flex; flex-direction: column; line-height: 1; font-family: var(--display); }
.logo__text strong { font-size: 1.2rem; font-weight: 700; color: var(--navy); letter-spacing: -.02em; }
.logo__text em { font-size: .75rem; font-style: normal; font-weight: 500; color: var(--blue); letter-spacing: .18em; text-transform: uppercase; }
.logo--footer .logo__text strong { color: var(--white); }
.logo--footer .logo__text em { color: var(--cyan); }
.logo--image { gap: 0; }
.logo__img { height: 72px; width: auto; display: block; }
.logo__img--footer { height: 56px; width: auto; display: block; max-width: 240px; }
.logo--footer-image { display: inline-flex; }

.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
    font-size: .92rem;
    font-weight: 500;
    color: var(--gray-800);
    position: relative;
}
.nav a::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0;
    width: 0; height: 2px;
    background: var(--blue);
    transition: width .25s ease;
    border-radius: 2px;
}
.nav a:hover { color: var(--blue); }
.nav a:hover::after { width: 100%; }

.header__cta { padding: 12px 22px; font-size: .9rem; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all .25s ease;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    background: var(--blue);
    color: var(--white);
    overflow: hidden;
    padding: 56px 0 0;
}
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    z-index: 0;
}
.hero__video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(95deg, var(--blue) 0%, var(--blue) 20%, rgba(0, 37, 234, .92) 40%, rgba(0, 37, 234, .55) 70%, rgba(7, 17, 42, .35) 100%),
        linear-gradient(180deg, rgba(7, 17, 42, .15) 0%, rgba(7, 17, 42, .5) 100%);
}
.hero__grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: block;
    padding-bottom: 60px;
    min-height: 480px;
}
.hero__content { max-width: 640px; }
.hero__badge {
    position: absolute;
    right: 0;
    bottom: 70px;
    z-index: 2;
    animation: float-y 4s ease-in-out infinite;
}
.hero__figure {
    position: absolute;
    right: -20px;
    bottom: 0;
    width: min(520px, 44vw);
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.hero__figure-glow {
    position: absolute;
    right: 4%;
    bottom: 8%;
    width: 82%;
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(0, 239, 248, .45) 0%, rgba(0, 37, 234, .35) 45%, rgba(0, 37, 234, 0) 70%);
    filter: blur(10px);
    z-index: 0;
    animation: float-y 6s ease-in-out infinite;
}
.hero__figure-photo {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    max-height: 100%;
    height: auto;
    object-fit: contain;
    object-position: bottom right;
    z-index: 1;
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, .4));
}
.hero__figure-tag {
    position: absolute;
    z-index: 3;
    background: var(--white);
    border-radius: 18px;
    padding: 10px 16px;
    box-shadow: 0 16px 40px rgba(7, 17, 42, .35);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float-y 4.5s ease-in-out infinite;
}
.hero__figure-tag--tim {
    left: 2%;
    top: 14%;
    padding: 12px 18px;
    animation-delay: -1s;
}
.hero__figure-tag--tim img {
    display: block;
    width: auto;
    height: 22px;
}
.hero__figure-tag--moto {
    left: 0;
    top: 44%;
    padding: 12px 18px;
    animation-delay: -3s;
}
.hero__figure-tag--moto img {
    display: block;
    width: auto;
    height: 22px;
}
.hero__figure-tag--anos {
    right: 4%;
    top: 60%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 18px;
    animation-delay: -2.5s;
}
.hero__figure-tag--anos strong {
    font-family: var(--display);
    font-size: 1.8rem;
    color: var(--blue);
    line-height: 1;
}
.hero__figure-tag--anos span {
    font-size: .72rem;
    color: var(--navy);
    opacity: .75;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.hero__title { color: var(--white); font-size: clamp(2rem, 4.2vw, 3.2rem); line-height: 1.1; }
.hero__title > span { display: block; }
.hero__title-accent {
    background: linear-gradient(90deg, var(--cyan), var(--green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.hero__title strong { font-weight: 800; color: var(--yellow); }
.hero__desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, .82);
    margin: 20px 0 28px;
    max-width: 520px;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__meta {
    display: flex;
    gap: 36px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .16);
}
.hero__meta-item { display: flex; flex-direction: column; }
.hero__meta-item strong {
    font-family: var(--display);
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}
.hero__meta-item span {
    font-size: .82rem;
    color: rgba(255, 255, 255, .65);
    margin-top: 6px;
}

/* Hero visual */
.hero__visual { position: relative; }
.hero__floater {
    position: absolute;
    z-index: 2;
    animation: float-y 4s ease-in-out infinite;
}
.hero__floater--1 { top: -18px; left: -30px; animation-delay: 0s; }
.hero__floater--2 { top: 40%; right: -20px; animation-delay: -1.5s; }
.hero__floater--3 { bottom: 20px; left: -10px; animation-delay: -3s; }
@keyframes float-y {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero__brands {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 28px 0;
    background: rgba(7, 17, 42, .25);
    position: relative;
    z-index: 1;
}
.hero__brands .container { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.hero__brands-label { font-size: .78rem; color: rgba(255, 255, 255, .6); letter-spacing: .12em; text-transform: uppercase; }
.hero__brands-logos { display: flex; gap: 40px; flex-wrap: wrap; flex: 1; }
.hero__brands-logos span {
    font-family: var(--display);
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .75);
    letter-spacing: .02em;
}

/* ===== PLAN CARDS ===== */
.plan-card {
    position: relative;
    background: var(--white);
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    color: var(--navy);
    transition: transform .3s ease, box-shadow .3s ease;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.plan-card--hero {
    max-width: 420px;
    margin-left: auto;
    box-shadow: 0 40px 80px rgba(7, 17, 42, .3);
    transform: rotate(1deg);
}
.plan-card--hero:hover { transform: rotate(0) translateY(-6px); }
.plan-card--featured {
    background: linear-gradient(155deg, var(--navy), #0f1f48);
    color: var(--white);
    transform: scale(1.04);
    box-shadow: 0 30px 60px rgba(7, 17, 42, .35);
}
.plan-card--featured h3, .plan-card--featured .plan-card__value strong { color: var(--white); }
.plan-card--featured .plan-card__tier { color: var(--yellow); }
.plan-card--featured .plan-card__from,
.plan-card--featured .plan-card__value span,
.plan-card--featured .plan-card__value em { color: rgba(255, 255, 255, .7); }
.plan-card--featured li { color: rgba(255, 255, 255, .9); }
.plan-card--featured li svg { color: var(--green); }

.plan-card__badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--yellow);
    color: var(--navy);
    padding: 6px 18px;
    border-radius: 999px;
    font-family: var(--display);
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.plan-card__header {}
.plan-card__tier {
    font-family: var(--display);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--blue);
    display: block;
    margin-bottom: 8px;
}
.plan-card__from { font-size: .78rem; color: var(--gray-600); display: block; }
.plan-card__value { display: flex; align-items: flex-end; gap: 4px; margin-top: 4px; line-height: 1; }
.plan-card__value span { font-family: var(--display); font-weight: 600; font-size: 1.1rem; color: var(--gray-600); margin-bottom: 10px; }
.plan-card__value strong { font-family: var(--display); font-size: 3.5rem; font-weight: 800; color: var(--navy); letter-spacing: -.04em; }
.plan-card__value em { font-family: var(--display); font-size: 1rem; font-style: normal; font-weight: 500; color: var(--gray-600); margin-bottom: 12px; }

.plan-card__features { display: flex; flex-direction: column; gap: 10px; }
.plan-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .92rem;
    color: var(--gray-800);
}
.plan-card__features li svg { color: var(--blue); flex-shrink: 0; }

/* ===== OFERTAS ===== */
.ofertas { padding: 80px 0; background: var(--white); position: relative; }
.ofertas__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 28px;
    margin-top: 200px;
    align-items: stretch;
}
.oferta-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 24px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    box-shadow: 0 2px 0 rgba(7, 17, 42, .02);
}
.oferta-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(7, 17, 42, .12);
    border-color: transparent;
}
.oferta-card--featured {
    border-color: var(--blue);
    box-shadow: 0 18px 40px rgba(0, 37, 234, .18);
    transform: scale(1.04);
    z-index: 2;
}
.oferta-card--featured:hover { transform: scale(1.04) translateY(-6px); }
.oferta-card--device {
    padding-top: 110px;
    overflow: visible;
}
.oferta-card__device-wrap {
    position: absolute;
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 200px;
    border-radius: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
}
.oferta-card__device-wrap::before {
    content: "";
    position: absolute;
    inset: auto 10% 16px 10%;
    height: 46%;
    border-radius: 50%;
    filter: blur(30px);
    opacity: .55;
    z-index: 0;
}
.oferta-card__device-wrap--yellow::before { background: radial-gradient(circle, #ffbb01 0%, rgba(255, 187, 1, 0) 70%); }
.oferta-card__device-wrap--blue::before { background: radial-gradient(circle, #0025ea 0%, rgba(0, 37, 234, 0) 70%); }
.oferta-card__device-wrap--navy::before { background: radial-gradient(circle, #0a2a6b 0%, rgba(10, 42, 107, 0) 70%); }
.oferta-card__device-wrap--purple::before { background: radial-gradient(circle, #b48cff 0%, rgba(180, 140, 255, 0) 70%); }
.oferta-card__device-wrap--teal::before { background: radial-gradient(circle, #6bd5c8 0%, rgba(107, 213, 200, 0) 70%); }
.oferta-card__device {
    position: relative;
    z-index: 1;
    max-height: 200px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 22px 28px rgba(7, 17, 42, .35));
    transition: transform .3s ease;
}
.oferta-card--featured .oferta-card__device { max-height: 230px; }
.oferta-card:hover .oferta-card__device {
    animation: float-y 3s ease-in-out infinite;
}
.oferta-card__flag {
    align-self: center;
    background: var(--blue);
    color: var(--white);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 6px 14px;
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(0, 37, 234, .25);
    margin-bottom: 4px;
}
.oferta-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.oferta-card__icon--blue { background: rgba(0, 37, 234, .1); color: var(--blue); }
.oferta-card__icon--cyan { background: rgba(0, 239, 248, .15); color: #00a9b2; }
.oferta-card__icon--yellow { background: rgba(255, 187, 1, .18); color: #b57f00; }
.oferta-card__icon--pink { background: rgba(243, 15, 162, .12); color: #b8007b; }
.oferta-card__tag {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--blue);
    font-weight: 800;
}
.oferta-card h3 {
    font-size: 1.15rem;
    line-height: 1.25;
    color: var(--navy);
    margin: 0;
}
.oferta-card p {
    font-size: .92rem;
    color: var(--gray-600);
    line-height: 1.55;
    margin: 0;
    flex: 1;
}
.btn--block {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}
.ofertas__foot {
    text-align: center;
    margin-top: 40px;
    font-size: .9rem;
    color: var(--gray-600);
}
.ofertas__foot a { color: var(--blue); text-decoration: none; }
.ofertas__foot a:hover { text-decoration: underline; }

/* ===== PLANO (FEATURES) ===== */
.plano { padding: 80px 0; background: var(--gray-50); }
.plano__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature {
    background: var(--white);
    padding: 36px 32px;
    border-radius: var(--radius);
    transition: transform .3s ease, box-shadow .3s ease;
    border: 1px solid var(--gray-100);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature__icon {
    display: grid;
    place-items: center;
    width: 60px; height: 60px;
    border-radius: 16px;
    margin-bottom: 20px;
}
.feature__icon--blue { background: rgba(0, 37, 234, .1); color: var(--blue); }
.feature__icon--cyan { background: rgba(0, 239, 248, .15); color: #009ba3; }
.feature__icon--green { background: rgba(170, 218, 18, .2); color: #6b8708; }
.feature__icon--yellow { background: rgba(255, 187, 1, .18); color: #a07300; }
.feature__icon--pink { background: rgba(243, 15, 162, .12); color: var(--pink); }
.feature__icon--navy { background: rgba(7, 17, 42, .1); color: var(--navy); }
.feature h3 { margin-bottom: 10px; }
.feature p { font-size: .95rem; }

/* ===== BENEFICIOS ===== */
.beneficios {
    padding: 80px 0;
    background: linear-gradient(155deg, var(--navy), #0b1838);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.beneficios::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0, 37, 234, .5), transparent 70%);
    top: -200px; left: -200px;
    filter: blur(80px);
}
.beneficios::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0, 239, 248, .35), transparent 70%);
    bottom: -100px; right: -100px;
    filter: blur(80px);
}
.beneficios__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.beneficios h2 { color: var(--white); }
.beneficios__content p { color: rgba(255, 255, 255, .75); margin: 18px 0 24px; font-size: 1rem; }
.beneficios__apps { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.app-chip {
    padding: 10px 18px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 999px;
    font-family: var(--display);
    font-weight: 500;
    font-size: .9rem;
    backdrop-filter: blur(10px);
}

.beneficios__visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.stat-card {
    padding: 32px 24px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(14px);
    transition: transform .3s ease;
}
.stat-card:hover { transform: translateY(-4px); }
.stat-card--1 { background: linear-gradient(135deg, rgba(0, 37, 234, .4), rgba(0, 37, 234, .15)); border-color: rgba(0, 37, 234, .3); }
.stat-card--2 { margin-top: 32px; background: linear-gradient(135deg, rgba(0, 239, 248, .25), rgba(0, 239, 248, .05)); border-color: rgba(0, 239, 248, .3); }
.stat-card--3 { background: linear-gradient(135deg, rgba(255, 187, 1, .2), rgba(255, 187, 1, .05)); border-color: rgba(255, 187, 1, .3); }
.stat-card--4 { margin-top: 32px; background: linear-gradient(135deg, rgba(243, 15, 162, .2), rgba(243, 15, 162, .05)); border-color: rgba(243, 15, 162, .3); }
.stat-card__value {
    display: block;
    font-family: var(--display);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: -.03em;
}
.stat-card__value em { font-size: 1rem; font-style: normal; color: rgba(255, 255, 255, .6); margin-left: 4px; font-weight: 500; }
.stat-card__label { display: block; margin-top: 14px; font-size: .92rem; color: rgba(255, 255, 255, .7); }

/* ===== PLANOS ===== */
.planos { padding: 80px 0; background: var(--white); }
.planos__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}
.planos__disclaimer {
    margin-top: 40px;
    text-align: center;
    font-size: .82rem;
    color: var(--gray-400);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== DIFERENCIAIS ===== */
.diferenciais {
    padding: 80px 0;
    background: var(--blue);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.diferenciais::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(0, 239, 248, .2) 0%, transparent 40%),
                      radial-gradient(circle at 80% 20%, rgba(243, 15, 162, .2) 0%, transparent 40%);
}
.diferenciais > .container { position: relative; z-index: 1; }
.diferenciais__head { max-width: 700px; margin-bottom: 44px; }
.diferenciais h2 { color: var(--white); }
.diferenciais__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.diferencial-item {
    padding: 32px 0;
    border-top: 2px solid rgba(255, 255, 255, .2);
}
.diferencial-item__num {
    display: block;
    font-family: var(--display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 14px;
}
.diferencial-item h3 { color: var(--white); margin-bottom: 12px; }
.diferencial-item p { color: rgba(255, 255, 255, .75); font-size: .95rem; }

/* ===== SOBRE ===== */
.sobre { padding: 88px 0; background: var(--white); }
.sobre__grid {
    display: grid;
    grid-template-columns: minmax(280px, 380px) 1fr;
    gap: 56px;
    align-items: start;
}
.sobre__visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    position: sticky;
    top: 100px;
}
.sobre__card {
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}
.sobre__card--main {
    grid-column: 1 / -1;
    background: var(--blue);
    color: var(--white);
    padding: 28px;
}
.sobre__card--main h3 { color: var(--white); font-size: 1.1rem; margin-top: 10px; line-height: 1.25; }
.sobre__since {
    display: inline-block;
    padding: 6px 14px;
    background: var(--yellow);
    color: var(--navy);
    border-radius: 999px;
    font-family: var(--display);
    font-weight: 600;
    font-size: .78rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.sobre__card--accent {
    background: var(--cyan);
    color: var(--navy);
}
.sobre__card--dark {
    background: var(--navy);
    color: var(--white);
}
.sobre__card--accent strong, .sobre__card--dark strong {
    display: block;
    font-family: var(--display);
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.03em;
}
.sobre__card--accent span, .sobre__card--dark span {
    display: block;
    margin-top: 8px;
    font-size: .82rem;
    opacity: .85;
    line-height: 1.35;
}

.sobre__content { max-width: 640px; }
.sobre__content h2 { text-wrap: balance; }
.sobre__lead { font-size: 1rem; margin: 18px 0 14px; color: var(--gray-800); }
.sobre__content > p { margin-bottom: 24px; }

/* ===== SHAPE SHOWCASE ===== */
.shape-showcase {
    margin-top: 72px;
    padding: 56px;
    background: linear-gradient(135deg, var(--navy) 0%, #0f1f48 60%, var(--blue) 140%);
    border-radius: var(--radius-lg);
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(7, 17, 42, .2);
}
.shape-showcase::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0, 239, 248, .22), transparent 65%);
    top: -200px; right: -150px;
    filter: blur(60px);
    pointer-events: none;
}
.shape-showcase::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(243, 15, 162, .2), transparent 65%);
    bottom: -150px; left: -100px;
    filter: blur(70px);
    pointer-events: none;
}
.shape-showcase__head {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin-bottom: 36px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.shape-showcase__head .eyebrow { color: var(--cyan); justify-content: center; display: inline-flex; }
.shape-showcase__head .eyebrow::before { background: var(--cyan); }
.shape-showcase__head h3 {
    color: var(--white);
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    font-weight: 700;
    letter-spacing: -.01em;
    text-wrap: balance;
}
.shape-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.shape-card {
    position: relative;
    padding: 28px 22px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform .3s ease, background .3s ease, border-color .3s ease;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.shape-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, .1);
    border-color: rgba(0, 239, 248, .4);
}
.shape-card__letter {
    display: grid;
    place-items: center;
    width: 56px; height: 56px;
    border-radius: 16px;
    background: var(--blue);
    color: var(--white);
    font-family: var(--display);
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 10px 24px rgba(0, 37, 234, .35);
}
.shape-card:nth-child(1) .shape-card__letter { background: var(--blue); }
.shape-card:nth-child(2) .shape-card__letter { background: var(--pink); box-shadow: 0 10px 24px rgba(243, 15, 162, .35); }
.shape-card:nth-child(3) .shape-card__letter { background: var(--yellow); color: var(--navy); box-shadow: 0 10px 24px rgba(255, 187, 1, .4); }
.shape-card:nth-child(4) .shape-card__letter { background: var(--green); color: var(--navy); box-shadow: 0 10px 24px rgba(170, 218, 18, .4); }
.shape-card:nth-child(5) .shape-card__letter { background: var(--cyan); color: var(--navy); box-shadow: 0 10px 24px rgba(0, 239, 248, .4); }
.shape-card h4 {
    color: var(--white);
    font-family: var(--display);
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: -.01em;
    line-height: 1.2;
}
.shape-card p {
    color: rgba(255, 255, 255, .72);
    font-size: .88rem;
    line-height: 1.45;
    margin: 0;
}
.shape-card--featured {
    background: linear-gradient(155deg, rgba(255, 187, 1, .18), rgba(255, 187, 1, .04));
    border-color: rgba(255, 187, 1, .35);
}

/* SHAPE legacy (kept for compat if referenced) */
.shape { display: flex; flex-direction: column; gap: 16px; }
.shape__item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 16px;
    border-radius: var(--radius-sm);
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    transition: background .2s ease, transform .2s ease;
}
.shape__item:hover { background: var(--white); transform: translateX(4px); box-shadow: var(--shadow-sm); }
.shape__item > strong {
    display: grid;
    place-items: center;
    width: 44px; height: 44px;
    flex-shrink: 0;
    background: var(--blue);
    color: var(--white);
    font-family: var(--display);
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 12px;
}
.shape__item:nth-child(2) > strong { background: var(--pink); }
.shape__item:nth-child(3) > strong { background: var(--yellow); color: var(--navy); }
.shape__item:nth-child(4) > strong { background: var(--green); color: var(--navy); }
.shape__item:nth-child(5) > strong { background: var(--cyan); color: var(--navy); }
.shape__item span {
    display: block;
    font-family: var(--display);
    font-weight: 600;
    color: var(--navy);
    font-size: 1rem;
}
.shape__item em {
    display: block;
    font-style: normal;
    font-size: .88rem;
    color: var(--gray-600);
    margin-top: 2px;
}

/* ===== LOJAS ===== */
.lojas { padding: 80px 0; background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.lojas::before {
    content: '';
    position: absolute;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(0, 37, 234, .4), transparent 60%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(100px);
}
.lojas > .container { position: relative; z-index: 1; }
.lojas h2 { color: var(--white); }
.lojas__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.loja-card {
    padding: 32px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius);
    backdrop-filter: blur(12px);
    transition: transform .3s ease, background .3s ease, border-color .3s ease;
}
.loja-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, .08);
    border-color: rgba(0, 239, 248, .4);
}
.loja-card__state {
    display: inline-block;
    padding: 6px 12px;
    background: var(--blue);
    color: var(--white);
    font-family: var(--display);
    font-weight: 700;
    font-size: .75rem;
    letter-spacing: .1em;
    border-radius: 8px;
    margin-bottom: 20px;
}
.loja-card h3 { color: var(--white); margin-bottom: 8px; }
.loja-card__count {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(0, 239, 248, .15);
    color: var(--cyan);
    border-radius: 8px;
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 18px;
}
.loja-card p { color: rgba(255, 255, 255, .7); font-size: .92rem; }
.loja-card__list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0 0 12px;
}
.loja-card__list li {
    font-size: .9rem;
    color: rgba(255, 255, 255, .8);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    position: relative;
    padding-left: 18px;
}
.loja-card__list li::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    opacity: .6;
}
.loja-card__list li:last-child { border-bottom: none; }
.loja-card__city {
    display: inline-block;
    margin-top: 8px;
    font-family: var(--display);
    font-size: .85rem;
    font-weight: 500;
    color: var(--yellow);
}

/* LOJAS TABS */
.lojas__tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
    padding: 8px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 999px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(12px);
}
.lojas__tab {
    padding: 10px 20px;
    background: transparent;
    border: none;
    border-radius: 999px;
    color: rgba(255, 255, 255, .7);
    font-family: var(--display);
    font-weight: 600;
    font-size: .88rem;
    cursor: pointer;
    transition: all .25s ease;
    white-space: nowrap;
}
.lojas__tab:hover { color: var(--white); background: rgba(255, 255, 255, .06); }
.lojas__tab.is-active {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 6px 18px rgba(0, 37, 234, .4);
}

.lojas__panels { position: relative; }
.lojas__panel {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    animation: fadeUp .4s ease;
}
.lojas__panel.is-active { display: grid; }
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.loja-group {
    padding: 28px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius);
    backdrop-filter: blur(12px);
    transition: border-color .25s ease, background .25s ease;
}
.loja-group:hover { border-color: rgba(0, 239, 248, .3); background: rgba(255, 255, 255, .06); }
.loja-group__city {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    font-family: var(--display);
    font-size: 1.05rem;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.loja-group__city span {
    font-size: .75rem;
    font-weight: 600;
    color: var(--cyan);
    background: rgba(0, 239, 248, .12);
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: .05em;
}

.loja-list { display: flex; flex-direction: column; gap: 4px; }
.loja-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.loja-list li:last-child { border-bottom: none; }
.loja-list li strong {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-family: var(--display);
    font-weight: 600;
    font-size: .95rem;
}
.loja-list li span {
    font-size: .82rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.4;
}
.tag-moto, .tag-matrix {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 6px;
    font-family: var(--display);
    font-size: .65rem;
    font-weight: 700;
    font-style: normal;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.tag-moto { background: var(--navy); color: var(--white); }
.tag-matrix { background: var(--yellow); color: var(--navy); }

.lojas__cta {
    margin-top: 48px;
    padding: 40px;
    background: linear-gradient(135deg, var(--yellow), #ffd445);
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--navy);
}
.lojas__cta h3 { color: var(--navy); margin-bottom: 8px; }
.lojas__cta p { color: rgba(7, 17, 42, .7); margin-bottom: 20px; }

/* MISSÃO / VISÃO */
.mv { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0 28px; }
.mv__item {
    padding: 20px 22px;
    background: var(--gray-50);
    border-left: 3px solid var(--blue);
    border-radius: 10px;
}
.mv__item:nth-child(2) { border-left-color: var(--pink); }
.mv__item span {
    display: block;
    font-family: var(--display);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--blue);
    margin-bottom: 8px;
}
.mv__item:nth-child(2) span { color: var(--pink); }
.mv__item p { font-size: .92rem; color: var(--gray-800); line-height: 1.5; }

.loja-card--cta {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--navy);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.loja-card--cta h3 { color: var(--navy); font-size: 1.3rem; }
.loja-card--cta p { color: rgba(7, 17, 42, .7); margin: 10px 0 20px; }

/* ===== FAQ ===== */
.faq { padding: 80px 0; background: var(--white); }
.faq__list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.faq__item[open] { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.faq__item summary {
    padding: 18px 24px;
    cursor: pointer;
    font-family: var(--display);
    font-weight: 600;
    color: var(--navy);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: .98rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
    content: '+';
    font-family: var(--display);
    font-size: 1.6rem;
    color: var(--blue);
    transition: transform .25s ease;
    flex-shrink: 0;
    line-height: 1;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 28px 24px; color: var(--gray-600); }

/* ===== CTA ===== */
.cta { padding: 64px 0 80px; background: var(--white); }
.cta__box {
    background: linear-gradient(155deg, var(--blue), #1a3aff 60%, var(--pink));
    border-radius: var(--radius-lg);
    padding: 56px 52px;
    color: var(--white);
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 37, 234, .25);
}
.cta__box::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0, 239, 248, .3), transparent 70%);
    top: -100px; right: -100px;
    filter: blur(80px);
}
.cta h2 { color: var(--white); }
.cta__content { position: relative; z-index: 1; }
.cta__content p { color: rgba(255, 255, 255, .85); margin: 16px 0 24px; font-size: 1rem; }
.cta__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.cta__form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px;
    color: var(--navy);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}
.cta__form h3 { margin-bottom: 22px; font-size: 1.2rem; }
.cta__form label {
    display: block;
    margin-bottom: 14px;
}
.cta__form label span {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 6px;
}
.cta__form input, .cta__form select {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    font-family: inherit;
    font-size: .95rem;
    color: var(--navy);
    background: var(--white);
    transition: border-color .2s ease;
}
.cta__form input:focus, .cta__form select:focus { outline: none; border-color: var(--blue); }
.cta__form small {
    display: block;
    margin-top: 12px;
    font-size: .78rem;
    color: var(--gray-400);
    text-align: center;
}
.cta__form .btn { margin-top: 6px; }

/* ===== FOOTER ===== */
.footer {
    background: var(--navy);
    color: rgba(255, 255, 255, .7);
    padding: 72px 0 24px;
    font-size: .9rem;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.footer__brand p { color: rgba(255, 255, 255, .6); margin: 16px 0 20px; font-size: .9rem; max-width: 320px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
    display: grid; place-items: center;
    width: 38px; height: 38px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    color: var(--white);
}
.footer__social a:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-2px); }
.footer__social-icon { width: 18px; height: 18px; filter: brightness(0) invert(1); }

.footer__col h4 {
    color: var(--white);
    font-size: .9rem;
    margin-bottom: 16px;
    letter-spacing: .04em;
}
.footer__col a {
    display: block;
    color: rgba(255, 255, 255, .6);
    padding: 6px 0;
    font-size: .88rem;
}
.footer__col a:hover { color: var(--cyan); }
.footer__col address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: .85rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.5;
}
.footer__col address strong {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 4px;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    font-size: .8rem;
    color: rgba(255, 255, 255, .5);
    gap: 16px;
    flex-wrap: wrap;
}
.footer__bottom .heart { color: var(--pink); }

/* ===== FLOATING WHATSAPP ===== */
.float-wpp {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 90;
    display: grid;
    place-items: center;
    width: 60px; height: 60px;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(37, 211, 102, .4);
    animation: float-pulse 2.5s ease-in-out infinite;
}
.float-wpp__icon { width: 32px; height: 32px; display: block; filter: brightness(0) invert(1); }
.float-wpp:hover { transform: scale(1.08); }
.topbar__wpp-icon { width: 16px; height: 16px; display: inline-block; vertical-align: middle; }
.btn__wpp-icon { width: 18px; height: 18px; display: inline-block; vertical-align: middle; }
@keyframes float-pulse {
    0%, 100% { box-shadow: 0 12px 30px rgba(37, 211, 102, .4); }
    50% { box-shadow: 0 12px 30px rgba(37, 211, 102, .4), 0 0 0 14px rgba(37, 211, 102, .15); }
}

/* ===== HERO VIDEO ===== */
.hero-video {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    aspect-ratio: 4 / 5;
    z-index: 1;
}
.hero-video__frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(7, 17, 42, .45), 0 0 0 1px rgba(255, 255, 255, .08) inset;
    background: linear-gradient(135deg, #0b1540, #0025ea);
    transform: rotate(-1.5deg);
    transition: transform .4s ease;
}
.hero-video:hover .hero-video__frame { transform: rotate(0); }
.hero-video__player {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-video__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 17, 42, 0) 40%, rgba(0, 37, 234, .35) 100%),
        radial-gradient(120% 80% at 90% 10%, rgba(0, 229, 255, .25) 0%, transparent 50%);
    pointer-events: none;
}
.hero-video__chip {
    position: absolute;
    top: 18px;
    left: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(7, 17, 42, .55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: .02em;
    text-transform: lowercase;
}
.hero-video__chip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff3b7a;
    box-shadow: 0 0 0 0 rgba(255, 59, 122, .6);
    animation: live-pulse 1.6s ease-in-out infinite;
}
@keyframes live-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 59, 122, .6); }
    50% { box-shadow: 0 0 0 8px rgba(255, 59, 122, 0); }
}

/* Stats floater */
.hero__floater--stats {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    animation: float-y 4s ease-in-out infinite;
    animation-delay: -1s;
}
.stats-pill {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px 22px;
    background: var(--white);
    border-radius: 999px;
    box-shadow: 0 20px 44px rgba(7, 17, 42, .25);
    color: var(--navy);
}
.stats-pill > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}
.stats-pill strong {
    font-family: var(--display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 2px;
}
.stats-pill span {
    font-size: .68rem;
    color: var(--gray-600);
    letter-spacing: .04em;
    text-transform: uppercase;
}
.stats-pill i {
    display: block;
    width: 1px;
    height: 24px;
    background: rgba(7, 17, 42, .12);
}

/* ===== PHONES MOCKUP (HERO) ===== */
.phones {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
}
.phone {
    position: absolute;
    width: 260px;
    height: 540px;
    transition: transform .5s ease;
}
.phone--back {
    top: 20px;
    right: 0;
    transform: rotate(10deg);
    z-index: 1;
}
.phone--front {
    top: 40px;
    left: 0;
    transform: rotate(-6deg);
    z-index: 2;
}
.phones:hover .phone--front { transform: rotate(-4deg) translateY(-6px); }
.phones:hover .phone--back { transform: rotate(12deg) translateY(-4px); }

.phone__body {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #1a1a1c, #0a0a0c);
    border-radius: 42px;
    padding: 10px;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, .35),
        0 0 0 1px rgba(255, 255, 255, .08),
        inset 0 0 0 2px rgba(255, 255, 255, .04);
}
.phone__notch {
    position: absolute;
    top: 18px; left: 50%;
    transform: translateX(-50%);
    width: 80px; height: 22px;
    background: #000;
    border-radius: 20px;
    z-index: 3;
}
.phone__notch::after {
    content: '';
    position: absolute;
    top: 50%; right: 12px;
    transform: translateY(-50%);
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #1b2a4a;
    box-shadow: inset 0 0 0 2px rgba(0, 239, 248, .15);
}

.phone__screen {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 44px 24px 28px;
}
.phone__screen--tim {
    background: linear-gradient(155deg, #0025ea 0%, #1a3aff 55%, #2c4dff 100%);
    color: var(--white);
}
.phone__screen--moto {
    background: linear-gradient(165deg, #07112a 0%, #0f1f48 100%);
    color: var(--white);
}

.phone__statusbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 24px;
}
.phone__statusbar--light { color: rgba(255, 255, 255, .95); }
.phone__signals {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: .65rem;
}
.phone__signals b {
    display: inline-block;
    width: 3px;
    background: currentColor;
    border-radius: 1px;
}
.phone__signals b:nth-child(1) { height: 4px; }
.phone__signals b:nth-child(2) { height: 6px; }
.phone__signals b:nth-child(3) { height: 8px; }
.phone__signals b:nth-child(4) { height: 10px; }

/* --- TIM SCREEN --- */
.phone__hero { flex: 1; display: flex; flex-direction: column; }
.phone__chip {
    display: inline-block;
    align-self: flex-start;
    padding: 6px 12px;
    background: var(--yellow);
    color: var(--navy);
    border-radius: 999px;
    font-family: var(--display);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.phone__hero h4 {
    color: var(--white);
    font-family: var(--display);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.02em;
    margin-bottom: 20px;
}
.phone__cta-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}
.phone__cta {
    padding: 10px 16px;
    background: var(--white);
    color: var(--navy);
    border-radius: 999px;
    font-family: var(--display);
    font-weight: 600;
    font-size: .78rem;
    border: none;
    cursor: pointer;
}
.phone__smile {
    display: grid;
    place-items: center;
    width: 36px; height: 36px;
    background: rgba(255, 255, 255, .15);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .25);
}
.phone__smile img { width: 20px; height: 20px; }

.phone__metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 14px;
    margin-top: 18px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 16px;
    backdrop-filter: blur(12px);
}
.phone__metrics div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.phone__metrics strong {
    font-family: var(--display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}
.phone__metrics span {
    font-size: .62rem;
    color: rgba(255, 255, 255, .65);
    margin-top: 2px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* --- MOTO SCREEN --- */
.phone__content { flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; gap: 8px; }
.phone__brand {
    font-family: var(--display);
    font-weight: 500;
    font-size: .82rem;
    letter-spacing: .02em;
    color: rgba(255, 255, 255, .6);
    text-transform: lowercase;
}
.phone__content h4 {
    color: var(--white);
    font-family: var(--display);
    font-size: 1.3rem;
    letter-spacing: -.02em;
}
.phone__content p {
    color: var(--cyan);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.phone__apps {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 16px;
}
.phone__apps span {
    display: block;
    width: 28px; height: 28px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
}

/* --- NOTIFICATION FLOATER --- */
.hero__floater--notif {
    position: absolute;
    top: 10%;
    left: -40px;
    z-index: 4;
    animation: float-y 4s ease-in-out infinite;
    animation-delay: 0s;
}
.hero__floater--badge {
    position: absolute;
    bottom: 8%;
    right: -20px;
    z-index: 4;
    animation: float-y 4s ease-in-out infinite;
    animation-delay: -2s;
}
.notif {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 18px 14px 14px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(7, 17, 42, .2);
    max-width: 240px;
    color: var(--navy);
}
.notif__icon {
    display: grid;
    place-items: center;
    width: 32px; height: 32px;
    flex-shrink: 0;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
}
.notif strong {
    display: block;
    font-family: var(--display);
    font-size: .88rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
}
.notif em {
    display: block;
    font-size: .78rem;
    font-style: normal;
    color: var(--gray-600);
    line-height: 1.35;
}

.badge-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px 12px 12px;
    background: var(--white);
    border-radius: 999px;
    box-shadow: 0 16px 36px rgba(7, 17, 42, .2);
    color: var(--navy);
}
.badge-card__mark {
    display: grid;
    place-items: center;
    width: 40px; height: 40px;
    flex-shrink: 0;
    background: var(--blue);
    border-radius: 50%;
}
.badge-card__mark img { width: 22px; height: 22px; }
.badge-card strong {
    display: block;
    font-family: var(--display);
    font-size: .92rem;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 2px;
}
.badge-card span {
    display: block;
    font-size: .72rem;
    color: var(--gray-600);
    letter-spacing: .02em;
}

/* ===== SEAL CARD (HERO) — legacy ===== */
.seal-card {
    position: relative;
    max-width: 400px;
    margin-left: auto;
    padding: 48px 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    color: var(--navy);
    text-align: center;
    box-shadow: 0 40px 80px rgba(7, 17, 42, .35);
    transform: rotate(1deg);
    transition: transform .3s ease;
}
.seal-card:hover { transform: rotate(0); }
.seal-card__ribbon {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--yellow);
    color: var(--navy);
    padding: 8px 20px;
    border-radius: 999px;
    font-family: var(--display);
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    white-space: nowrap;
}
.seal-card__mark {
    display: grid;
    place-items: center;
    width: 120px; height: 120px;
    margin: 12px auto 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--pink));
    color: var(--yellow);
    box-shadow: 0 20px 40px rgba(0, 37, 234, .3);
}
.seal-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -.02em;
    margin-bottom: 16px;
}
.seal-card p { font-size: .95rem; color: var(--gray-600); margin-bottom: 24px; }
.seal-card__meta {
    display: flex;
    justify-content: space-around;
    padding-top: 20px;
    border-top: 1px solid var(--gray-100);
}
.seal-card__meta span {
    display: flex;
    flex-direction: column;
    font-family: var(--display);
    font-weight: 600;
    color: var(--navy);
    font-size: .95rem;
}
.seal-card__meta strong {
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 600;
    margin-bottom: 4px;
}

/* ===== CARREIRA ===== */
.carreira { padding: 88px 0; background: var(--gray-50); }
.carreira__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
}
.carreira__content p { font-size: 1rem; margin: 18px 0 24px; }
.carreira__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}
.carreira__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--display);
    font-weight: 500;
    color: var(--navy);
}
.carreira__list li svg { color: var(--green); flex-shrink: 0; }

.carreira__visual { position: relative; }
.carreira__quote {
    position: relative;
    padding: 48px 40px;
    background: var(--blue);
    color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-blue);
    overflow: hidden;
}
.carreira__quote::before {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(0, 239, 248, .3), transparent 70%);
    top: -100px; right: -100px;
    filter: blur(60px);
}
.carreira__quote-mark {
    color: var(--yellow);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.carreira__quote p {
    position: relative;
    z-index: 1;
    font-family: var(--display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1.45;
    margin-bottom: 18px;
    letter-spacing: -.01em;
}
.carreira__quote span {
    position: relative;
    z-index: 1;
    font-size: .9rem;
    color: rgba(255, 255, 255, .75);
    font-weight: 500;
}
.carreira__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== VAGAS ===== */
.vagas { padding: 80px 0; background: var(--gray-50); }
.vagas__filters {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: 12px;
    max-width: 980px;
    margin: 0 auto 20px;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.vagas__field { position: relative; display: flex; align-items: center; }
.vagas__field--search { grid-column: 1; }
.vagas__search-icon {
    position: absolute;
    left: 14px;
    color: rgba(7, 17, 42, .45);
    pointer-events: none;
}
.vagas__field input[type="search"],
.vagas__field select {
    width: 100%;
    height: 44px;
    padding: 0 16px;
    font: inherit;
    font-size: .95rem;
    color: var(--navy);
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-sm);
    transition: border-color .2s ease, box-shadow .2s ease;
    appearance: none;
    -webkit-appearance: none;
}
.vagas__field--search input { padding-left: 42px; }
.vagas__field select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2307112a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}
.vagas__field input:focus,
.vagas__field select:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 37, 234, .12);
}
.vagas__reset {
    height: 44px;
    padding: 0 18px;
    font: inherit;
    font-size: .9rem;
    font-weight: 600;
    color: var(--blue);
    background: transparent;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}
.vagas__reset:hover { background: rgba(0, 37, 234, .08); }

.vagas__count {
    max-width: 980px;
    margin: 0 auto 20px;
    font-size: .9rem;
    color: rgba(7, 17, 42, .6);
    font-weight: 500;
}
.vagas__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
    max-width: 980px;
    margin: 0 auto;
}
.vaga-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 22px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    text-decoration: none;
    color: inherit;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.vaga-card:hover {
    border-color: var(--blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.vaga-card__nivel {
    display: inline-flex;
    align-self: flex-start;
    padding: 4px 10px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--blue);
    background: rgba(0, 37, 234, .08);
    border-radius: 100px;
}
.vaga-card__titulo {
    font-family: var(--display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3;
    margin: 0;
    text-wrap: balance;
}
.vaga-card__local {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .88rem;
    color: rgba(7, 17, 42, .65);
    font-weight: 500;
}
.vaga-card__local svg { flex-shrink: 0; color: rgba(7, 17, 42, .4); }
.vaga-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px dashed var(--gray-100);
    font-size: .8rem;
    color: rgba(7, 17, 42, .55);
}
.vaga-card__meta-cta {
    color: var(--blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.vaga-card:hover .vaga-card__meta-cta { gap: 8px; }

.vagas__empty {
    max-width: 560px;
    margin: 32px auto 0;
    padding: 40px 24px;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
}
.vagas__empty p { color: rgba(7, 17, 42, .7); margin-bottom: 16px; }

.vagas__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}
.vagas__footer--cta {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}
.vagas__all-link {
    font-size: .9rem;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
}
.vagas__all-link:hover { text-decoration: underline; }

/* ===== CTA INFO ===== */
.cta__info {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius);
    padding: 32px;
    backdrop-filter: blur(14px);
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.cta__info-item { display: flex; flex-direction: column; gap: 4px; }
.cta__info-label {
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--cyan);
}
.cta__info-item strong {
    font-family: var(--display);
    font-weight: 600;
    color: var(--white);
    font-size: 1.05rem;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
    .reveal { opacity: 1; transform: none; }
    .hero__video { display: none; }
    .hero__video-overlay { background: var(--blue); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero__inner { min-height: 420px; }
    .hero__badge { bottom: 48px; right: 24px; }
    .hero__figure { width: min(380px, 42vw); right: -8px; }
    .hero__figure-tag--tim img,
    .hero__figure-tag--moto img { height: 18px; }
    .hero__figure-tag--anos strong { font-size: 1.5rem; }
    .plano__grid, .planos__grid, .lojas__grid { grid-template-columns: repeat(2, 1fr); }
    .ofertas__grid { grid-template-columns: 1fr 1.15fr 1fr; gap: 20px; }
    .oferta-card--featured { transform: scale(1.03); }
    .diferenciais__grid { grid-template-columns: repeat(2, 1fr); }
    .shape-grid { grid-template-columns: repeat(3, 1fr); }
    .shape-showcase { padding: 40px; }
    .sobre__visual { position: static; grid-template-columns: repeat(3, 1fr); }
    .sobre__card--main { grid-column: 1 / -1; }
    .beneficios__grid, .sobre__grid { grid-template-columns: 1fr; gap: 56px; }
    .cta__box { grid-template-columns: 1fr; padding: 56px 40px; }
    .carreira__grid { grid-template-columns: 1fr; gap: 56px; }
    .vagas__filters { grid-template-columns: 1fr 1fr; }
    .vagas__field--search { grid-column: 1 / -1; }
    .mv { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .plan-card--featured { transform: scale(1); }
    .seal-card { margin: 0 auto; transform: rotate(0); }
}

@media (max-width: 768px) {
    .topbar { font-size: .75rem; }
    .topbar__item { display: none; }
    .topbar__inner { justify-content: center; }
    .nav {
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        background: var(--white);
        padding: 20px;
        gap: 0;
        box-shadow: var(--shadow-md);
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: all .25s ease;
    }
    .nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .nav a { padding: 12px 0; border-bottom: 1px solid var(--gray-100); }
    .nav a:last-child { border: none; }
    .nav-toggle { display: flex; }
    .header__cta { display: none; }

    .hero { padding: 32px 0 0; }
    .hero__inner { min-height: 0; padding-bottom: 48px; }
    .hero__meta { gap: 20px; flex-wrap: wrap; margin-top: 28px; padding-top: 20px; }
    .hero__meta-item strong { font-size: 1.4rem; }
    .hero__desc { font-size: .95rem; margin: 16px 0 22px; }
    .hero__badge { display: none; }
    .hero__figure { display: none; }
    .hero__content { max-width: 100%; }
    .hero__video-overlay {
        background:
            linear-gradient(180deg, var(--blue) 0%, rgba(0, 37, 234, .85) 40%, rgba(7, 17, 42, .6) 100%);
    }
    .phones { max-width: 360px; aspect-ratio: 4 / 5; }
    .phone { width: 200px; height: 420px; }
    .phone__hero h4 { font-size: 1.2rem; }
    .phone__metrics strong { font-size: .9rem; }
    .hero__brands-logos { gap: 20px; }
    .hero__brands-logos span { font-size: 1rem; }

    .plano, .planos, .beneficios, .diferenciais, .sobre, .lojas, .carreira, .vagas, .cta { padding: 52px 0; }
    .vagas__filters { grid-template-columns: 1fr; padding: 14px; }
    .vagas__reset { justify-self: center; }
    .vagas__grid { grid-template-columns: 1fr; }
    .plano__grid, .planos__grid, .lojas__grid, .diferenciais__grid, .beneficios__visual, .sobre__visual { grid-template-columns: 1fr; }
    .ofertas__grid { grid-template-columns: 1fr; gap: 80px; margin-top: 100px; }
    .oferta-card--featured { transform: none; }
    .oferta-card--featured:hover { transform: translateY(-6px); }
    .shape-grid { grid-template-columns: 1fr; gap: 12px; }
    .shape-showcase { padding: 32px 24px; margin-top: 40px; }
    .shape-card { flex-direction: row; align-items: center; gap: 16px; padding: 18px; }
    .shape-card h4 { font-size: 1rem; }
    .shape-card__letter { width: 46px; height: 46px; font-size: 1.5rem; flex-shrink: 0; }
    .diferencial-item { padding: 24px 0; }

    .cta__box { padding: 40px 24px; gap: 32px; }
    .cta__info { padding: 24px; }
    .carreira__quote { padding: 32px 24px; }
    .carreira__quote p { font-size: 1.1rem; }
    .footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .footer__bottom { flex-direction: column; text-align: center; }

    .float-wpp { width: 54px; height: 54px; bottom: 16px; right: 16px; }
}

@media (max-width: 480px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.4rem; }
    .hero__title { font-size: clamp(1.75rem, 7vw, 2.25rem); }
    .section-head { margin-bottom: 32px; }
    .btn { padding: 12px 20px; font-size: .9rem; }
    .btn--lg { padding: 15px 24px; font-size: .95rem; }
    .plan-card { padding: 28px 22px; }
    .plan-card__value strong { font-size: 2.6rem; }
    .sobre__card--main { padding: 28px; }
    .sobre__card--accent, .sobre__card--dark { padding: 24px; }
    .sobre__card--accent strong, .sobre__card--dark strong { font-size: 1.8rem; }
    .carreira__quote { padding: 32px 24px; }
    .carreira__quote p { font-size: 1rem; }
    .cta__box { padding: 36px 24px; }
    .faq__item summary { padding: 16px 20px; font-size: .95rem; }
    .faq__item p { padding: 0 20px 20px; font-size: .9rem; }
}

/* ===== UTILITIES ===== */
.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== SKIP LINK ===== */
.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    background: var(--blue);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 8px;
    z-index: 1000;
    font-weight: 600;
    text-decoration: none;
    transition: top .2s;
}
.skip-link:focus {
    top: 16px;
    outline: 2px solid var(--yellow);
    outline-offset: 2px;
}

/* ===== LEGAL / PRIVACY PAGE ===== */
.header--solid {
    background: var(--white);
    border-bottom: 1px solid rgba(0, 37, 234, .08);
}
.legal {
    padding: 140px 0 80px;
    background: #f7f8fd;
    min-height: 80vh;
}
.legal__container {
    max-width: 820px;
}
.legal__head {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 2px solid rgba(0, 37, 234, .1);
}
.legal__head h1 {
    font-size: 2.8rem;
    margin: 12px 0 8px;
    color: var(--ink);
}
.legal__meta {
    color: var(--ink-muted);
    font-size: .9rem;
    margin: 0;
}
.legal__section {
    margin-bottom: 40px;
}
.legal__section h2 {
    font-size: 1.4rem;
    color: var(--blue);
    margin: 0 0 16px;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
}
.legal__section p,
.legal__section li {
    color: var(--ink);
    line-height: 1.7;
    font-size: 1rem;
}
.legal__section p { margin: 0 0 12px; }
.legal__section ul {
    padding-left: 22px;
    margin: 0 0 12px;
}
.legal__section ul li {
    margin-bottom: 8px;
}
.legal__section a {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.legal__section a:hover { color: var(--blue-dark, #001ab3); }
.footer--minimal {
    padding: 24px 0;
    background: var(--ink, #07112a);
    color: rgba(255, 255, 255, .7);
}
.footer--minimal .footer__bottom {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}
.footer--minimal a {
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
}
.footer--minimal a:hover { color: var(--white); text-decoration: underline; }

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 95;
    max-width: 640px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(7, 17, 42, .25);
    padding: 20px 24px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
    transform: translateY(calc(100% + 32px));
    opacity: 0;
    transition: transform .4s ease, opacity .4s ease;
}
.cookie-banner.is-visible {
    transform: translateY(0);
    opacity: 1;
}
.cookie-banner__text {
    font-size: .9rem;
    color: var(--ink);
    line-height: 1.5;
    margin: 0;
}
.cookie-banner__text a {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.cookie-banner__actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}
.cookie-banner__btn {
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 600;
    font-size: .85rem;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: transform .15s, box-shadow .15s;
}
.cookie-banner__btn--accept {
    background: var(--blue);
    color: var(--white);
}
.cookie-banner__btn--accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 37, 234, .3);
}
.cookie-banner__btn--reject {
    background: transparent;
    color: var(--ink);
    border: 1px solid rgba(7, 17, 42, .15);
}
.cookie-banner__btn--reject:hover {
    background: rgba(7, 17, 42, .05);
}
@media (max-width: 600px) {
    .cookie-banner {
        grid-template-columns: 1fr;
        padding: 18px 20px;
        bottom: 90px;
    }
    .cookie-banner__actions {
        justify-content: flex-end;
    }
}

/* ===== FAQ ===== */
.faq {
    padding: 96px 0;
    background: var(--white);
}
.faq__list {
    max-width: 820px;
    margin: 48px auto 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.faq__item {
    border: 1px solid rgba(0, 37, 234, .12);
    border-radius: 14px;
    background: #fafbff;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}
.faq__item[open] {
    border-color: var(--blue);
    box-shadow: 0 8px 24px rgba(0, 37, 234, .08);
}
.faq__summary {
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    list-style: none;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
}
.faq__summary::-webkit-details-marker { display: none; }
.faq__summary::after {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230025ea' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform .25s;
}
.faq__item[open] .faq__summary::after { transform: rotate(180deg); }
.faq__answer {
    padding: 0 24px 22px;
    color: var(--ink-muted);
    line-height: 1.65;
    font-size: .98rem;
}
.faq__answer a {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ===== FORM ===== */
.form {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}
.form__row {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr 1fr;
}
@media (max-width: 600px) {
    .form__row { grid-template-columns: 1fr; }
}
.form__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form__field label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: .04em;
}
.form__field input,
.form__field select,
.form__field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid rgba(0, 37, 234, .15);
    border-radius: 10px;
    background: var(--white);
    font: inherit;
    color: var(--ink);
    transition: border-color .15s, box-shadow .15s;
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 37, 234, .12);
}
.form__field textarea {
    min-height: 110px;
    resize: vertical;
}
.form__submit {
    justify-self: start;
    margin-top: 6px;
}
.form__hint {
    font-size: .8rem;
    color: var(--ink-muted);
    margin: 0;
}

/* ===== STORE LOCATOR (MAP) ===== */
.lojas__toolbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin: 0 auto 28px;
}
.lojas__search {
    width: 100%;
    max-width: 520px;
    position: relative;
}
.lojas__search input {
    width: 100%;
    padding: 14px 48px 14px 20px;
    border: 1.5px solid rgba(255, 255, 255, .25);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: var(--white);
    font: inherit;
    font-size: 1rem;
    backdrop-filter: blur(8px);
}
.lojas__search input::placeholder { color: rgba(255, 255, 255, .55); }
.lojas__search input:focus {
    outline: none;
    border-color: #00d4ff;
    background: rgba(255, 255, 255, .14);
}
.lojas__search svg {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, .6);
    pointer-events: none;
}
.lojas__filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}
.lojas__filter {
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .75);
    font-family: inherit;
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
}
.lojas__filter:hover {
    background: rgba(255, 255, 255, .1);
    color: var(--white);
}
.lojas__filter.is-active {
    background: var(--yellow, #ffbb01);
    color: var(--ink, #07112a);
    border-color: var(--yellow, #ffbb01);
}

.lojas__mapbox {
    display: grid;
    grid-template-columns: 1fr 380px;
    height: 620px;
    gap: 20px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 20px 60px rgba(7, 17, 42, .35);
}
.lojas__map {
    position: relative;
    height: 100%;
    background: #0a1533;
}
.lojas__map .leaflet-container {
    width: 100%;
    height: 100%;
    background: #0a1533;
    font-family: inherit;
}
.lojas__map-reset {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 500;
    width: 40px; height: 40px;
    border: none;
    border-radius: 10px;
    background: var(--white);
    color: var(--blue);
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: 0 4px 12px rgba(7, 17, 42, .25);
    transition: transform .15s, background .15s;
}
.lojas__map-reset:hover {
    background: var(--yellow, #ffbb01);
    color: var(--ink);
    transform: scale(1.05);
}

/* Custom pin */
.loja-pin {
    background: transparent !important;
    border: none !important;
    position: relative;
}
.loja-pin__shape {
    width: 18px;
    height: 18px;
    background: var(--blue);
    border-radius: 50%;
    border: 2.5px solid #fff;
    box-shadow:
        0 2px 4px rgba(0, 37, 234, .35),
        0 0 0 1px rgba(7, 17, 42, .08);
    position: relative;
    transition: transform .18s ease, box-shadow .18s ease;
    cursor: pointer;
}
.loja-pin__shape::after {
    content: '';
    position: absolute;
    left: 50%; bottom: -7px;
    width: 10px; height: 3px;
    background: rgba(7, 17, 42, .28);
    border-radius: 50%;
    transform: translateX(-50%);
    filter: blur(1.5px);
    pointer-events: none;
}
.loja-pin__dot { display: none; }

.loja-pin--matriz .loja-pin__shape {
    background: var(--yellow, #ffbb01);
    box-shadow:
        0 2px 6px rgba(255, 187, 1, .55),
        0 0 0 1px rgba(7, 17, 42, .08);
}
.loja-pin--motorola .loja-pin__shape {
    background: var(--navy, #07112a);
    box-shadow:
        0 2px 5px rgba(7, 17, 42, .55),
        0 0 0 1px rgba(7, 17, 42, .12);
}

.loja-pin:hover .loja-pin__shape {
    transform: scale(1.15);
}
.loja-pin.is-active { z-index: 1000; }
.loja-pin.is-active .loja-pin__shape {
    transform: scale(1.25);
}
.loja-pin.is-active .loja-pin__shape::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid currentColor;
    color: var(--blue);
    opacity: 0;
    animation: loja-pin-pulse 1.6s ease-out infinite;
}
.loja-pin--matriz.is-active .loja-pin__shape::before { color: var(--yellow, #ffbb01); }
.loja-pin--motorola.is-active .loja-pin__shape::before { color: var(--navy, #07112a); }

@keyframes loja-pin-pulse {
    0%   { transform: scale(.6); opacity: .7; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Popup */
.leaflet-popup-content-wrapper {
    border-radius: 14px !important;
    padding: 0 !important;
    box-shadow: 0 12px 30px rgba(7, 17, 42, .25) !important;
}
.leaflet-popup-content {
    margin: 0 !important;
    width: 260px !important;
    font-family: inherit;
}
.leaflet-popup-tip { box-shadow: 0 4px 10px rgba(7, 17, 42, .15) !important; }
.loja-popup {
    padding: 16px 18px 14px;
}
.loja-popup__tag {
    display: inline-block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 6px;
    margin-bottom: 6px;
}
.loja-popup__tag--matriz { background: var(--yellow, #ffbb01); color: var(--ink); }
.loja-popup__tag--motorola { background: rgba(7, 17, 42, .08); color: var(--navy, #07112a); }
.loja-popup h4 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1.05rem;
    margin: 0 0 4px;
    color: var(--ink);
}
.loja-popup__city {
    font-size: .78rem;
    color: var(--ink-muted);
    margin: 0 0 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.loja-popup__addr {
    font-size: .85rem;
    color: var(--ink);
    margin: 0 0 12px;
    line-height: 1.45;
}
.loja-popup__actions {
    display: flex;
    gap: 6px;
}
.loja-popup__btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: .78rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform .15s, box-shadow .15s;
}
.loja-popup__btn--maps {
    background: var(--blue);
    color: var(--white);
}
.loja-popup__btn--maps:hover { transform: translateY(-1px); box-shadow: 0 6px 14px rgba(0, 37, 234, .3); }
.loja-popup__btn--wpp {
    background: #25d366;
    color: var(--white);
}
.loja-popup__btn--wpp:hover { transform: translateY(-1px); box-shadow: 0 6px 14px rgba(37, 211, 102, .35); }

/* Side list */
.lojas__list {
    display: flex;
    flex-direction: column;
    min-height: 0;
    background: rgba(255, 255, 255, .02);
}
.lojas__list-header {
    padding: 18px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.lojas__list-header strong {
    color: var(--white);
    font-size: 1.05rem;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
}
.lojas__list-header span {
    color: rgba(255, 255, 255, .55);
    font-size: .78rem;
}
.lojas__list-items {
    flex: 1;
    overflow-y: auto;
    padding: 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, .18) transparent;
}
.lojas__list-items::-webkit-scrollbar { width: 6px; }
.lojas__list-items::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .18);
    border-radius: 3px;
}
.loja-card {
    width: 100%;
    text-align: left;
    padding: 12px 14px;
    border-radius: 10px;
    background: transparent;
    border: 1px solid transparent;
    color: var(--white);
    font-family: inherit;
    cursor: pointer;
    transition: background .15s, border-color .15s;
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 2px;
}
.loja-card:hover {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .1);
}
.loja-card.is-active {
    background: rgba(0, 212, 255, .12);
    border-color: rgba(0, 212, 255, .4);
}
.loja-card__name {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 600;
    font-size: .92rem;
    color: var(--white);
}
.loja-card__meta {
    font-size: .78rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.35;
}
.loja-card__state {
    display: inline-block;
    font-size: .62rem;
    font-weight: 700;
    padding: 2px 6px;
    background: rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .85);
    border-radius: 4px;
    margin-right: 4px;
}
.lojas__empty {
    display: none;
    padding: 28px 22px;
    text-align: center;
    color: rgba(255, 255, 255, .7);
    font-size: .9rem;
}
.lojas__empty.is-visible { display: block; }
.lojas__empty a { color: #00d4ff; text-decoration: underline; }

@media (max-width: 900px) {
    .lojas__mapbox {
        grid-template-columns: 1fr;
        height: auto;
    }
    .lojas__map { height: 420px; border-radius: 20px 20px 0 0; }
    .lojas__list {
        height: 480px;
        border-top: 1px solid rgba(255, 255, 255, .08);
    }
}

/* ===== TIMELINE / NOSSA TRAJETÓRIA (horizontal) ===== */
.timeline { padding: 80px 0; background: var(--gray-50); position: relative; }
.timeline__empty { text-align: center; color: var(--ink-muted, #5b6477); font-size: .95rem; }
.timeline__track {
    list-style: none;
    margin: 48px 0 0;
    padding: 0 4px 16px;
    display: flex;
    align-items: flex-start;
    justify-content: safe center; /* centraliza quando cabe; rola quando excede */
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
}
.timeline__item {
    position: relative;
    flex: 0 0 240px;
    display: grid;
    grid-template-rows: 30px 22px 1fr;
    justify-items: center;
    text-align: center;
    padding: 0 14px;
    scroll-snap-align: start;
}
/* Conector: cada item liga o ponto ANTERIOR ao seu, crescendo da esquerda. */
.timeline__item::before {
    content: "";
    position: absolute;
    top: 40px;                 /* alinhado ao centro vertical da bolinha */
    left: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    opacity: .4;
    z-index: 0;
    transform-origin: left center;
}
.timeline__item:first-child::before { display: none; }

/* Marco "Objetivo": afastado do "Hoje" + linha tracejada que segue ao futuro. */
.timeline__item--goal { margin-left: 64px; }
.timeline__item--goal::before {
    left: calc(-50% - 64px);
    width: calc(100% + 64px);
    background: none;
    height: 0;
    border-top: 2px dashed var(--blue);
    opacity: .5;
}
.timeline__item--goal::after {
    content: "";
    position: absolute;
    top: 40px;
    left: 50%;
    right: 0;
    height: 0;
    border-top: 2px dashed var(--blue);
    opacity: .5;
    z-index: 0;
    transform-origin: left center;
    -webkit-mask-image: linear-gradient(90deg, #000 25%, transparent);
    mask-image: linear-gradient(90deg, #000 25%, transparent);
}
.timeline__year {
    grid-row: 1;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--blue);
    line-height: 30px;
}
.timeline__dot {
    grid-row: 2;
    align-self: center;        /* centraliza a bolinha sobre a linha */
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--blue);
    z-index: 1;
}
.timeline__dot--highlight { border-color: var(--green); background: var(--green); }
.timeline__dot--goal { border-style: dashed; background: var(--gray-50); }
@keyframes timeline-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(170, 218, 18, .55); }
    50%      { box-shadow: 0 0 0 8px rgba(170, 218, 18, 0); }
}
@keyframes timeline-spin { to { transform: rotate(360deg); } }

/* --- Entrada sequencial (JS marca .timeline--ready e dispara .is-playing) --- */
.timeline--ready .timeline__dot { opacity: 0; transform: scale(0); }
.timeline--ready .timeline__dot--goal { transform: none; }
.timeline--ready .timeline__item::before,
.timeline--ready .timeline__item--goal::after { transform: scaleX(0); }
.timeline--ready .timeline__card { opacity: 0; transform: translateY(16px); }

.timeline--ready.is-playing .timeline__item::before {
    animation: tl-line .5s ease both calc((var(--i) - 1) * .5s);
}
.timeline--ready.is-playing .timeline__dot {
    animation: tl-pop .4s ease both calc(var(--i) * .5s);
}
.timeline--ready.is-playing .timeline__dot--highlight {
    animation: tl-pop .4s ease both calc(var(--i) * .5s),
               timeline-pulse 1.6s ease-in-out infinite calc(var(--i) * .5s + .4s);
}
.timeline--ready.is-playing .timeline__dot--goal {
    animation: tl-fade .4s ease both calc(var(--i) * .5s),
               timeline-spin 4s linear infinite calc(var(--i) * .5s + .4s);
}
.timeline--ready.is-playing .timeline__item--goal::after {
    animation: tl-line .5s ease both calc(var(--i) * .5s + .4s);
}
.timeline--ready.is-playing .timeline__card {
    animation: tl-card .5s ease both calc(var(--i) * .5s + .15s);
}
@keyframes tl-line { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes tl-pop  { from { opacity: 0; transform: scale(0); } to { opacity: 1; transform: scale(1); } }
@keyframes tl-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes tl-card { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
    .timeline--ready .timeline__dot,
    .timeline--ready .timeline__item::before,
    .timeline--ready .timeline__item--goal::after,
    .timeline--ready .timeline__card { opacity: 1 !important; transform: none !important; }
    .timeline--ready.is-playing .timeline__dot,
    .timeline--ready.is-playing .timeline__dot--highlight,
    .timeline--ready.is-playing .timeline__dot--goal,
    .timeline--ready.is-playing .timeline__item::before,
    .timeline--ready.is-playing .timeline__item--goal::after,
    .timeline--ready.is-playing .timeline__card { animation: none !important; }
}

/* Card */
.timeline__card {
    grid-row: 3;
    width: 100%;
    margin-top: 16px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: 0 6px 24px rgba(7, 17, 42, .06);
}
.timeline__card--highlight { background: var(--navy); color: var(--white); }
.timeline__card--goal {
    background: rgba(0, 37, 234, .04);
    border: 1.5px dashed rgba(0, 37, 234, .35);
    box-shadow: none;
}

/* Carrossel circular de fotos */
.timeline__carousel { display: flex; flex-direction: column; align-items: center; margin-bottom: 12px; }
.timeline__gallery {
    position: relative;
    width: 116px;
    height: 116px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--gray-100);
    box-shadow: 0 0 0 4px rgba(0, 37, 234, .1), 0 10px 22px rgba(7, 17, 42, .14);
}
.timeline__card--highlight .timeline__gallery { box-shadow: 0 0 0 4px rgba(255, 255, 255, .15), 0 10px 22px rgba(0, 0, 0, .3); }
.timeline__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .5s ease;
}
.timeline__slide.is-active { opacity: 1; }
.timeline__dots {
    display: flex;
    gap: 6px;
    margin-top: 10px;
}
.timeline__dot-btn {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 37, 234, .25);
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}
.timeline__dot-btn.is-active { background: var(--blue); transform: scale(1.3); }
.timeline__card--highlight .timeline__dot-btn { background: rgba(255, 255, 255, .35); }
.timeline__card--highlight .timeline__dot-btn.is-active { background: var(--white); }

.timeline__count {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    color: var(--ink, #07112a);
}
.timeline__card--highlight .timeline__count { color: var(--white); }
.timeline__cities { margin: 6px 0 0; font-size: .86rem; color: var(--ink-muted, #5b6477); line-height: 1.45; }
.timeline__card--highlight .timeline__cities { color: rgba(255, 255, 255, .72); }

/* Scrollbar discreta */
.timeline__track::-webkit-scrollbar { height: 6px; }
.timeline__track::-webkit-scrollbar-thumb { background: rgba(7, 17, 42, .18); border-radius: 999px; }

@media (max-width: 560px) {
    .timeline__item { flex-basis: 190px; }
}

/* ===== REDUCED MOTION (already defined above - skip) ===== */
