/* === PEGUE CAR - ESTILOS PRINCIPAIS (ATUALIZADO: cores da logo) ===
   Alterações principais:
   - :root atualizado com suas cores (--brand, --brand-2, --offwhite, --bg, --text, --muted, --surface, --surface-2, --border)
   - body.theme-light mantido conforme fornecido
   - Ajustes leves em hero, solicitar-corrida, whatsapp, footer e sombras para melhor contraste
   - Mantidas classes originais e estrutura, apenas mapeamentos de cores e alguns hardcodes alterados
*/

/* ==== RESET E VARIÁVEIS (ATUALIZADAS) ==== */
:root {
    /* Paleta principal (tema escuro padrão) */
    --brand: #00E182;
    --brand-2: #00B86A;
    --offwhite: #EAECE6;

    --bg: #0B0D10;
    --text: #E6E8EC;
    --muted: #A7B0BD;

    --surface: #111418;
    --surface-2: #0E1115;
    --border: #1F2430;

    /* Variáveis derivadas (usadas no CSS existente) */
    --primary-color: var(--brand);
    --primary-dark: var(--brand-2);
    --primary-light: rgba(0, 225, 130, 0.12);
    --secondary-color: var(--brand-2);
    --secondary-dark: #009e58;
    --accent-color: var(--brand);

    /* Text */
    --text-dark: var(--text);     /* para headings/elementos que precisam de cor principal no tema escuro */
    --text-light: var(--muted);   /* para textos secundários */
    --text-white: #FFFFFF;

    /* superfícies mapeadas para tema escuro */
    --bg-white: var(--surface);   /* 'bg-white' no original era superfície clara - aqui mapeamos para surface escuro */
    --bg-light: var(--surface-2); /* alternativas claras do tema escuro */
    --border-color: var(--border);

    /* Sombreamento / radius / utilitários */
    --shadow-sm: 0 2px 6px rgba(0,0,0,0.6);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.55);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.6);
    --shadow-lg-soft: 0 8px 20px rgba(0,0,0,0.45);

    --glass: rgba(255,255,255,0.03);
    --glass-2: rgba(0,225,130,0.08);

    --radius: 14px;
    --border-radius: var(--radius);
    --transition: all 0.28s ease;
    --max-width: 1200px;

    /* focus */
    --focus-ring: 3px solid rgba(0,225,130,0.12);
}

/* Tema claro */
body.theme-light{
  --brand:#00E182;
  --brand-2:#00B86A;
  --offwhite:#EAECE6;
  --bg:#FFFFFF;
  --text:#1A1D23;
  --muted:#5A6270;
  --surface:#F5F7FA;
  --surface-2:#EBEEF3;
  --border:#D1D5DB;

  /* Derived for light */
  --primary-color: var(--brand);
  --primary-dark: var(--brand-2);
  --primary-light: rgba(0, 225, 130, 0.09);
  --secondary-color: var(--brand-2);
  --secondary-dark: #007b4f;

  --text-dark: var(--text);
  --text-light: var(--muted);
  --text-white: #ffffff;

  --bg-white: var(--surface);
  --bg-light: var(--surface-2);
  --border-color: var(--border);

  --shadow-sm: 0 1px 3px rgba(16,24,40,0.06);
  --shadow-md: 0 8px 24px rgba(16,24,40,0.08);
  --shadow-lg: 0 20px 40px rgba(16,24,40,0.10);

  --glass: rgba(0,0,0,0.02);
  --focus-ring: 3px solid rgba(0,225,130,0.12);
}

/* ==== GLOBAL RESET ==== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
    overflow-x: hidden;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ==== TIPOGRAFIA ==== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

.section-label {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==== BOTÕES ==== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--brand-contrast, #042B1B);
    border-color: transparent;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
    width: 100%;
    justify-content: center;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* ==== HEADER / NAVBAR ==== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand .logo {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-download {
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white) !important;
    padding: 8px 20px;
    border-radius: var(--border-radius);
}

.nav-download:hover {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ==== HERO SECTION ==== */
.hero {
    margin-top: 80px;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* keep subtle wave overlay */
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.25;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-cta-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==== HOW IT WORKS (COMO USAR) ==== */
.how-it-works {
    padding: 80px 0;
    background: var(--bg-white);
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 2px solid var(--border-color);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin: 1rem 0;
}

.step-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-light);
}

/* ==== SOLICITAR CORRIDA ==== */
.solicitar-corrida {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    text-align: center;
}

.solicitar-corrida .section-label,
.solicitar-corrida .section-title,
.solicitar-corrida .section-subtitle {
    color: var(--text-white);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.ride-form {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg-soft);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label i {
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-white);
    color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0,225,130,0.10);
}

.form-group input.invalid {
    border-color: #f44336;
}

.form-message {
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
    display: none;
    text-align: center;
    font-weight: 600;
}

.form-message.success {
    background: rgba(0,225,130,0.12);
    color: var(--primary-dark);
    border: 1px solid rgba(0,225,130,0.18);
}

.form-message.error {
    background: rgba(255,77,79,0.08);
    color: #ff4d4f;
    border: 1px solid rgba(255,77,79,0.12);
}

.form-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.info-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-card h4 {
    margin-bottom: 0.5rem;
}

.info-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ==== ABOUT ==== */
.about {
    padding: 80px 0;
    background: var(--bg-white);
    text-align: center;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    margin-bottom: 3rem;
}

.about-text h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.feature-badge {
    background: var(--primary-light);
    color: var(--brand-contrast, #042B1B);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.feature-badge:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: scale(1.05);
}

/* ==== FEATURES ==== */
.features {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ==== VIDEO DEMO ==== */
.video-demo {
    padding: 80px 0;
    background: var(--bg-white);
    text-align: center;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.video-placeholder {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: var(--border-radius);
    padding: 100px 20px;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.play-button:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: scale(1.1);
}

.play-button i {
    font-size: 2rem;
    margin-left: 5px;
    color: var(--text-white);
}

.video-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.video-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.video-feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.video-feature-item span {
    color: var(--text-dark);
    font-weight: 600;
}

/* ==== DOWNLOAD APP ==== */
.download-app {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.download-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.download-text {
    text-align: left;
}

.download-text h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.download-text p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.download-features {
    margin-bottom: 2rem;
}

.download-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.download-features i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.download-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.download-image i {
    font-size: 15rem;
    color: var(--primary-color);
    opacity: 0.18;
}

/* ==== CATEGORIES ==== */
.categories {
    padding: 80px 0;
    background: var(--bg-white);
    text-align: center;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--bg-white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.category-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.category-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.category-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ==== TESTIMONIALS ==== */
.testimonials {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: left;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    font-size: 3rem;
    color: var(--primary-color);
}

.testimonial-info h4 {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-location {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-rating {
    color: #FFC107;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-date {
    color: var(--text-light);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ==== DRIVERS ==== */
.drivers {
    padding: 80px 0;
    background: var(--bg-white);
    text-align: center;
}

.drivers-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.driver-step-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.driver-step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.driver-step-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.driver-step-card h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.driver-step-card p {
    color: var(--text-light);
}

.driver-benefits {
    margin-bottom: 3rem;
}

.driver-benefits h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.benefit-item:hover {
    background: var(--primary-light);
    color: var(--text-white);
}

.benefit-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.benefit-item:hover i {
    color: var(--text-white);
}

/* ==== CITIES ==== */
.cities {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.cities-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    align-items: start;
}

.cities-list-wrapper {
    text-align: left;
}

.cities-active,
.cities-coming {
    margin-bottom: 2rem;
}

.cities-active h3,
.cities-coming h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cities-list {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.cities-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
}

.cities-list li:last-child {
    border-bottom: none;
}

.cities-list i {
    color: var(--primary-color);
}

.cities-cta {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.cities-cta p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cities-map {
    text-align: center;
}

.cities-map h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.cities-map iframe {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: none;
}

/* ==== FAQ ==== */
.faq {
    padding: 80px 0;
    background: var(--bg-white);
    text-align: center;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
    text-align: left;
}

/* ==== INSTAGRAM ==== */
.instagram {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

/* ==== FRANQUIAS ==== */
.franquias {
    padding: 80px 0;
    background: var(--bg-white);
    text-align: center;
}

.franquias-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.franquias-text {
    text-align: left;
}

.franquias-text h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.franquias-text p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.franquias-benefits {
    margin-bottom: 2rem;
}

.franquias-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.franquias-benefits i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.franquias-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.franquias-icon i {
    font-size: 15rem;
    color: var(--primary-color);
    opacity: 0.18;
}

/* ==== CONTACT ==== */
.contact {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    text-align: left;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.contact-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--text-light);
}

.contact-form {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: left;
}

/* ==== FOOTER ==== */
.footer {
    background: var(--surface-2);
    color: var(--text);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--text);
    margin-bottom: 1.5rem;
}

.footer-logo {
    width: 150px;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(230,232,236,0.8);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    transform: translateY(-3px);
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(230,232,236,0.75);
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(230,232,236,0.75);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(230,232,236,0.75);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* ==== WHATSAPP FLOAT BUTTON ==== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 20px rgba(0,225,130,0.18);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--surface);
    color: var(--text);
    padding: 8px 12px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

/* ==== BACK TO TOP ==== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ==== CHAT WIDGET ==== */
.chat-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
}

.chat-button {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    cursor: pointer;
}

.chat-button:hover {
    transform: scale(1.06);
    background: var(--secondary-dark);
}

.chat-box {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 350px;
    height: 500px;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.chat-box.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chat-header {
    background: var(--secondary-color);
    color: var(--text-white);
    padding: 1rem;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h4 {
    margin: 0;
}

.chat-close {
    background: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

.chat-body {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
}

.chat-message {
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: var(--border-radius);
    max-width: 80%;
}

.chat-message.bot {
    background: var(--bg-light);
    color: var(--text);
    align-self: flex-start;
}

.chat-message.user {
    background: var(--secondary-color);
    color: var(--text-white);
    align-self: flex-end;
    margin-left: auto;
}

.chat-footer {
    padding: 1rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 0.5rem;
}

.chat-footer input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: inherit;
    background: var(--bg-white);
    color: var(--text);
}

.chat-footer button {
    background: var(--secondary-color);
    color: var(--text-white);
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.chat-footer button:hover {
    background: var(--secondary-dark);
}

/* ==== ANIMAÇÕES ==== */
@keyframes fadeInUp {
    from {
    opacity: 0;
    transform: translateY(30px);
    }
    to {
    opacity: 1;
    transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 768px) {
    .menu-toggle {
    display: flex;
    }

    .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--bg-white);
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    }

    .nav-menu.active {
    left: 0;
    }

    .hero-title {
    font-size: 2rem;
    }

    .section-title {
    font-size: 1.8rem;
    }

    .hero-buttons {
    flex-direction: column;
    }

    .stats-grid,
    .steps-grid,
    .features-grid,
    .categories-grid,
    .testimonials-grid,
    .drivers-steps,
    .benefits-grid {
    grid-template-columns: 1fr;
    }

    .download-content,
    .franquias-content,
    .contact-content,
    .cities-content {
    grid-template-columns: 1fr;
    }

    .ride-form {
    padding: 1.5rem;
    }

    .form-row {
    grid-template-columns: 1fr;
    }

    .chat-box {
    width: calc(100vw - 40px);
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    }

    .chat-box.active {
    transform: translateX(-50%) translateY(0);
    }

    .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    }

    .back-to-top {
    bottom: 80px;
    right: 20px;
    width: 45px;
    height: 45px;
    }

    .footer-bottom {
    flex-direction: column;
    text-align: center;
    }
}

@media (max-width: 480px) {
    html {
    font-size: 14px;
    }

    .hero {
    padding: 60px 0;
    }

    .hero-title {
    font-size: 1.75rem;
    }

    .section-title {
    font-size: 1.5rem;
    }

    .container {
    padding: 0 15px;
    }
}

/* ==== PRINT ==== */
@media print {
    .header,
    .whatsapp-float,
    .back-to-top,
    .chat-widget,
    .hero-buttons,
    .btn {
    display: none !important;
    }
}

/* ==== ACCESSIBILITY ==== */
:focus {
    outline: var(--focus-ring);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ==== FIM DOS ESTILOS ==== */