/* ==========================================================================
   Design System & Variáveis Premium (LuxeDrive)
   ========================================================================== */
:root {
    /* Cores */
    --bg-color: #050505;
    --bg-alternate: #0c0c0c;
    --text-primary: #ffffff;
    --text-secondary: #d5d5d5;
    --text-muted: #888888;
    
    /* Cores de Acento */
    --accent-gold: #c5a880;
    --accent-gold-hover: #ffe9cc;
    --accent-gold-glow: rgba(197, 168, 128, 0.15);
    
    /* Botão Amarelo de Contraste Vibrante (Pedida do Usuário) */
    --accent-yellow: #f5c518;
    --accent-yellow-hover: #ffd54f;
    --accent-yellow-glow: rgba(245, 197, 24, 0.3);
    
    /* Gradientes */
    --gold-gradient: linear-gradient(135deg, #c5a880 0%, #ffe9cc 100%);
    --yellow-gradient: linear-gradient(135deg, #f5c518 0%, #ffe082 100%);
    --bg-gradient: radial-gradient(circle at center, #121212 0%, #050505 100%);
    --card-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.03) 100%);
    
    /* Fontes */
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-heading: 'Cormorant Garamond', serif;
    --font-menu: 'Montserrat', sans-serif;
    
    /* Transições */
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-micro: all 0.25s ease-out;
}

/* ==========================================================================
   Resets & Configurações de Base
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: auto; /* Controlado pelo Lenis */
}

/* Imagens responsivas e sem distorção */
img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Links limpos */
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-micro);
}

/* Títulos Bold & Refinados */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--text-primary);
}

p {
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Rótulos e links em caixa alta com peso sutil */
.label-caps {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
}

/* Container padrão */
.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 40px;
    margin: 0 auto;
}

/* ==========================================================================
   Navegação (Fixa e Premium)
   ========================================================================== */
#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    padding: 0 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    background: rgba(5, 5, 5, 0.45);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-smooth);
}

/* Esquerda: Links */
.nav-links {
    display: flex;
    gap: 40px;
    flex: 1;
}

.nav-item {
    font-family: var(--font-menu);
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    transition: var(--transition-micro);
}

.nav-item:hover {
    color: var(--text-primary);
}

.nav-item:hover::after {
    width: 100%;
}

/* Centro: Logo */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    text-transform: uppercase;
}

.logo-icon {
    color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.logo:hover .logo-icon {
    transform: rotate(45deg);
}

.logo-text {
    font-weight: 300;
}

/* Direita: Botões */
.nav-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    flex: 1;
}

/* Botões do Menu */
.button {
    border-radius: 100px;
    overflow: hidden;
    font-family: var(--font-menu);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: var(--transition-smooth);
}

.button a {
    display: block;
    padding: 12px 24px;
    width: 100%;
    height: 100%;
}

/* Botão Primário (Amarelo Ouro de Alto Contraste) */
.button.primary {
    background: var(--yellow-gradient);
    color: #050505;
    box-shadow: 0 4px 15px var(--accent-yellow-glow);
}

.button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 197, 24, 0.5);
    background: linear-gradient(135deg, var(--accent-yellow-hover) 0%, #fffde7 100%);
}

/* Botão Secundário (Escuro/Borda) */
.button.secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.20);
    color: var(--text-primary);
}

.button.secondary:hover {
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.03);
    color: var(--accent-gold);
    transform: translateY(-2px);
}

/* ==========================================================================
   Seção Hero (Scroll-Driven Canvas & 3D)
   ========================================================================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('frames/0001.jpg');
    background-size: cover;
    background-position: center;
}

/* Canvas de Fundo */
#hero-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: -2;
    pointer-events: none;
}

/* Overlay Escuro sobre o Canvas */
#hero-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(to bottom, rgba(5,5,5,0.85) 0%, rgba(5,5,5,0.55) 50%, rgba(5,5,5,0.95) 100%);
    z-index: -1;
    pointer-events: none;
    will-change: opacity;
}

/* Hero Content Perspective */
.hero-content {
    position: absolute;
    width: 100%;
    padding: 0 80px;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    transform-style: preserve-3d;
}

/* Estilos para Texto Dramático (Fase 1) */
.drama-text {
    position: absolute;
    width: 100%;
    max-width: 1000px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transition: filter 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.drama-text.step-1 {
    opacity: 1;
    visibility: visible;
}

/* Camada 1: Transporte não é só chegar ao destino */
.font-forte {
    font-family: var(--font-heading);
    font-size: 5.6rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.1;
    color: var(--text-primary);
    text-shadow: 0 15px 40px rgba(0, 0, 0, 0.95);
}

/* Camada 2: É como você se sente durante o caminho */
.sub-title {
    font-family: var(--font-heading);
    font-size: 4.6rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.15;
    color: var(--accent-gold);
    background: linear-gradient(90deg, #c5a880 30%, #fff2e0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 15px 35px rgba(0, 0, 0, 0.95);
}

/* Camada 3: Palavras-chave */
/* Camada 3: Palavras-chave (Grid para sobrepor e centralizar) */
.keyword-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    justify-items: center;
    align-items: center;
    width: 100%;
}

.keyword {
    grid-column: 1;
    grid-row: 1;
    font-family: var(--font-heading);
    font-size: 4.6rem;
    font-weight: 300;
    font-style: italic;
    color: var(--accent-gold);
    background: linear-gradient(90deg, #c5a880 30%, #fff2e0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translate3d(0, 0, 0px) scale(1.0);
    text-shadow: 0 15px 35px rgba(0, 0, 0, 0.95);
    backface-visibility: hidden;
}

/* Camada 4: Você merece mais do que uma corrida */
.forte-title {
    font-family: var(--font-menu);
    font-size: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-yellow);
    background: linear-gradient(135deg, #f5c518 0%, #ffd54f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 50px rgba(245, 197, 24, 0.3), 0 5px 25px rgba(0, 0, 0, 0.95);
}

/* Contêiner de Logos de Clientes (Fase 2) */
.client-logos-container {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translate3d(-50%, 30px, 0);
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    z-index: 6;
    transition: var(--transition-smooth);
}

.trusted-by {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--accent-gold);
    opacity: 0.9;
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    opacity: 0.55;
    transition: var(--transition-micro);
}

.client-logo {
    width: 100px;
    height: 30px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-micro);
}

.client-logo svg {
    width: 100%;
    height: 100%;
}

.client-logo:hover {
    opacity: 1;
    color: var(--accent-gold);
    transform: scale(1.05);
}



/* ==========================================================================
   Seções de Conteúdo Tradicionais (Scroll Padrão)
   ========================================================================== */
.content-section {
    padding: 120px 0;
    position: relative;
    background-color: var(--bg-color);
    z-index: 10; /* Fica acima do Canvas fixo */
    border-bottom: 1px solid rgba(255,255,255,0.02);
}

.alternate-bg {
    background-color: var(--bg-alternate);
}

/* Cabeçalhos de Seção */
.section-tagline {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
    margin-bottom: 15px;
    text-align: center;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 70px;
    color: var(--text-primary);
}

/* ==========================================================================
   Seção Diferenciais (Grid de Benefícios)
   ========================================================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--card-gradient);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 12px;
    padding: 50px 40px;
    transition: var(--transition-micro);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.benefit-icon {
    color: var(--accent-gold);
    margin-bottom: 30px;
    background: rgba(197, 168, 128, 0.1);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(197, 168, 128, 0.25);
    transition: var(--transition-micro);
}

.benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 300;
}

/* Hover nos Benefícios */
.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 168, 128, 0.3);
    background: linear-gradient(to bottom right, rgba(197,168,128,0.04) 0%, rgba(255,255,255,0.01) 100%);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.benefit-card:hover .benefit-icon {
    color: var(--text-primary);
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}

/* ==========================================================================
   Seção Frota (Cards de Veículos)
   ========================================================================== */
.fleet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.fleet-card {
    background: var(--card-gradient);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-micro);
}

.fleet-image {
    width: 100%;
    height: 380px;
    overflow: hidden;
    position: relative;
}

.fleet-image img {
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fleet-info {
    padding: 40px;
}

.fleet-info h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.fleet-info p {
    font-size: 0.95rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.fleet-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fleet-features li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.fleet-features li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
}

/* Hover na Frota */
.fleet-card:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 168, 128, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.04);
}

/* ==========================================================================
   Seção Depoimentos Interativa (Typewriter Testimonials)
   ========================================================================== */
.typewriter-testimonials-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

/* Balão do Depoimento */
.testimonial-bubble {
    position: relative;
    background: rgba(10, 10, 10, 0.4);
    border: 1px solid rgba(197, 168, 128, 0.1);
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.85;
}

.testimonial-bubble.active {
    opacity: 1;
    border-color: rgba(197, 168, 128, 0.3);
    box-shadow: 0 35px 80px rgba(197, 168, 128, 0.04), 0 30px 60px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}

.bubble-text-wrapper {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-primary);
    font-weight: 300;
    font-style: italic;
    min-height: 100px;
}

.typewriter-cursor {
    display: inline-block;
    color: var(--accent-gold);
    font-weight: 700;
    margin-left: 4px;
    animation: blink 0.8s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.bubble-author-info {
    margin-top: 30px;
    align-self: flex-end;
    text-align: right;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-bubble.active .bubble-author-info {
    opacity: 1;
    transform: translateY(0);
}

.bubble-author-name {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-gold);
}

.bubble-author-title {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Setinha do Balão (Bolinhas 3D) */
.bubble-arrow {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    pointer-events: none;
}

.arrow-dot-1 {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(197, 168, 128, 0.4);
    transition: all 0.3s;
}

.arrow-dot-2 {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(197, 168, 128, 0.25);
    transition: all 0.3s;
}

.arrow-dot-3 {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(197, 168, 128, 0.15);
    transition: all 0.3s;
}

.testimonial-bubble.active .arrow-dot-1 {
    background: rgba(197, 168, 128, 0.8);
    transform: scale(1.2);
}

.testimonial-bubble.active .arrow-dot-2 {
    background: rgba(197, 168, 128, 0.5);
    transform: scale(1.2);
}

.testimonial-bubble.active .arrow-dot-3 {
    background: rgba(197, 168, 128, 0.3);
    transform: scale(1.2);
}

/* Grade de Avatares */
.testimonial-avatars {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    margin-top: 20px;
    width: 100%;
}

.avatar-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    width: 150px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.avatar-wrapper {
    position: relative;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    padding: 4px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 15px;
}

.avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    transition: all 0.4s;
}

.avatar-name {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: center;
    transition: all 0.3s;
}

.avatar-job {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 4px;
    transition: all 0.3s;
}

/* Estados de Hover e Ativo */
.avatar-card:hover .avatar-wrapper,
.avatar-card.active .avatar-wrapper {
    border-color: var(--accent-gold);
    box-shadow: 0 0 20px rgba(197, 168, 128, 0.3);
    transform: scale(1.05);
}

.avatar-card:hover .avatar-name,
.avatar-card.active .avatar-name {
    color: var(--accent-gold);
}

.avatar-card.active {
    transform: translateY(-3px);
}

/* ==========================================================================
   Seção Contato & Formulário Minimalista
   ========================================================================== */
.contato-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.contato-desc {
    font-size: 1.05rem;
    font-weight: 300;
    margin-bottom: 40px;
}

/* Botões do Bloco de Contato */
.contato-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* WhatsApp Amarelo de Alto Contraste */
.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--yellow-gradient);
    color: #050505;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 18px 32px;
    border-radius: 100px;
    box-shadow: 0 8px 25px var(--accent-yellow-glow);
    transition: var(--transition-smooth);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(245, 197, 24, 0.5);
    background: linear-gradient(135deg, var(--accent-yellow-hover) 0%, #fffde7 100%);
}

.btn-tel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 18px 32px;
    border-radius: 100px;
    transition: var(--transition-micro);
}

.btn-tel:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background: rgba(255,255,255,0.02);
}

/* Formulário Corporativo Minimalista */
.contato-form {
    background: var(--card-gradient);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 16px;
    padding: 50px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.form-group label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
    margin-bottom: 10px;
    font-weight: 500;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 6px;
    padding: 14px 18px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: var(--transition-micro);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.04);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Estilo do calendário nativo nos inputs dark */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.5;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 18px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-submit:hover {
    background: var(--gold-gradient);
    color: #050505;
    box-shadow: 0 8px 25px var(--accent-gold-glow);
    transform: translateY(-2px);
}

/* ==========================================================================
   Rodapé & Footer
   ========================================================================== */
.main-footer {
    background: #020202;
    padding: 50px 40px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    z-index: 10;
    position: relative;
}

.main-footer p {
    font-size: 0.8rem;
    color: #9e9e9e;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   Ciclo de Texto Animado (Animated Text Cycle)
   ========================================================================== */
.section-header-left {
    text-align: left;
    margin-bottom: 60px;
    width: 100%;
}

.section-header-left .section-tagline {
    text-align: left;
}

.text-cycle-title {
    text-align: left;
    margin-bottom: 0;
    line-height: 1.25;
}

.text-cycle-wrapper {
    display: inline-block;
    position: relative;
    vertical-align: bottom;
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); /* Transição mola suave */
    overflow: hidden;
    height: 1.2em;
    margin-left: 8px;
}

.text-cycle-word {
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: 0;
    white-space: nowrap;
    font-weight: 600;
    color: var(--accent-gold);
    background: linear-gradient(90deg, #c5a880 30%, #fff2e0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
                opacity 0.35s ease,
                filter 0.35s ease;
    transform: translateY(0);
    opacity: 1;
    filter: blur(0px);
}

.text-cycle-word.exit {
    transform: translateY(1.2em); /* Desliza para baixo */
    opacity: 0;
    filter: blur(4px);
}

.text-cycle-word.enter {
    transform: translateY(-1.2em); /* Entra por cima */
    opacity: 0;
    filter: blur(4px);
}

.mobile-only {
    display: none;
}

/* ==========================================================================
   Media Queries & Responsividade (Mobile)
   ========================================================================== */
@media (max-width: 1024px) {
    #main-nav {
        padding: 0 40px;
    }
    
    .header h1 {
        font-size: 3.3rem;
    }
    
    .contato-container {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    #main-nav {
        padding: 0 24px;
        height: 70px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-buttons .button.secondary {
        display: none;
    }
    
    .logo {
        justify-content: flex-start;
        font-size: 1.25rem;
    }
    
    .hero-content {
        padding: 0 24px;
    }
    
    .header h1 {
        font-size: 2.1rem;
        line-height: 1.2;
    }
    
    .header {
        gap: 20px;
    }
    
    .client-logos {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .client-logo {
        width: 80px;
    }
    
    .hero-image-container {
        width: 95%;
    }

    .content-section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.1rem;
        margin-bottom: 45px;
    }

    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .fleet-image {
        height: 280px;
    }

    .contato-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contato-form {
        padding: 30px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Otimização Responsiva da Seção Hero (Mobile) */
    .font-forte {
        font-size: 2.3rem !important;
        line-height: 1.25 !important;
        padding: 0 15px;
    }
    
    .sub-title {
        font-size: 2.1rem !important;
        line-height: 1.3 !important;
        padding: 0 15px;
    }
    
    .keyword-container {
        gap: 0px !important;
    }
    
    .keyword {
        font-size: 2.1rem !important;
    }
    
    .forte-title {
        font-size: 1.9rem !important;
        line-height: 1.3 !important;
        letter-spacing: 0.1em !important;
        padding: 0 15px;
    }

    .client-logos-container {
        bottom: 35px !important;
        max-width: 90% !important;
    }

    .trusted-by {
        font-size: 0.75rem !important;
        margin-bottom: 15px !important;
    }

    /* Otimização Responsiva da Seção de Depoimentos (Mobile) */
    .typewriter-testimonials-container {
        gap: 25px;
    }

    .testimonial-bubble {
        padding: 30px 20px !important;
        min-height: 280px !important;
    }

    .bubble-text-wrapper {
        font-size: 1.05rem !important;
        line-height: 1.65 !important;
        min-height: 120px;
    }

    .bubble-author-info {
        margin-top: 20px;
    }

    .testimonial-avatars {
        gap: 20px !important;
        flex-wrap: wrap;
    }

    .avatar-card {
        width: 100px !important;
    }

    .avatar-wrapper {
        width: 64px !important;
        height: 64px !important;
        margin-bottom: 8px;
    }

    .avatar-name {
        font-size: 0.85rem !important;
    }

    .avatar-job {
        font-size: 0.7rem !important;
    }

    /* Otimização Responsiva para o Ciclo de Texto no Celular */
    .mobile-only {
        display: block !important;
    }
    
    .section-header-left {
        text-align: center !important;
        margin-bottom: 40px !important;
    }
    
    .section-header-left .section-tagline {
        text-align: center !important;
    }
    
    .text-cycle-title {
        text-align: center !important;
        font-size: 2.1rem !important;
        line-height: 1.35 !important;
    }
    
    .text-cycle-wrapper {
        margin-left: 0 !important;
        margin-top: 6px;
        height: 1.25em !important;
    }
}

/* ==========================================================================
   Estilização do Rodapé Estendido
   ========================================================================== */
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-menu);
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-link {
    color: var(--text-secondary);
    transition: var(--transition-micro);
    cursor: pointer;
}

.footer-link:hover {
    color: var(--accent-gold);
}

.footer-divider {
    color: var(--text-muted);
    opacity: 0.5;
}

/* ==========================================================================
   Modal Sobre Nós & Trabalhe Conosco (Premium Glassmorphism)
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(3, 3, 3, 0.75);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.98) 0%, rgba(5, 5, 5, 0.99) 100%);
    border: 1px solid rgba(197, 168, 128, 0.12);
    border-radius: 20px;
    width: 92%;
    max-width: 1100px;
    height: 82vh;
    max-height: 800px;
    padding: 50px 50px 40px 50px;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.95), 0 0 80px rgba(197, 168, 128, 0.03);
    transform: scale(0.96) translateY(20px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

/* Custom Scrollbar para o Modal */
.modal-container::-webkit-scrollbar {
    width: 6px;
}

.modal-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.01);
    border-radius: 10px;
}

.modal-container::-webkit-scrollbar-thumb {
    background: rgba(197, 168, 128, 0.25);
    border-radius: 10px;
    transition: var(--transition-micro);
}

.modal-container::-webkit-scrollbar-thumb:hover {
    background: rgba(197, 168, 128, 0.5);
}

/* Botão de Fechar Modal */
.modal-close-btn {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 2.2rem;
    font-weight: 200;
    line-height: 1;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
}

.modal-close-btn:hover {
    color: var(--accent-gold);
    transform: rotate(90deg) scale(1.15);
}

/* Cabeçalho de Abas */
.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.modal-tabs {
    display: flex;
    gap: 30px;
}

.modal-tab-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-menu);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 10px 5px;
    cursor: pointer;
    position: relative;
    transition: var(--transition-micro);
}

.modal-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -21px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition-micro);
}

.modal-tab-btn:hover {
    color: var(--text-primary);
}

.modal-tab-btn.active {
    color: var(--accent-gold);
}

.modal-tab-btn.active::after {
    width: 100%;
}

/* Conteúdo de Abas */
.modal-tab-content {
    display: none;
    animation: modalFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.modal-tab-content.active {
    display: block;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Aba: Nossa História (Sobre Nós)
   ========================================================================== */
.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.about-tag {
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
    display: inline-block;
    margin-bottom: 10px;
}

.about-title {
    font-size: 2.3rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.about-subtitle {
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
    color: var(--text-secondary);
}

.about-sections {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.about-row {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.about-row.reverse {
    grid-template-columns: 1.1fr 1fr;
}

.about-row.reverse .about-img-box {
    order: 2;
}

.about-row.reverse .about-text-box {
    order: 1;
}

.about-img-box {
    width: 100%;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.01);
}

.about-img-box img {
    opacity: 0;
    transition: opacity 0.8s ease, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-img-box img.loaded {
    opacity: 1;
}

.about-row:hover .about-img-box img.loaded {
    transform: scale(1.03);
}

.about-text-box h3 {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.about-text-box p {
    font-size: 0.92rem;
    line-height: 1.7;
    font-weight: 300;
    color: var(--text-secondary);
    text-align: justify;
}

/* ==========================================================================
   Aba: Carreiras (Trabalhe Conosco)
   ========================================================================== */
.career-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.career-intro-text {
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.career-requirements h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.career-requirements ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.career-requirements li {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--text-secondary);
    font-weight: 300;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.career-requirements li svg {
    color: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.career-form-column {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 35px;
}

/* Input File Estilizado Premium */
.file-upload-wrapper {
    position: relative;
    width: 100%;
    height: 48px;
    cursor: pointer;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-upload-label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding: 0 18px;
    color: var(--text-secondary);
    font-size: 0.88rem;
    transition: var(--transition-micro);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-upload-wrapper:hover .file-upload-label {
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.04);
    color: var(--accent-gold);
}

/* ==========================================================================
   Ajustes de Responsividade do Modal
   ========================================================================== */
@media (max-width: 1024px) {
    .modal-container {
        padding: 40px 30px;
        height: 85vh;
    }
    
    .about-row, .about-row.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-row.reverse .about-img-box {
        order: 1;
    }
    
    .about-row.reverse .about-text-box {
        order: 2;
    }
    
    .about-img-box {
        height: 240px;
    }
    
    .career-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .modal-container {
        padding: 40px 20px 30px 20px;
        width: 94%;
        height: 90vh;
    }
    
    .modal-close-btn {
        top: 20px;
        right: 20px;
        font-size: 2rem;
    }
    
    .modal-header {
        margin-bottom: 30px;
    }
    
    .modal-tab-btn {
        font-size: 0.72rem;
        letter-spacing: 0.1em;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-intro {
        margin-bottom: 35px;
    }
    
    .about-sections {
        gap: 45px;
    }
    
    .about-text-box h3 {
        font-size: 1.35rem;
        margin-bottom: 10px;
    }
    
    .career-form-column {
        padding: 25px 20px;
    }
    
    .footer-content {
        gap: 12px;
    }
    
    .footer-links {
        font-size: 0.68rem;
        gap: 10px;
    }
}

/* ==========================================================================
   Seção Team Showcase (Equipe LuxeDrive)
   ========================================================================== */
.team-showcase-container {
    display: flex;
    flex-direction: row;
    gap: 70px;
    align-items: center;
    justify-content: center;
    max-width: 1050px;
    margin: 0 auto;
    padding: 20px 0;
    user-select: none;
}

/* Esquerda: Grid de Fotos */
.team-photos-grid {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.team-photo-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.team-photo-card {
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    flex-shrink: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s ease,
                transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.03);
    background: rgba(255, 255, 255, 0.01);
}

/* Tamanhos das Fotos Assimétricas */
.card-size-1 {
    width: 155px;
    height: 165px;
}

.card-size-2 {
    width: 172px;
    height: 182px;
}

.card-size-3 {
    width: 162px;
    height: 172px;
}

/* Deslocamentos Verticais das Colunas (Asymmetric Grid) */
.offset-y-large {
    margin-top: 68px;
}

.offset-y-small {
    margin-top: 32px;
}

.team-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) brightness(0.77);
    transition: filter 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Direita: Lista de Nomes */
.team-names-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    padding-top: 10px;
}

.team-member-row {
    cursor: pointer;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    padding-bottom: 12px;
}

.member-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.member-indicator {
    width: 16px;
    height: 10px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.member-name {
    font-family: var(--font-primary);
    font-size: 1.12rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.3s ease;
}

.member-role {
    margin-top: 8px;
    padding-left: 28px;
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
}

/* Redes Sociais Integradas */
.member-socials {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 12px;
    opacity: 0;
    transform: translateX(-10px);
    pointer-events: none;
    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-icon-link {
    padding: 4px;
    border-radius: 4px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-micro);
}

.social-icon-link svg {
    color: var(--text-secondary);
    fill: currentColor;
    transition: color 0.15s ease;
}

.social-icon-link:hover svg {
    color: var(--accent-gold);
}

.social-icon-link:hover {
    transform: scale(1.15);
    background: rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   Lógica Interativa Hover (CSS)
   ========================================================================== */
/* Quando o contêiner tem algum elemento ativo (hovered) */
.team-showcase-container.has-hover .team-photo-card:not(.active) {
    opacity: 0.5;
}

.team-showcase-container.has-hover .team-member-row:not(.active) {
    opacity: 0.45;
}

/* Ativação do Card de Foto */
.team-photo-card.active {
    transform: scale(1.02);
    border-color: rgba(197, 168, 128, 0.35);
    box-shadow: 0 10px 30px rgba(197, 168, 128, 0.06);
}

.team-photo-card.active img {
    filter: grayscale(0) brightness(1.05);
}

/* Ativação da Linha de Nome */
.team-member-row.active .member-indicator {
    background: var(--accent-gold);
    width: 22px;
}

.team-member-row.active .member-name {
    color: var(--accent-gold);
}

.team-member-row.active .member-socials {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

/* ==========================================================================
   Responsividade da Seção Team Showcase
   ========================================================================== */
@media (max-width: 1024px) {
    .team-showcase-container {
        gap: 40px;
        max-width: 90%;
    }
    
    .card-size-1 {
        width: 130px;
        height: 140px;
    }
    
    .card-size-2 {
        width: 145px;
        height: 155px;
    }
    
    .card-size-3 {
        width: 136px;
        height: 146px;
    }
    
    .offset-y-large {
        margin-top: 56px;
    }
    
    .offset-y-small {
        margin-top: 26px;
    }
}

@media (max-width: 768px) {
    .team-showcase-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding: 10px 0;
    }
    
    .team-photos-grid {
        display: flex;
        gap: 10px;
        justify-content: center;
        width: 100%;
        padding-bottom: 0;
    }
    
    .team-photo-column {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .card-size-1 {
        width: 96px;
        height: 104px;
    }
    
    .card-size-2 {
        width: 102px;
        height: 110px;
    }
    
    .card-size-3 {
        width: 96px;
        height: 104px;
    }
    
    .offset-y-large {
        margin-top: 0;
    }
    
    .offset-y-small {
        margin-top: 0;
    }
    
    .team-photo-column.col-1 {
        margin-top: 0;
    }
    
    .team-photo-column.col-2 {
        margin-top: 40px;
    }
    
    .team-photo-column.col-3 {
        margin-top: 0;
    }
    
    .team-photo-card {
        border-radius: 10px;
    }
    
    .team-names-list {
        display: flex;
        flex-direction: column;
        gap: 18px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .team-member-row {
        padding-bottom: 8px;
    }
    
    .member-name {
        font-size: 1.05rem;
    }
    
    .member-role {
        font-size: 0.6rem;
    }
}

/* Placeholder de Formulário para Acessibilidade */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888888;
}

