/* ========= RESET ========= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00ff7f;
    --primary-dark: #00cc66;
    --primary-soft: #003320;
    --secondary: #ffffff;
    --danger: #ff4d4f;

    --bg: #000000;
    --bg-alt: #04070d;
    --bg-soft: #050812;

    --text: #f9fafb;
    --muted: #a3a3a3;
    --border: #1f2933;
    --card-bg: #020617;

    --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.85);
    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-pill: 999px;
    --transition-fast: 0.22s ease-out;
    --transition-med: 0.35s ease;
}

/* ========= BASE ========= */
html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #000000;
    color: var(--text);
    line-height: 1.6;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #000000;
}
::-webkit-scrollbar-thumb {
    background: #111827;
    border-radius: 10px;
}

/* Container */
.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ========= HEADER ========= */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.10);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0;
}

/* Logo */
.logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.22rem 0.7rem;
    border-radius: 999px;
    background: radial-gradient(circle at top left, rgba(0,255,127,0.18), transparent 55%),
                rgba(15,23,42,0.95);
    border: 1px solid rgba(0,255,127,0.25);
    text-decoration: none;
}

.logo-text {
    font-weight: 700;
    text-transform: lowercase;
    font-size: 1.08rem;
    letter-spacing: 0.04em;
    color: var(--text);
}
.logo-accent {
    font-weight: 800;
    color: var(--primary);
    text-transform: lowercase;
    font-size: 1.08rem;
}

/* Nav */
.nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-link {
    color: var(--muted);
    font-size: 0.86rem;
    text-decoration: none;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    transition: color var(--transition-fast), background var(--transition-fast), transform 0.18s ease-out;
    border: 1px solid transparent;
}
.nav-link:hover {
    color: var(--text);
    background: rgba(15,23,42,0.65);
    border-color: rgba(0,255,127,0.35);
    transform: translateY(-1px);
}

/* Mobile menu button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
}
.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 10px;
}

/* ========= HERO ========= */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    padding: 2.5rem 0 3.5rem;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(0,255,127,0.15), transparent 55%),
        radial-gradient(circle at top right, rgba(0,255,127,0.14), transparent 50%),
        radial-gradient(circle at bottom, rgba(0,255,127,0.08), transparent 60%);
    opacity: 0.9;
    pointer-events: none;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 10% 0%, rgba(0,255,127,0.12) 0, transparent 55%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 620px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.18rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(0,255,127,0.4);
    background: rgba(15,23,42,0.9);
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #e5e7eb;
    margin-bottom: 0.75rem;
}
.hero-label::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 6px rgba(0,255,127,0.35);
}

.hero-title {
    font-size: 2.5rem;
    line-height: 1.15;
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
}
.hero-subtitle {
    color: #e5e7eb;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}
.hero-description {
    color: var(--muted);
    font-size: 0.94rem;
    max-width: 440px;
    margin-bottom: 1.4rem;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

/* ========= BUTTONS ========= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.55rem 1.35rem;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #22c55e);
    color: #022c22;
    box-shadow: 0 18px 35px rgba(0,255,127,0.34);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), #16a34a);
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 24px 44px rgba(0,255,127,0.45);
}

.btn-outline {
    background: rgba(15,23,42,0.85);
    color: #e5e7eb;
    border-color: rgba(0,255,127,0.5);
}
.btn-outline:hover {
    background: rgba(15,23,42,0.98);
    border-color: rgba(0,255,127,0.9);
    transform: translateY(-1px);
}

.btn-large {
    padding: 0.75rem 1.75rem;
    font-size: 0.92rem;
}
.btn-small {
    padding: 0.45rem 1.05rem;
    font-size: 0.82rem;
}

/* ========= SECTIONS ========= */
section {
    padding: 3.2rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2.2rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.18rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(0,255,127,0.35);
    background: rgba(15,23,42,0.95);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--muted);
    margin-bottom: 0.6rem;
}

.section-title {
    font-size: 1.7rem;
    margin-bottom: 0.4rem;
    letter-spacing: -0.02em;
}
.section-subtitle {
    font-size: 0.94rem;
    color: var(--muted);
}

/* ========= STEPS ========= */
.steps {
    background: radial-gradient(circle at top, rgba(0,255,127,0.15), #000000 60%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 1rem;
}

.step-card {
    position: relative;
    background: radial-gradient(circle at top left, rgba(0,255,127,0.12), transparent 55%),
                rgba(15,23,42,0.97);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(15,23,42,1);
    padding: 1.25rem 1.1rem;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast), background 0.35s ease;
}
.step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0,255,127,0.45);
    box-shadow: 0 26px 60px rgba(0,0,0,0.96);
}

.step-card-featured {
    background: radial-gradient(circle at top left, rgba(0,255,127,0.35), transparent 55%),
                rgba(15,23,42,0.98);
    border-color: rgba(0,255,127,0.65);
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.7rem;
    background: radial-gradient(circle at top, rgba(0,255,127,0.32), rgba(15,23,42,1));
    color: #e5e7eb;
}

.step-number {
    position: absolute;
    top: 0.85rem;
    right: 0.95rem;
    font-size: 0.75rem;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    border: 1px solid rgba(0,255,127,0.75);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    background: rgba(15,23,42,0.95);
}

.step-title {
    font-size: 1rem;
    margin-bottom: 0.35rem;
}
.step-description {
    font-size: 0.88rem;
    color: var(--muted);
}

/* ========= ABOUT ========= */
.about {
    background: radial-gradient(circle at top, rgba(0,255,127,0.18), transparent 60%);
}

.about-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 1.5rem 1.35rem;
    background: rgba(15,23,42,0.95);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,255,127,0.25);
    box-shadow: var(--shadow-soft);
}
.about-subtitle {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
}
.about-content p {
    font-size: 0.94rem;
    color: #e5e7eb;
}
.about-content p + p {
    margin-top: 0.55rem;
}

/* ========= FEATURES ========= */
.features {
    background: radial-gradient(circle at top, rgba(0,255,127,0.2), #000000 70%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 1rem;
}

.feature-card {
    background: rgba(15,23,42,0.97);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(15,23,42,1);
    padding: 1.25rem 1.1rem;
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast), background 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0,255,127,0.5);
    box-shadow: 0 26px 60px rgba(0,0,0,0.95);
}

.feature-card-featured {
    border-color: rgba(0,255,127,0.7);
    background: radial-gradient(circle at top, rgba(0,255,127,0.32), rgba(15,23,42,0.98));
}

.feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.6rem;
    background: radial-gradient(circle at top, rgba(0,255,127,0.45), rgba(15,23,42,1));
    color: #e5e7eb;
}

.feature-card h3 {
    font-size: 0.98rem;
    margin-bottom: 0.25rem;
}
.feature-card p {
    font-size: 0.86rem;
    color: var(--muted);
}

/* ========= DEMO / VÍDEO ========= */
.demo {
    background: radial-gradient(circle at top, rgba(0,255,127,0.18), #000000 70%);
}

.video-wrapper {
    max-width: 780px;
    margin: 0 auto 1.7rem;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 177%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(0,255,127,0.35);
    background: #000000;
}
.video-container iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.demo-features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 1rem;
    margin-top: 1rem;
}
.demo-feature {
    background: rgba(15,23,42,0.96);
    border-radius: var(--radius-md);
    border: 1px solid rgba(15,23,42,1);
    padding: 0.9rem 0.85rem;
    font-size: 0.86rem;
    color: var(--muted);
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}
.demo-icon {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(15,23,42,0.9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e5e7eb;
}
.demo-feature h4 {
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
}

/* ========= DOWNLOAD APP ========= */
.download {
    background: radial-gradient(circle at top, rgba(0,255,127,0.2), #000000 72%);
}

.download-content {
    display: grid;
    grid-template-columns: minmax(0,3fr) minmax(0,2fr);
    gap: 1.5rem;
    align-items: center;
}

.download-label {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #bbf7d0;
    margin-bottom: 0.2rem;
}
.download-sublabel {
    font-size: 0.9rem;
    color: #a5f3fc;
    margin-bottom: 0.7rem;
}
.download-title {
    font-size: 1.7rem;
    margin-bottom: 0.55rem;
}
.download-description {
    color: var(--muted);
    font-size: 0.94rem;
    margin-bottom: 0.8rem;
}
.download-list {
    list-style: none;
    margin-bottom: 1rem;
}
.download-list li {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.9rem;
    color: #d1d5db;
    margin-bottom: 0.22rem;
}
.download-list i {
    color: #4ade80;
    font-size: 0.88rem;
}

.download-image {
    display: flex;
    justify-content: center;
}
.phone-mockup {
    width: 170px;
    height: 320px;
    border-radius: 32px;
    border: 1px solid rgba(0,255,127,0.55);
    background: radial-gradient(circle at top, rgba(15,23,42,0.7), #000000 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 2.2rem;
    box-shadow: var(--shadow-soft);
}

/* ========= CATEGORIES ========= */
.categories {
    background: radial-gradient(circle at top, rgba(0,255,127,0.18), #000000 72%);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 1rem;
}

.category-card {
    background: rgba(15,23,42,0.96);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(15,23,42,1);
    padding: 1.2rem 1.05rem;
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}
.category-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0,255,127,0.7);
    box-shadow: 0 26px 60px rgba(0,0,0,0.96);
}
.category-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    background: radial-gradient(circle at top, rgba(0,255,127,0.3), rgba(15,23,42,1));
    color: #f9fafb;
}
.category-card h3 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
}
.category-card p {
    font-size: 0.9rem;
    color: var(--muted);
}

/* ========= TESTIMONIALS ========= */
.testimonials {
    background: radial-gradient(circle at top, rgba(0,255,127,0.18), #000000 75%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 1rem;
}

.testimonial-card {
    background: rgba(15,23,42,0.97);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,255,127,0.2);
    padding: 1.1rem 1rem;
    box-shadow: var(--shadow-soft);
}
.testimonial-stars {
    color: #facc15;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}
.testimonial-text {
    font-size: 0.9rem;
    color: #e5e7eb;
    margin-bottom: 0.7rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: rgba(15,23,42,0.9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e5e7eb;
}
.author-info h4 {
    font-size: 0.9rem;
}
.author-info p {
    font-size: 0.78rem;
    color: var(--muted);
}

/* ========= DRIVER ========= */
.driver {
    background: radial-gradient(circle at top, rgba(0,255,127,0.18), #000000 80%);
}

.driver-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.driver-benefit-card {
    background: rgba(15,23,42,0.97);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,255,127,0.25);
    padding: 1.1rem 1rem;
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.driver-benefit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0,255,127,0.6);
    box-shadow: 0 26px 60px rgba(0,0,0,0.96);
}

.driver-benefit-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: radial-gradient(circle at top, rgba(0,255,127,0.35), rgba(15,23,42,1));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e5e7eb;
    margin-bottom: 0.6rem;
}

.driver-benefit-card h3 {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.driver-benefit-card p {
    font-size: 0.85rem;
    color: var(--muted);
}

.driver-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 1rem;
    margin: 1.2rem 0 1.6rem;
}

.driver-step {
    background: rgba(15,23,42,0.97);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(15,23,42,1);
    padding: 1.05rem 0.95rem;
}
.driver-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: rgba(15,23,42,0.98);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e5e7eb;
    margin-bottom: 0.4rem;
}
.driver-step h3 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}
.driver-step p {
    font-size: 0.86rem;
    color: var(--muted);
}

.driver-benefits {
    margin: 0 auto 1.5rem;
    max-width: 620px;
    background: rgba(15,23,42,0.97);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,255,127,0.35);
    padding: 1.1rem 1.1rem;
}
.driver-benefits h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.driver-benefits ul {
    list-style: none;
    columns: 2;
    column-gap: 1.5rem;
}
.driver-benefits li {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 0.25rem;
    position: relative;
    padding-left: 1.1rem;
}
.driver-benefits li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* ========= FRANCHISE ========= */
.franchise {
    background: radial-gradient(circle at top, rgba(0,255,127,0.2), #000000 80%);
}

.franchise-content {
    display: grid;
    grid-template-columns: minmax(0,3fr) minmax(0,2fr);
    gap: 1.5rem;
}

.franchise-benefits h3 {
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
}

.franchise-lead {
    font-size: 0.9rem;
    color: #e5e7eb;
    margin-bottom: 0.8rem;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}
.benefit-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(15,23,42,0.97);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e5e7eb;
}
.benefit-item h4 {
    font-size: 0.95rem;
}
.benefit-item p {
    font-size: 0.86rem;
    color: var(--muted);
}

.franchise-form-container {
    background: rgba(15,23,42,0.98);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,255,127,0.3);
    padding: 1.2rem 1.1rem;
    box-shadow: var(--shadow-soft);
}
.franchise-form-container h3 {
    font-size: 1rem;
    margin-bottom: 0.45rem;
}

/* Forms gerais */
.form-group {
    margin-bottom: 0.7rem;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border-radius: 10px;
    border: 1px solid rgba(0,255,127,0.3);
    background: rgba(15,23,42,0.98);
    color: #e5e7eb;
    font-size: 0.88rem;
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background 0.2s ease;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6b7280;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(0,255,127,0.7);
    box-shadow: 0 0 0 1px rgba(0,255,127,0.45);
}

/* ========= CITIES ========= */
.cities {
    background: radial-gradient(circle at top, rgba(0,255,127,0.18), #000000 80%);
}

.cities-content {
    max-width: 820px;
    margin: 0 auto;
    background: rgba(15,23,42,0.97);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,255,127,0.3);
    padding: 1.4rem 1.2rem;
    box-shadow: var(--shadow-soft);
}

.cities-map {
    margin: 1rem 0;
}

.cities-map-frame {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(0,255,127,0.4);
}

.cities-map-frame iframe {
    width: 100%;
    height: 100%;
}

.cities-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 0.5rem;
    margin: 0.7rem 0 1rem;
}

.city-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: #e5e7eb;
}
.city-item i {
    color: #4ade80;
}

.cities-coming-soon h4 {
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
}
.cities-list-coming {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
}
.city-tag {
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    background: rgba(15,23,42,0.98);
    border: 1px solid rgba(148,163,184,0.4);
    font-size: 0.8rem;
    color: #d1d5db;
}

.city-tag-soon {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 255, 127, 0.08);
    font-weight: 600;
}

/* ========= FAQ ========= */
.faq {
    background: radial-gradient(circle at top, rgba(0,255,127,0.18), #000000 85%);
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.faq-item {
    border-radius: var(--radius-md);
    border: 1px solid rgba(0,255,127,0.35);
    background: rgba(15,23,42,0.98);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    color: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.faq-question i {
    font-size: 0.85rem;
    color: var(--muted);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1rem;
    transition: max-height 0.22s ease-out, padding 0.22s ease-out;
}
.faq-answer p {
    font-size: 0.86rem;
    color: var(--muted);
    padding: 0.35rem 0 0.7rem;
}

/* Estado aberto */
.faq-item.active .faq-answer {
    max-height: 160px;
    padding: 0 1rem 0.6rem;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* ========= INSTAGRAM ========= */
.instagram {
    background: radial-gradient(circle at top, rgba(0, 255, 127, 0.18), #000000 80%);
}

/* ========= CONTACT ========= */
.contact {
    background: radial-gradient(circle at top, rgba(0,255,127,0.15), #000000 85%);
}

.contact-content {
    display: grid;
    grid-template-columns: minmax(0,2fr) minmax(0,3fr);
    gap: 1.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}
.contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: rgba(15,23,42,0.97);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e5e7eb;
}
.contact-item h4 {
    font-size: 0.95rem;
}
.contact-item p {
    font-size: 0.88rem;
    color: var(--muted);
}

.contact-form {
    background: rgba(15,23,42,0.98);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,255,127,0.3);
    padding: 1.2rem 1.1rem;
}

/* ========= FOOTER ========= */
.footer {
    background: #000000;
    border-top: 1px solid rgba(15,23,42,1);
    padding: 1.8rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 1.5rem;
    margin-bottom: 1.1rem;
}

.footer-tagline {
    font-size: 0.86rem;
    color: var(--muted);
    margin-top: 0.5rem;
}

.footer-column h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 0.25rem;
}
.footer-links a {
    font-size: 0.84rem;
    color: var(--muted);
    text-decoration: none;
}
.footer-links a:hover {
    color: #e5e7eb;
}

.footer-bottom {
    border-top: 1px solid rgba(15,23,42,1);
    padding-top: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #6b7280;
}
.footer-legal {
    display: flex;
    gap: 0.7rem;
}
.footer-legal a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.8rem;
}
.footer-legal a:hover {
    color: #e5e7eb;
}

/* ========= FLOATING BUTTONS ========= */
.float-btn {
    position: fixed;
    right: 1.15rem;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f9fafb;
    cursor: pointer;
    box-shadow: 0 18px 40px rgba(0,0,0,0.9);
    z-index: 40;
    font-size: 1.15rem;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), opacity var(--transition-fast);
}

.whatsapp-btn {
    bottom: 1.15rem;
    background: #22c55e;
    width: auto;
    padding: 0 1.2rem;
    gap: 0.5rem;
}

.whatsapp-text {
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
}

.whatsapp-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 24px 48px rgba(22,163,74,0.75);
}
.scroll-top-btn {
    bottom: 4.8rem;
    background: rgba(15,23,42,0.98);
    border: 1px solid rgba(0,255,127,0.4);
    opacity: 0;
    pointer-events: none;
}
.scroll-top-btn.visible {
    opacity: 1;
    pointer-events: auto;
}

/* ========= RESPONSIVIDADE ========= */
@media (max-width: 960px) {
    .nav {
        position: absolute;
        inset: 56px 0 auto;
        background: rgba(15,23,42,0.98);
        border-bottom: 1px solid rgba(15,23,42,1);
        flex-direction: column;
        align-items: flex-start;
        padding: 0.7rem 1.2rem 0.9rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.22s ease-out;
    }
    .nav.open {
        max-height: 340px;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .steps-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
    .features-grid,
    .categories-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
    .demo-features {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
    .download-content,
    .franchise-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
    .driver-benefits ul {
        columns: 1;
    }
    .driver-benefits-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
    .whatsapp-text {
        display: none;
    }
    .whatsapp-btn {
        width: 46px;
        padding: 0;
    }
}

@media (max-width: 640px) {
    .hero {
        padding-top: 2rem;
        padding-bottom: 2.8rem;
    }
    .hero-title {
        font-size: 2.05rem;
    }
    .hero-subtitle {
        font-size: 0.98rem;
    }

    .steps-grid,
    .features-grid,
    .demo-features,
    .categories-grid,
    .testimonials-grid,
    .driver-steps,
    .cities-list,
    .driver-benefits-grid {
        grid-template-columns: 1fr;
    }

    .video-container {
        padding-bottom: 150%;
    }

    .download-content {
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 0.45rem;
        align-items: flex-start;
    }

    .float-btn {
        width: 42px;
        height: 42px;
        right: 0.9rem;
    }
    .scroll-top-btn {
        bottom: 4.4rem;
    }

    .cities-map-frame {
        height: 300px;
    }

    .driver-benefits ul {
        columns: 1;
    }
}