/* ================================================================
   REBOKI — Site Institucional
   Paleta: Navy #1e3a5f  |  Orange #f47820
   ================================================================ */

:root {
    --navy:         #1e3a5f;
    --navy-dark:    #132844;
    --navy-mid:     #264d7a;
    --orange:       #f47820;
    --orange-dark:  #d96510;
    --orange-light: #ff9a40;
    --white:        #ffffff;
    --light:        #f5f8fc;
    --light-mid:    #e8eef6;
    --text:         #1a2332;
    --text-mid:     #4a5568;
    --text-light:   #8898aa;
    --radius:       12px;
    --radius-lg:    24px;
    --shadow:       0 4px 24px rgba(30, 58, 95, 0.10);
    --shadow-lg:    0 16px 48px rgba(30, 58, 95, 0.16);
    --transition:   all 0.25s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 22px 0;
    transition: var(--transition);
}
.navbar.scrolled {
    background: var(--navy-dark);
    padding: 14px 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.28);
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
}
.nav-logo svg { flex-shrink: 0; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
    background: var(--orange) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 50px;
    font-weight: 700 !important;
}
.nav-cta:hover {
    background: var(--orange-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(244, 120, 32, 0.4);
}
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
}
.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    line-height: 1;
}
.btn-lg { padding: 17px 36px; font-size: 17px; }
.btn-primary {
    background: var(--orange);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(244, 120, 32, 0.42);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.38);
}
.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}
.btn-white {
    background: var(--white);
    color: var(--navy);
}
.btn-white:hover {
    background: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.22);
}
.btn-navy {
    background: var(--navy);
    color: var(--white);
}
.btn-navy:hover {
    background: var(--navy-dark);
    transform: translateY(-2px);
}

/* ================================================================
   SECTION BASE
   ================================================================ */
.section { padding: 100px 0; }
.section-light  { background: var(--light); }
.section-white  { background: var(--white); }
.section-navy   { background: linear-gradient(140deg, var(--navy) 0%, var(--navy-dark) 100%); color: var(--white); }
.section-orange { background: linear-gradient(140deg, var(--orange) 0%, var(--orange-dark) 100%); color: var(--white); }

.section-header {
    text-align: center;
    margin-bottom: 72px;
}
.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 14px;
}
.section-navy   .section-label,
.section-orange .section-label { color: rgba(255, 255, 255, 0.65); }
.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: var(--text);
    margin-bottom: 18px;
}
.section-navy   .section-title,
.section-orange .section-title { color: var(--white); }
.section-subtitle {
    font-size: 18px;
    color: var(--text-mid);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.75;
}
.section-navy   .section-subtitle { color: rgba(255, 255, 255, 0.70); }
.section-orange .section-subtitle { color: rgba(255, 255, 255, 0.88); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
    min-height: 100vh;
    background: linear-gradient(150deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-mid) 100%);
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -240px; right: -200px;
    width: 750px; height: 750px;
    background: radial-gradient(circle, rgba(244, 120, 32, 0.16) 0%, transparent 68%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -120px; left: -120px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    pointer-events: none;
}
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(244, 120, 32, 0.14);
    border: 1px solid rgba(244, 120, 32, 0.30);
    color: var(--orange-light);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.4px;
    margin-bottom: 28px;
}
.hero-title {
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.10;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}
.hero-title span { color: var(--orange); }
.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
    margin-bottom: 42px;
    max-width: 480px;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}
.hero-stat strong {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 5px;
}
.hero-stat span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.50);
    font-weight: 500;
}
.hero-stat-divider {
    width: 1px;
    height: 42px;
    background: rgba(255, 255, 255, 0.14);
}

/* Phone mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.phone-wrap {
    position: relative;
    filter: drop-shadow(0 48px 96px rgba(0, 0, 0, 0.45));
}
.phone {
    width: 275px;
    height: 568px;
    background: #0d1b2b;
    border-radius: 44px;
    border: 3px solid rgba(255, 255, 255, 0.10);
    overflow: hidden;
    position: relative;
}
.phone-notch {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 88px;
    height: 8px;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 4px;
    z-index: 10;
}
.phone-screen {
    width: 100%;
    height: 100%;
    background: #eef3f9;
    display: flex;
    flex-direction: column;
}
/* Map area */
.phone-map {
    flex: 1;
    background: #dce8f5;
    position: relative;
    overflow: hidden;
}
.phone-map::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(30, 58, 95, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 58, 95, 0.06) 1px, transparent 1px);
    background-size: 28px 28px;
}
/* Road lines */
.phone-map::after {
    content: '';
    position: absolute;
    top: 25%; left: 18%;
    width: 62%; height: 45%;
    border: 3px solid rgba(244, 120, 32, 0.75);
    border-right: none;
    border-bottom: none;
    border-radius: 14px 0 0 0;
}
.map-pin-origin {
    position: absolute;
    top: 67%; left: 74%;
    width: 16px; height: 16px;
    background: var(--navy);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 4px rgba(30, 58, 95, 0.22);
}
.map-pin-dest {
    position: absolute;
    top: 22%; left: 16%;
    width: 20px; height: 20px;
    background: var(--orange);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    border: 3px solid var(--white);
    box-shadow: 0 4px 14px rgba(244, 120, 32, 0.45);
}
.map-truck {
    position: absolute;
    top: 46%; left: 44%;
    font-size: 22px;
    transform: translate(-50%, -50%);
    animation: truckAnim 3.5s ease-in-out infinite alternate;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}
@keyframes truckAnim {
    0%   { transform: translate(-50%, -50%) scale(1.0); }
    100% { transform: translate(-36%, -62%) scale(1.06); }
}
/* Status card at bottom of phone */
.phone-card {
    background: var(--white);
    margin: 0 12px 14px;
    border-radius: 18px;
    padding: 14px 16px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.card-provider {
    display: flex;
    align-items: center;
    gap: 10px;
}
.provider-avatar {
    width: 38px; height: 38px;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    flex-shrink: 0;
}
.provider-info strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
}
.provider-info span {
    font-size: 11px;
    color: var(--orange);
    font-weight: 600;
}
.provider-rating {
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
}
/* Floating bubbles */
.phone-float {
    position: absolute;
    background: var(--white);
    border-radius: 14px;
    padding: 10px 14px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    animation: floatBob 4s ease-in-out infinite;
}
.phone-float-1 { top: 90px; right: -96px; animation-delay: 0s; }
.phone-float-2 { bottom: 110px; left: -100px; animation-delay: 2s; }
.float-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.float-icon-orange { background: rgba(244, 120, 32, 0.12); }
.float-icon-navy   { background: rgba(30, 58, 95, 0.09); }
.float-meta {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.float-meta small { font-size: 10px; color: var(--text-light); font-weight: 400; }
.float-meta strong { font-size: 12px; color: var(--text); }
@keyframes floatBob {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-9px); }
}

/* ================================================================
   COMO FUNCIONA — Steps
   ================================================================ */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}
.steps::before {
    content: '';
    position: absolute;
    top: 42px;
    left: calc(16.67% + 24px);
    right: calc(16.67% + 24px);
    height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    opacity: 0.30;
}
.step { text-align: center; padding: 0 12px; }
.step-number {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; font-weight: 800;
    color: var(--white);
    margin: 0 auto 28px;
    position: relative; z-index: 1;
    box-shadow: 0 8px 22px rgba(244, 120, 32, 0.32);
}
.step h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 14px;
}
.step p {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.75;
}

/* ================================================================
   PARA PRESTADORES
   ================================================================ */
.prestadores-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.prestadores-content .section-label,
.prestadores-content .section-title { text-align: left; }
.prestadores-subtitle {
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 38px;
}
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 44px;
}
.benefit-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 500;
}
.benefit-icon {
    width: 28px; height: 28px;
    background: rgba(244, 120, 32, 0.22);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--orange-light);
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}
/* Earnings mockup cards */
.prestadores-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.earnings-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--radius-lg);
    padding: 28px;
    backdrop-filter: blur(12px);
}
.earnings-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.earnings-header span { font-size: 14px; color: rgba(255, 255, 255, 0.55); }
.earnings-badge {
    background: rgba(244, 120, 32, 0.22);
    color: var(--orange-light);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}
.earnings-amount {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    margin-bottom: 4px;
}
.earnings-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 24px;
}
.bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.50);
}
.bar-label { width: 28px; text-align: right; flex-shrink: 0; }
.bar-track {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    overflow: hidden;
}
.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    border-radius: 3px;
}
.mini-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.mini-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--radius);
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.mini-card-icon {
    width: 44px; height: 44px;
    background: rgba(244, 120, 32, 0.16);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.mini-card strong {
    display: block;
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}
.mini-card span {
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
}

/* ================================================================
   DIFERENCIAIS — Feature cards
   ================================================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.feature-card {
    background: var(--white);
    border: 1.5px solid var(--light-mid);
    border-radius: var(--radius-lg);
    padding: 36px 26px;
    text-align: center;
    transition: var(--transition);
    cursor: default;
}
.feature-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.feature-icon {
    width: 66px; height: 66px;
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    margin: 0 auto 26px;
}
.feat-orange { background: rgba(244, 120, 32, 0.10); }
.feat-navy   { background: rgba(30, 58, 95, 0.07); }
.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}
.feature-card p {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.75;
}

/* ================================================================
   DOWNLOAD
   ================================================================ */
.download-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.store-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 40px;
}
.store-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    padding: 14px 22px;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    min-width: 170px;
}
.store-btn:hover {
    background: rgba(255, 255, 255, 0.20);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}
.store-btn-icon { font-size: 30px; line-height: 1; }
.store-btn-text span {
    display: block;
    font-size: 11px;
    font-weight: 400;
    opacity: 0.65;
    margin-bottom: 2px;
    white-space: nowrap;
}
.store-btn-text strong {
    font-size: 17px;
    font-weight: 700;
    white-space: nowrap;
}
/* Download visual */
.download-visual {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
}
.dl-phone {
    width: 155px; height: 310px;
    background: rgba(255, 255, 255, 0.10);
    border: 2px solid rgba(255, 255, 255, 0.20);
    border-radius: 30px;
    display: flex; align-items: center; justify-content: center;
    font-size: 52px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.20);
    transition: var(--transition);
}
.dl-phone:hover { transform: translateY(-6px); }
.dl-phone-offset {
    margin-bottom: 36px;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.28);
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.55);
    padding: 72px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}
.footer-brand .nav-logo { margin-bottom: 18px; }
.footer-brand p {
    font-size: 14px;
    line-height: 1.75;
    max-width: 280px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.50);
}
.social-links { display: flex; gap: 10px; }
.social-link {
    width: 36px; height: 36px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}
.social-link:hover { background: var(--orange); }
.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.50);
    transition: var(--transition);
}
.footer-col ul a:hover { color: var(--orange); }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom a {
    color: rgba(255, 255, 255, 0.35);
    transition: var(--transition);
}
.footer-bottom a:hover { color: var(--white); }
.footer-legal { display: flex; gap: 20px; }

/* ================================================================
   ANIMATIONS (Intersection Observer)
   ================================================================ */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.step:nth-child(2)        { transition-delay: 0.10s; }
.step:nth-child(3)        { transition-delay: 0.20s; }
.feature-card:nth-child(2){ transition-delay: 0.08s; }
.feature-card:nth-child(3){ transition-delay: 0.16s; }
.feature-card:nth-child(4){ transition-delay: 0.24s; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .hero .container { gap: 40px; }
    .phone-float-1 { right: -70px; }
    .phone-float-2 { left: -70px; }
}

@media (max-width: 768px) {
    .section { padding: 72px 0; }

    /* Navbar mobile */
    .nav-links {
        display: none;
        position: fixed;
        top: 64px; left: 0; right: 0;
        background: var(--navy-dark);
        flex-direction: column;
        gap: 0;
        padding: 8px 0 24px;
        box-shadow: 0 12px 32px rgba(0,0,0,0.3);
        z-index: 999;
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 14px 28px; display: block; }
    .nav-cta {
        margin: 8px 28px 0 !important;
        border-radius: var(--radius) !important;
        text-align: center;
    }
    .nav-hamburger { display: flex; }

    /* Hero */
    .hero { padding: 100px 0 64px; min-height: auto; }
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero-subtitle { max-width: none; margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { display: none; }

    /* Steps */
    .steps { grid-template-columns: 1fr; }
    .steps::before { display: none; }

    /* Prestadores */
    .prestadores-grid { grid-template-columns: 1fr; gap: 52px; }
    .prestadores-content .section-label,
    .prestadores-content .section-title { text-align: center; }
    .prestadores-subtitle { text-align: center; }
    .benefits-list { align-items: flex-start; }

    /* Features */
    .features-grid { grid-template-columns: 1fr 1fr; }

    /* Download */
    .download-grid { grid-template-columns: 1fr; gap: 48px; }
    .download-visual { display: none; }
    .section-orange .section-header { text-align: left; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-legal { justify-content: center; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .store-buttons { flex-direction: column; }
    .store-btn { justify-content: center; }
    .mini-cards { grid-template-columns: 1fr; }
}
