:root {
    --brand: #ffa500;
    --brand-strong: #e59600;
    --ink: #1e2329;
    --muted: #5f646b;
    --paper: #f4f2ee;
    --white: #ffffff;
    --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.16);
    --shadow-md: 0 18px 50px rgba(0, 0, 0, 0.12);
    --shadow-sm: 0 10px 25px rgba(0, 0, 0, 0.1);
    --radius: 24px;
    --radius-sm: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Sora", "Segoe UI", sans-serif;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.6;
    padding-top: 88px;
    padding-bottom: 96px;
}

body.menu-open {
    overflow: hidden;
}

body.menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 800;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

section {
    scroll-margin-top: 100px;
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.stack {
    display: flex;
    flex-direction: column;
}

.stack-section {
    position: relative;
    margin-top: -70px;
    border-radius: 36px 36px 0 0;
    z-index: var(--stack);
    box-shadow: 0 -24px 40px rgba(0, 0, 0, 0.08);
    overflow: visible;
}

.stack-section:first-child {
    margin-top: 0;
    border-radius: 0;
    box-shadow: none;
}

.section {
    position: relative;
    padding: clamp(70px, 9vw, 120px) 0;
}

.section--light {
    background: var(--white);
}

.section--soft {
    background: #fff7e6;
}

.section--dark {
    background: #14171c;
    color: var(--white);
}

.section--hero {
    background: radial-gradient(circle at top left, rgba(255, 165, 0, 0.2), transparent 55%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(244, 242, 238, 0.8));
    overflow: hidden;
}

.background {
    position: fixed;
    inset: 0;
    z-index: -2;
    overflow: hidden;
}

.glow {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    opacity: 0.45;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.4), transparent 65%);
}

.glow-1 {
    top: -180px;
    left: -140px;
}

.glow-2 {
    bottom: -220px;
    right: -140px;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.25), transparent 70%);
}

.grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
    background-size: 90px 90px;
    opacity: 0.35;
}

.noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
    opacity: 0.3;
    mix-blend-mode: multiply;
}

.orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(255, 165, 0, 0.35);
    animation: orbit 20s linear infinite;
}

.orbit-1 {
    width: 420px;
    height: 420px;
    top: 12%;
    right: -120px;
}

.orbit-2 {
    width: 260px;
    height: 260px;
    bottom: 18%;
    left: -80px;
    animation-duration: 26s;
}

@keyframes orbit {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(244, 242, 238, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
}

.scroll-progress {
    height: 3px;
    background: rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.scroll-progress span {
    position: absolute;
    inset: 0;
    width: 0;
    background: linear-gradient(90deg, var(--brand), #ffd27a);
    transition: width 0.2s ease;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0 12px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.logo img {
    height: 36px;
    width: auto;
}

.logo-sub {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    font-weight: 500;
    font-size: 15px;
}

.nav-links a {
    position: relative;
    transition: color 0.25s ease;
}

.nav-links a:hover {
    color: var(--brand-strong);
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--brand);
    transition: width 0.25s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    white-space: nowrap;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
}

.nav-toggle span {
    position: absolute;
    left: 9px;
    width: 22px;
    height: 2px;
    background: var(--ink);
    transition: 0.3s ease;
}

.nav-toggle span:nth-child(1) {
    top: 12px;
}

.nav-toggle span:nth-child(2) {
    top: 19px;
}

.nav-toggle span:nth-child(3) {
    top: 26px;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    padding: 14px 26px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--brand);
    color: var(--ink);
    box-shadow: 0 12px 25px rgba(255, 165, 0, 0.35);
}

.btn-primary:hover {
    background: var(--brand-strong);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: var(--brand);
    color: var(--ink);
    background: transparent;
}

.btn-outline:hover {
    background: var(--brand);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-ghost {
    border-color: transparent;
    background: rgba(0, 0, 0, 0.05);
}

.btn-ghost:hover {
    background: rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

.btn:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 4px;
}

.hero {
    padding-top: clamp(80px, 12vw, 140px);
    padding-bottom: 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(30px, 5vw, 60px);
    align-items: center;
}

.hero-copy h1 {
    font-family: "Bebas Neue", "Sora", sans-serif;
    font-size: clamp(42px, 6vw, 84px);
    line-height: 0.95;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
}

.hero-copy p {
    font-size: 17px;
    color: var(--muted);
    max-width: 520px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255, 165, 0, 0.18);
    color: #8a5a00;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 18px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 28px 0 24px;
}

.hero-price {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: stretch;
}

.price-card,
.stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 18px 20px;
    box-shadow: var(--shadow-sm);
}

.price-card {
    flex: 1 1 220px;
}

.price-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
}

.price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    margin: 6px 0;
}

.price-note {
    font-size: 13px;
    color: var(--muted);
}

.stat-card {
    display: grid;
    place-content: center;
    text-align: center;
    min-width: 130px;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
}

.stat-text {
    font-size: 13px;
    color: var(--muted);
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.chip {
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 13px;
    transition: 0.25s ease;
}

.chip:hover {
    border-color: var(--brand);
    color: var(--brand-strong);
}

.hero-visual {
    position: relative;
    display: grid;
    gap: 18px;
    justify-items: end;
}

.hero-card {
    background: var(--white);
    padding: 16px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: grid;
    gap: 16px;
    width: min(420px, 100%);
    transform-style: preserve-3d;
}

.hero-card img {
    border-radius: 18px;
    height: 260px;
    object-fit: cover;
}

.hero-card-info {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
    color: var(--muted);
}

.hero-card-info strong {
    display: block;
    color: var(--ink);
    font-size: 14px;
}

.hero-pill {
    align-self: flex-start;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--ink);
    color: var(--white);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
}

.hero-mini {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius);
    padding: 18px 20px;
    box-shadow: var(--shadow-sm);
    max-width: 320px;
}

.hero-mini--dark {
    background: var(--ink);
    color: var(--white);
}

.hero-mini h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

.hero-mini p {
    color: inherit;
    font-size: 14px;
    opacity: 0.8;
}

.hero-strip {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.strip-item {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-sm);
    padding: 16px 18px;
    display: grid;
    gap: 4px;
    box-shadow: var(--shadow-sm);
}

.strip-item span {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.strip-item strong {
    font-size: 16px;
}

.scroll-hint {
    margin-top: 40px;
    display: grid;
    place-items: center;
    gap: 8px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--muted);
}

.scroll-line {
    width: 2px;
    height: 40px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--brand), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.7;
    }

    50% {
        transform: translateY(6px);
        opacity: 1;
    }
}

.trust {
    padding: 70px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 30px;
    align-items: center;
}

.trust-copy h2 {
    font-family: "Bebas Neue", "Sora", sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    margin: 12px 0 16px;
}

.trust-list {
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

.trust-item {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 165, 0, 0.18);
    font-weight: 600;
    width: fit-content;
}

.logo-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    align-items: center;
}

.logo-card {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 16px;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-sm);
}

.logo-card img {
    max-height: 45px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    color: var(--muted);
}

.section-head {
    max-width: 680px;
    margin-bottom: 40px;
}

.section-head h2 {
    font-family: "Bebas Neue", "Sora", sans-serif;
    font-size: clamp(34px, 4vw, 54px);
    margin: 12px 0 16px;
}

.section-head p {
    color: var(--muted);
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 30px;
}

.sticky {
    position: sticky;
    top: 120px;
    align-self: start;
    display: grid;
    gap: 18px;
}

.steps {
    display: grid;
    gap: 20px;
}

.steps--stack .step {
    border-left: 3px solid rgba(255, 165, 0, 0.4);
}

.step {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.step::after {
    content: "";
    position: absolute;
    top: 18px;
    right: 18px;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 165, 0, 0.5);
    box-shadow: 0 0 0 6px rgba(255, 165, 0, 0.15);
}

.step-number {
    color: var(--brand);
    font-size: 26px;
    font-weight: 700;
}

.step h3 {
    margin: 12px 0 8px;
    font-size: 18px;
}

.step p {
    color: var(--muted);
    font-size: 14px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    align-items: start;
}

.checklist {
    display: grid;
    gap: 12px;
    margin: 24px 0;
}

.check-item {
    background: rgba(255, 165, 0, 0.14);
    padding: 12px 16px;
    border-radius: 14px;
    font-weight: 600;
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.about-badges span {
    background: var(--white);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.about-cards {
    display: grid;
    gap: 16px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow-sm);
}

.feature-card--highlight {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.18), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(255, 165, 0, 0.4);
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.feature-card p {
    color: var(--muted);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.service-card {
    background: var(--white);
    padding: 26px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.service-card .icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.coverage-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

.coverage-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
    justify-content: center;
}

.coverage-tags span {
    background: var(--white);
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 13px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.coverage-map {
    position: relative;
    height: 320px;
    border-radius: var(--radius);
    background: linear-gradient(120deg, #ffe7c0, #fff4df);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.map-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--ink);
    color: var(--white);
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.map-lines {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 20%, rgba(255, 165, 0, 0.5), transparent 40%),
        radial-gradient(circle at 80% 30%, rgba(0, 0, 0, 0.08), transparent 45%),
        radial-gradient(circle at 50% 70%, rgba(255, 165, 0, 0.3), transparent 45%);
}

.map-pulse {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 999px;
    border: 2px solid rgba(255, 165, 0, 0.6);
    animation: pulse 3s ease infinite;
}

.pulse-1 {
    top: 35%;
    left: 30%;
}

.pulse-2 {
    top: 55%;
    left: 55%;
    animation-delay: 0.6s;
}

.pulse-3 {
    top: 20%;
    left: 65%;
    animation-delay: 1.2s;
}

.pulse-4 {
    top: 80%;
    left: 62%;
    animation-delay: 1.8s;
}

@keyframes pulse {
    0% {
        transform: scale(0.7);
        opacity: 0.9;
    }

    70% {
        transform: scale(1.4);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 10px;
}

.plan-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.plan-card.featured {
    border: 2px solid var(--brand);
    transform: translateY(-8px);
}

.plan-card.featured::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.2), transparent 60%);
    opacity: 0.6;
    pointer-events: none;
}

.plan-tag {
    position: absolute;
    top: -14px;
    right: 18px;
    background: var(--brand);
    color: var(--ink);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.plan-sub {
    color: var(--muted);
    font-size: 14px;
}

.plan-price {
    font-size: 24px;
    font-weight: 700;
}

.plan-list {
    list-style: none;
    display: grid;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
}

.plan-list li::before {
    content: "•";
    color: var(--brand);
    margin-right: 6px;
}

.plan-card .btn {
    margin-top: auto;
}

.plan-note {
    margin-top: 20px;
    color: var(--muted);
    font-size: 13px;
    text-align: center;
}

.rider-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.rider-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rider-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.rider-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 16px;
}

.rider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.rider-card:hover img {
    transform: scale(1.05);
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list details {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid rgba(255, 165, 0, 0.5);
}

.faq-list summary {
    font-weight: 600;
    cursor: pointer;
}

.faq-list p {
    color: var(--muted);
    margin-top: 10px;
    font-size: 14px;
}

.cta-final {
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 165, 0, 0.25), transparent 55%);
    opacity: 0.9;
}

.cta-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    align-items: center;
    z-index: 1;
}

.cta-actions {
    display: grid;
    gap: 14px;
}

.site-footer {
    background: #0f1115;
    color: rgba(255, 255, 255, 0.8);
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.footer-grid h4 {
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--white);
}

.footer-grid a {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
}

.footer-logo {
    width: 160px;
    margin-bottom: 12px;
}

.footer-bottom {
    text-align: center;
    font-size: 12px;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.6);
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 110px;
    background: var(--brand);
    color: var(--ink);
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    z-index: 900;
    animation: floatBadge 5s ease-in-out infinite;
}

.mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(244, 242, 238, 0.96);
    backdrop-filter: blur(12px);
    display: none;
    gap: 12px;
    padding: 12px 16px 18px;
    z-index: 900;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-bar .btn {
    flex: 1;
}

.mdw-stacked-card-area {
    position: relative;
    margin-top: 10px;
}

.mdw-sticky-con {
    position: relative;
}

.mdw-stacked-cards {
    position: relative;
    display: grid;
    gap: 18px;
    max-width: 860px;
    margin: 0 auto;
}

.mdw-card {
    position: sticky;
    top: 116px;
    width: 100%;
    min-height: 320px;
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 16px;
    opacity: 1;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    pointer-events: auto;
}

.mdw-card p {
    max-width: 600px;
}

.mdw-card-head {
    display: grid;
    gap: 6px;
}

.mdw-card-head span {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
}

.mdw-card-head strong {
    font-family: "Bebas Neue", "Sora", sans-serif;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 0.95;
}

.mdw-card--orange {
    background: linear-gradient(135deg, #ff4e00, #ff9e00);
    color: #fff;
}

.mdw-card--dark {
    background: linear-gradient(135deg, #0f1a2f, #182f4f);
    color: #fff;
}

.mdw-card--light {
    background: linear-gradient(135deg, #ffffff, #f0f3f7);
    color: #20242c;
}

.mdw-card--sand {
    background: linear-gradient(135deg, #ffe5bf, #ffcf81);
    color: #1e2329;
}

.mdw-card.mdw-active-card {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.mdw-card.mdw-past-card {
    opacity: 1;
}

.mdw-card:not(.mdw-active-card) {
    filter: none;
}

.mdw-card .btn {
    justify-self: start;
    width: auto;
    max-width: max-content;
}

[data-animate] {
    opacity: 0;
    --reveal-x: 0px;
    --reveal-y: 24px;
    --reveal-scale: 1;
    transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale));
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
        clip-path 0.9s ease;
    will-change: transform, opacity;
}

[data-animate="left"] {
    --reveal-x: -30px;
    --reveal-y: 0px;
}

[data-animate="right"] {
    --reveal-x: 30px;
    --reveal-y: 0px;
}

[data-animate="zoom"] {
    --reveal-scale: 0.96;
    --reveal-y: 0px;
}

[data-animate="rise"] {
    --reveal-y: 24px;
}

[data-animate="clip"] {
    clip-path: inset(0 0 100% 0);
}

[data-animate].is-visible {
    opacity: 1;
    --reveal-x: 0px;
    --reveal-y: 0px;
    --reveal-scale: 1;
}

[data-animate="clip"].is-visible {
    clip-path: inset(0 0 0 0);
}

.float {
    animation: float 6s ease-in-out infinite;
}

.float-slow {
    animation: float 8s ease-in-out infinite;
}

.tilt {
    transform: perspective(900px) rotateY(-6deg) translateY(0);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@media (max-width: 960px) {
    .whatsapp-float {
        display: none;
    }


    .hero-grid,
    .about-grid,
    .coverage-grid,
    .cta-grid,
    .trust-grid,
    .split {
        grid-template-columns: 1fr;
    }

    .service-grid,
    .plan-grid,
    .rider-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-visual {
        justify-items: start;
    }

    .sticky {
        position: static;
    }

    .mdw-card {
        padding: 22px;
        top: 98px;
        min-height: 300px;
    }

    .nav-links {
        position: fixed;
        inset: 0;
        background: var(--paper);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 900;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-cta {
        display: none;
    }
}

@media (max-width: 720px) {
    body {
        padding-top: 76px;
        padding-bottom: 96px;
    }

    .logo-sub {
        display: none;
    }

    .hero {
        padding-top: 40px;
    }

    .hero-card img {
        height: 210px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .service-grid,
    .plan-grid,
    .rider-grid,
    .hero-strip,
    .logo-row,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        display: none;
    }

    .mobile-bar {
        display: flex;
    }

    .stack-section {
        margin-top: -40px;
    }

    .mdw-card {
        padding: 18px;
        top: 82px;
        min-height: 280px;
    }
}


/* ===== Revision v9: ajustes puntuales ===== */

.nav {
    gap: clamp(10px, 1.4vw, 18px);
    padding: 12px 0 10px;
}

.logo {
    min-width: max-content;
    gap: 10px;
}

.logo-sub {
    white-space: nowrap;
    font-size: 11px;
    letter-spacing: 1px;
}

.nav-links {
    flex: 1;
    justify-content: center;
    gap: clamp(12px, 1.4vw, 24px);
    font-size: clamp(13px, 0.95vw, 15px);
}

.nav-links>a {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.nav-links .btn {
    white-space: nowrap;
    padding: 10px 20px;
}

.nav-cta {
    padding: 12px 22px;
    font-size: clamp(13px, 0.95vw, 15px);
    white-space: nowrap;
}

.hero-grid {
    align-items: start;
    gap: clamp(34px, 6vw, 84px);
}

.hero-copy {
    max-width: 640px;
}

.hero-copy p {
    max-width: 620px;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
}

.hero-metric {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    padding: 14px 16px;
    display: grid;
    gap: 6px;
    box-shadow: var(--shadow-sm);
}

.hero-metric span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--muted);
}

.hero-metric strong {
    font-size: clamp(26px, 3.2vw, 34px);
    line-height: 1;
}

.hero-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.quick-link {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 13px;
    font-weight: 500;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease,
        transform 0.25s ease;
}

.quick-link:hover {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
    transform: translateY(-2px);
}

.hero-visual {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.hero-card-clean {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(4px);
}

.hero-card-clean img {
    height: clamp(240px, 24vw, 320px);
}

.hero-card-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.hero-card-steps span {
    text-align: center;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: #7a4a00;
    border: 1px solid rgba(255, 165, 0, 0.45);
    background: rgba(255, 165, 0, 0.16);
}

.hero-strip {
    margin-top: 34px;
    padding: 14px;
    border-radius: 22px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.55);
}

.strip-item {
    background: rgba(255, 255, 255, 0.9);
}

.trust {
    padding: clamp(92px, 9vw, 140px) 0 clamp(132px, 12vw, 170px);
}

.trust-grid {
    gap: clamp(34px, 5vw, 70px);
    align-items: center;
}

.logo-row {
    position: relative;
    min-height: 230px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 12px 0 12px 40px;
}

.logo-card {
    position: relative;
    width: clamp(140px, 15vw, 190px);
    height: clamp(84px, 8vw, 108px);
    margin-left: -34px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transform-origin: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.logo-card:first-child {
    margin-left: 0;
}

.logo-card:nth-child(1) {
    z-index: 4;
    transform: translateY(22px) rotate(var(--stack-rot, 0deg));
}

.logo-card:nth-child(2) {
    z-index: 3;
    transform: translateY(4px) rotate(var(--stack-rot, 0deg));
}

.logo-card:nth-child(3) {
    z-index: 2;
    transform: translateY(-8px) rotate(var(--stack-rot, 0deg));
}

.logo-card:nth-child(4) {
    z-index: 1;
    transform: translateY(14px) rotate(var(--stack-rot, 0deg));
}

.logo-card:hover {
    z-index: 5;
    transform: translateY(-8px) rotate(var(--stack-rot, 0deg)) scale(1.02);
    box-shadow: var(--shadow-md);
}

.service-action {
    border: 2px solid var(--brand);
    background: rgba(20, 23, 28, 0.2);
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
    box-shadow: none;
}

.service-action:hover,
.service-action:focus-visible {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
    transform: translateY(-2px);
}

.service-action:visited {
    color: #fff;
}

.coverage-map {
    height: clamp(300px, 32vw, 370px);
    border: 1px solid rgba(214, 172, 93, 0.35);
    background: linear-gradient(140deg, #f6e8ca, #f2ddb2);
}

.coverage-map-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.96;
}

.map-badge {
    z-index: 4;
    background: rgba(30, 35, 41, 0.82);
    backdrop-filter: blur(3px);
}

.map-point {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translate(-50%, -50%);
}

.map-point::before {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: #ff9d00;
    border: 2px solid #fff;
    box-shadow: 0 0 0 0 rgba(255, 157, 0, 0.7);
    animation: mapMarker 2.8s ease-out infinite;
}

.map-point::after {
    content: "";
    position: absolute;
    left: -8px;
    top: -8px;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 2px solid rgba(255, 157, 0, 0.45);
    animation: mapHalo 2.8s ease-out infinite;
}

.map-point span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #fff;
    background: rgba(30, 35, 41, 0.82);
    padding: 6px 10px;
    border-radius: 999px;
    white-space: nowrap;
}

.pulse-1 {
    top: 30%;
    left: 34%;
}

.pulse-2 {
    top: 48%;
    left: 50%;
}

.pulse-3 {
    top: 62%;
    left: 65%;
}

.pulse-4 {
    top: 82%;
    left: 60%;
}

.pulse-2::before,
.pulse-2::after {
    animation-delay: 0.55s;
}

.pulse-3::before,
.pulse-3::after {
    animation-delay: 1.1s;
}

.pulse-4::before,
.pulse-4::after {
    animation-delay: 1.65s;
}

@keyframes mapMarker {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 157, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(255, 157, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 157, 0, 0);
    }
}

@keyframes mapHalo {
    0% {
        transform: scale(0.65);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.btn-outline-light {
    border-color: var(--brand);
    color: #fff;
    background: rgba(255, 165, 0, 0.08);
}

.btn-outline-light:hover {
    background: var(--brand);
    color: #fff;
}

@media (max-width: 1240px) {
    .logo-sub {
        display: none;
    }

    .nav {
        gap: 10px;
    }

    .nav-links {
        gap: 12px;
        font-size: 13px;
    }

    .nav-links .btn {
        padding: 9px 15px;
    }

    .nav-cta {
        padding: 11px 16px;
    }
}

@media (max-width: 960px) {
    .hero-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero-visual {
        justify-content: flex-start;
    }

    .trust {
        padding-bottom: 110px;
    }

    .logo-row {
        min-height: 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        padding: 0;
    }

    .logo-card {
        width: 100%;
        height: 94px;
        margin: 0;
        transform: none !important;
    }
}

@media (max-width: 720px) {
    .hero-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-metric:last-child {
        grid-column: 1 / -1;
    }

    .hero-quick {
        gap: 8px;
    }

    .quick-link {
        font-size: 12px;
        padding: 8px 12px;
    }

    .hero-card-steps {
        grid-template-columns: 1fr;
    }

    .coverage-map {
        height: 300px;
    }

    .map-point span {
        font-size: 10px;
        padding: 5px 8px;
    }
}




/* ===== Revision v11: conversion-first landing ===== */

.hero-grid--conversion {
    align-items: center;
}

.hero-kicker {
    margin-bottom: 12px;
    color: #8a5a00;
    font-weight: 700;
}

.hero-subline {
    font-size: 20px;
    line-height: 1.35;
    color: var(--ink);
    font-weight: 600;
    margin-top: -2px;
    margin-bottom: 6px;
}

.hero-kpis {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.hero-kpi {
    background: transparent;
    border: none;
    border-radius: 16px;
    padding: 12px 14px;
    box-shadow: none;
    display: grid;
    gap: 4px;
}

.hero-kpi span {
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
    font-size: 11px;
}

.hero-kpi strong {
    font-size: 14px;
    line-height: 1.35;
}

.hero-disclaimer {
    margin-top: 12px;
    font-size: 12px;
    color: var(--muted);
}

.hero-grid--conversion .hero-card-clean {
    width: min(460px, 100%);
}

.hero-grid--conversion .hero-card-clean img {
    height: clamp(250px, 28vw, 320px);
}

.services .section-head {
    max-width: 720px;
}

.services .section-head p {
    max-width: 640px;
}

.mdw-stacked-cards {
    max-width: 920px;
}

.mdw-card {
    min-height: 300px;
}

.split--simple .split-head {
    max-width: 460px;
}

.split--simple .steps {
    max-width: 680px;
    margin-left: auto;
}

.coverage-grid--simple {
    align-items: center;
    justify-items: center;
    text-align: center;
}

.coverage-grid--simple .coverage-copy p {
    max-width: 560px;
    margin-inline: auto;
}

.coverage-grid--simple .coverage-map {
    width: 100%;
    max-width: 520px;
    margin-left: auto;
    height: 300px;
}

.section-head--compact {
    max-width: 620px;
    margin-bottom: 26px;
}

.about-compact {
    display: grid;
    gap: 24px;
}

.rider-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.rider-mini {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    padding: 12px;
    display: grid;
    gap: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.rider-mini img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 14px;
    object-fit: cover;
}

.rider-mini strong {
    font-size: 16px;
    line-height: 1.3;
}

.rider-mini span {
    font-size: 14px;
    color: var(--muted);
}

.trust--compact {
    padding: 72px 0 96px;
}

.trust--compact .trust-copy h2 {
    font-size: clamp(30px, 3.2vw, 44px);
}

.trust--compact .logo-row {
    min-height: 180px;
    padding-left: 24px;
}

.trust--compact .logo-card {
    width: clamp(130px, 14vw, 170px);
    height: 88px;
    margin-left: -24px;
}

.cta-grid--single {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.cta-grid--single .cta-actions {
    max-width: 420px;
    width: 100%;
    justify-self: end;
}

.btn-whatsapp {
    gap: 10px;
}

.btn-whatsapp img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.whatsapp-float {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
}

.whatsapp-float img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.mobile-bar {
    padding: 10px 14px calc(12px + env(safe-area-inset-bottom));
}

.mobile-whatsapp {
    width: 100%;
    gap: 10px;
    font-size: 18px;
    box-shadow: var(--shadow-md);
}

.mobile-whatsapp img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

@media (max-width: 960px) {
    .whatsapp-float {
        display: none !important;
    }

    .hero-kpis {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-kpi:last-child {
        grid-column: 1 / -1;
    }

    .split--simple .steps {
        max-width: 100%;
        margin-left: 0;
    }

    .cta-grid--single {
        grid-template-columns: 1fr;
    }

    .cta-grid--single .cta-actions {
        justify-self: start;
    }

    .rider-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trust--compact .logo-row {
        min-height: 0;
        padding-left: 0;
    }

    .trust--compact .logo-card {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 720px) {
    .hero-subline {
        font-size: 18px;
    }

    .hero-kpis {
        grid-template-columns: 1fr;
    }

    .hero-kpi:last-child {
        grid-column: auto;
    }

    .rider-strip {
        grid-template-columns: 1fr;
    }

    .coverage-grid--simple .coverage-map {
        height: 260px;
    }

    .mobile-whatsapp {
        font-size: 17px;
    }
}



/* ===== Revision v12: cards, mapa real, logos y WhatsApp ===== */

.mdw-card {
    grid-template-rows: auto auto auto;
    align-content: start;
    gap: 12px;
    min-height: 250px;
}

.mdw-card p {
    margin-bottom: 0;
}

.mdw-card .btn {
    margin-top: 8px;
}

.coverage-map {
    background: #dfe4ea;
}

.coverage-map-image {
    object-fit: cover;
    object-position: center;
    opacity: 1;
}

.logo-card img {
    max-height: 52px;
    filter: none;
    opacity: 1;
}

.wa-icon {
    width: 22px !important;
    height: 22px !important;
    max-width: 22px !important;
    max-height: 22px !important;
    flex: 0 0 22px !important;
    object-fit: contain;
    display: inline-block !important;
    vertical-align: middle;
}

.btn .wa-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    object-fit: contain;
}

.hero-grid--conversion .hero-card-clean .wa-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    border-radius: 0;
    object-fit: contain;
}

.nav-cta .wa-icon {
    width: 20px !important;
    height: 20px !important;
    max-width: 20px !important;
    max-height: 20px !important;
    flex: 0 0 20px !important;
}

.btn-whatsapp .wa-icon,
.mobile-whatsapp .wa-icon,
.whatsapp-float .wa-icon {
    width: 24px !important;
    height: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
    flex: 0 0 24px !important;
}

@media (max-width: 960px) {
    .mdw-card {
        min-height: 238px;
        gap: 10px;
    }

    .mdw-card .btn {
        margin-top: 6px;
    }
}

@media (max-width: 720px) {
    .mdw-card {
        min-height: 220px;
        gap: 8px;
    }

    .btn .wa-icon {
        width: 20px !important;
        height: 20px !important;
        flex: 0 0 20px !important;
    }

    .btn-whatsapp .wa-icon,
    .mobile-whatsapp .wa-icon,
    .whatsapp-float .wa-icon {
        width: 22px !important;
        height: 22px !important;
        flex: 0 0 22px !important;
    }
}



/* ===== Revision v13: CTA foco bateria ===== */

.btn-battery-cta {
    border-color: rgba(255, 165, 0, 0.45);
    background: rgba(255, 255, 255, 0.9);
    color: var(--ink);
}

.btn-battery-cta:hover {
    border-color: var(--brand);
    background: var(--brand);
    color: var(--ink);
}

.mobile-bar {
    gap: 10px;
}

.mobile-whatsapp,
.mobile-battery {
    flex: 1;
}

.mobile-battery {
    background: rgba(255, 255, 255, 0.88);
    border: 2px solid rgba(255, 165, 0, 0.35);
    font-weight: 700;
}

.mobile-battery:hover {
    background: rgba(255, 165, 0, 0.2);
}

@media (max-width: 720px) {

    .mobile-whatsapp,
    .mobile-battery {
        font-size: 16px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .mobile-battery .wa-icon,
    .mobile-whatsapp .wa-icon {
        width: 20px !important;
        height: 20px !important;
        flex: 0 0 20px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}