/* Carrossel de Veículos */
.carousel-veiculos {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
}

* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

:root {
    --header-height: 80px;
}

/* Esconde badge do reCAPTCHA v3 (invisível) */
.grecaptcha-badge {
    visibility: hidden;
}

/* Botão WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 55px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    color: white;
    font-size: 32px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
    }
    .whatsapp-float i {
        font-size: 26px;
    }
}

/* Modal Política de Privacidade */
.modal-privacidade {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: auto;
    animation: fadeIn 0.3s;
}

.modal-content-privacidade {
    background-color: #fff;
    margin: 3% auto;
    padding: 0;
    border-radius: 10px;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s;
}

.modal-header-privacidade {
    background: #d0a745;
    color: #000;
    padding: 15px 25px;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header-privacidade h2 {
    margin: 0;
    font-size: 1.4rem;
    color: #000;
}

.modal-close-privacidade {
    background: transparent;
    border: none;
    color: #000;
    font-size: 2.5rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.modal-close-privacidade:hover {
    transform: scale(1.2);
}

.modal-body-privacidade {
    padding: 30px;
    color: #333;
    max-height: 70vh;
    overflow-y: auto;
}

.modal-body-privacidade h3 {
    color: #d0a745;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.modal-body-privacidade h3:first-child {
    margin-top: 0;
}

.modal-body-privacidade p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.modal-body-privacidade ul {
    margin: 15px 0;
    padding-left: 25px;
}

.modal-body-privacidade li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.ultima-atualizacao {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    font-style: italic;
    color: #666;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from { 
        transform: translateY(-50px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

.carousel-track {
    display: flex;
    gap: 24px;
    overflow: hidden;
    width: 100%;
    max-width: 900px;
    position: relative;
}

.carousel-btn {
    background: #000;
    color: #d0a745;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s, color 0.2s;
}
.carousel-btn:disabled {
    background: #666;
    color: #ccc;
    cursor: not-allowed;
}
.carousel-btn.prev { margin-right: 40px; }
.carousel-btn.next { margin-left: 40px; }

.carousel-track .veiculo-card {
    min-width: 260px;
    max-width: 280px;
    flex: 0 0 31%;
    transition: box-shadow 0.3s, border-color 0.3s;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 10px 0;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    background: #999;
    transform: scale(1.2);
}

.carousel-dot.active {
    background: #d0a745;
    width: 32px;
    border-radius: 6px;
}

@media (max-width: 1024px) {
    /* TABLET - ajusta para 2 cards */
    .carousel-track .veiculo-card {
        flex: 0 0 45%;
        min-width: 200px;
        max-width: 350px;
    }
    
    .carousel-btn {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
    
    .carousel-btn.prev { 
        margin-right: 20px;
    }
    
    .carousel-btn.next { 
        margin-left: 20px;
    }
}

@media (max-width: 768px) {
    /* MOBILE - 1 card por vez */
    .carousel-track .veiculo-card {
        flex: 0 0 100%;
        min-width: 280px;
        max-width: 100%;
    }
    
    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .carousel-btn.prev { 
        margin-right: 15px;
    }
    
    .carousel-btn.next { 
        margin-left: 15px;
    }
}
    .carousel-track {
        gap: 20px;
    }
}

/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Acessibilidade */
.skip-link {
    position: absolute;
    left: -999px;
    top: 10px;
    background: #000;
    color: #d0a745;
    padding: 8px 12px;
    z-index: 2000;
    text-decoration: none;
    border: 2px solid #d0a745;
    border-radius: 4px;
}

.skip-link:focus {
    left: 10px;
}

/* Foco acessível para links e botões */
a:focus,
button:focus {
    outline: 3px solid #d0a745;
    outline-offset: 2px;
}

/* Remover outline quando usando mouse */
:focus:not(:focus-visible) {
    outline: none;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

main {
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Fixo */
.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,1);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: box-shadow 0.3s ease;
}

/* Quando o usuário rolar para baixo, aplica sombra maior */
.header-fixed.scrolled {
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

.header-fixed .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    padding: 2px 0;
}

.logo a {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
    object-position: left center;
    filter: brightness(1.1);
}

/* Menu Hamburguer */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Overlay do menu */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Navigation - Desktop */
.nav-menu {
    display: block;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #d0a745;
}

.btn-cta-header {
    background: #d0a745;
    color: #000;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-cta-header:hover {
    background: #d0a745;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 100vh;
    /* imagem de fundo: coloque o arquivo em img/hero/hero.webp (recomendado 1920x1080, otimizado) */
    /* background fixo no desktop para efeito de sobreposição do header */
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('../../img/hero/hero.webp');
    background-attachment: fixed;
    background-size: cover;
    background-position: center 25%; /* Ajustado para focar mais no motorista */
    position: relative;
    transition: background-position 0.3s ease-out;
    display: flex;
    align-items: center;
}

/* Ajustes responsivos para o background do hero */
@media (max-width: 1024px) {
    .hero {
        background-attachment: scroll;
    }
}

/* Fix para mobile - garante 100vh real */
@media (max-width: 768px) {
    .hero {
        height: 100dvh;
        min-height: 100vh;
    }
    
    html {
        height: -webkit-fill-available;
    }
}

.hero-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 70px; /* Ajuste fino: mais espaço acima do título */
    position: relative;
    z-index: 2;
}

/* Efeito de profundidade no hero */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 45px; /* Aumenta espaço entre o texto e o botão */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.btn-primary {
    background: #d0a745;
    color: #000;
    padding: 18px 36px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(208, 167, 69, 0.3);
}

.btn-primary:hover {
    background: #d0a745;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(208, 167, 69, 0.4);
}

/* Seções Gerais */
/* Reduce vertical padding for regular sections; keep hero untouched */
section:not(.hero) {
    padding: 80px 0 50px;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: #000;
    font-weight: bold;
}

/* Quem Somos */
.quem-somos .content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quem-somos p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

/* Vantagens */
.vantagens {
    background: #fff;
}

.vantagens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.vantagem-card {
    background: #fff;
    padding: 36px 27px; /* reduzido ~10% */
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.vantagem-card:hover {
    transform: translateY(-10px);
    border-color: #d0a745;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.vantagem-card .icon {
    background: #d0a745;
    width: 72px; /* reduzido ~10% */
    height: 72px; /* reduzido ~10% */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.8rem; /* reduzido ~10% */
    color: #000;
}

.vantagem-card h3 {
    font-size: 1.17rem; /* reduzido ~10% */
    margin-bottom: 13px;
    color: #000;
}

.vantagem-card p {
    color: #666;
    line-height: 1.6;
}

/* Como Funciona */
.como-funciona {
    background: #f8f9fa;
}

.processo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.passo {
    text-align: center;
    padding: 27px 18px; /* reduzido ~10% */
}

.passo .numero {
    background: #000;
    color: #d0a745;
    width: 54px; /* reduzido ~10% */
    height: 54px; /* reduzido ~10% */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem; /* reduzido ~10% */
    font-weight: bold;
    margin: 0 auto 18px;
}

.passo h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #000;
}

.passo p {
    color: #666;
    line-height: 1.6;
}

/* Taxista Associado */
.taxista-associado {
    background: #000;
    color: #fff;
    text-align: center;
}

.taxista-associado h2 {
    color: #d0a745;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.taxista-associado h2.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.depoimentos-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.depoimentos-wrapper {
    position: relative;
    overflow: hidden;
    flex: 1;
}

.depoimento {
    display: none;
    animation: fadeIn 1s ease-in-out;
}

.depoimento.active {
    display: block;
}

.depoimento p {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.autor {
    color: #d0a745;
    font-weight: bold;
    font-size: 1rem;
}

.depoimento-btn {
    background: transparent;
    border: 2px solid #d0a745;
    color: #d0a745;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.depoimento-btn:hover {
    background: #d0a745;
    color: #000;
    transform: scale(1.1);
}

.depoimento-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.depoimento-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(208, 167, 69, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.depoimento-dot.active {
    background: #d0a745;
    transform: scale(1.3);
}

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

/* Documentação */
.documentacao {
    background: #fff;
}

.doc-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.doc-item {
    background: #f8f9fa;
    padding: 22.5px; /* reduzido ~10% */
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-left: 4px solid #d0a745;
    transition: all 0.3s;
}

.doc-item:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.doc-item i {
    font-size: 1.5rem;
    color: #d0a745;
    width: 30px;
}

.doc-item span {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
}

/* Dúvidas Frequentes */
.duvidas-frequentes {
    background: #fff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: #fff;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    transition: background 0.3s, color 0.3s;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question[aria-expanded="true"] {
    background: #d0a745;
    color: #000;
}

.faq-question i {
    font-size: 0.9rem;
    transition: transform 0.3s;
    color: #d0a745;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
    color: #000;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #f8f9fa;
}

.faq-answer[aria-hidden="false"] {
    max-height: 500px;
    padding: 20px 25px;
}

.faq-answer p {
    margin: 0 0 15px 0;
    color: #333;
    line-height: 1.6;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Onde Estamos */
.onde-estamos {
    padding: 80px 0;
    background: #f8f8f8;
}

.onde-estamos h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #000;
    font-size: 2.5rem;
}

.mapa-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mapa-wrapper iframe {
    display: block;
    width: 100%;
}

/* Contato */
.contato {
    background: #0a0a0a;
    color: #fff;
}

.contato h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 15px;
}

.contato .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(208, 167, 69, 0.05);
    border-radius: 10px;
    border-left: 4px solid #d0a745;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(208, 167, 69, 0.1);
    transform: translateX(5px);
}

.info-item i {
    background: #d0a745;
    color: #000;
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-item-content {
    flex: 1;
}

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #d0a745;
    font-weight: 600;
}

.info-item p {
    color: #ccc;
    margin: 0;
    font-size: 1.05rem;
}

/* Formulário de Contato */
.contato-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(208, 167, 69, 0.2);
    backdrop-filter: blur(10px);
}

.contato-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contato-form input,
.contato-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(208, 167, 69, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    transition: all 0.3s ease;
    outline: none;
}

.contato-form input[type="date"] {
    color-scheme: dark;
}

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

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.checkbox-container input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-container label {
    font-size: 0.9rem;
    cursor: pointer;
}

.checkbox-container a {
    color: #d0a745;
    text-decoration: underline;
}

.checkbox-container a:hover {
    color: #e0b855;
}

.contato-form input::placeholder,
.contato-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contato-form input:focus,
.contato-form textarea:focus {
    border-color: #d0a745;
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 0 3px rgba(208, 167, 69, 0.1);
}

.contato-form textarea {
    resize: vertical;
    min-height: 130px;
    font-family: 'Arial', sans-serif;
}

.btn-enviar-contato {
    background: linear-gradient(135deg, #d0a745 0%, #b8912d 100%);
    color: #000;
    padding: 18px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-enviar-contato:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(208, 167, 69, 0.5);
    background: linear-gradient(135deg, #e0b855 0%, #d0a745 100%);
}

.btn-enviar-contato:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 10px;
    display: none;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    border: 2px solid rgba(34, 197, 94, 0.3);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border: 2px solid rgba(239, 68, 68, 0.3);
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 0.8fr;
    gap: 50px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #d0a745;
    margin-bottom: 20px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.footer-section h4 {
    color: #d0a745;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #d0a745;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 5px;
}

.footer-section p i {
    margin-right: 8px;
}

.footer-section .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.footer-section .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #d0a745;
    border-radius: 50%;
    color: #d0a745;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-section .social-icons a:hover {
    background: #d0a745;
    color: #000;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #999;
    font-size: 0.85rem;
}

.footer-left,
.footer-right {
    margin: 0;
}

.footer-bottom a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #d0a745;
}

/* Responsividade */
@media (min-width: 1025px) {
    /* Garante que no desktop o menu funcione normalmente */
    .menu-toggle {
        display: none !important;
    }
    
    .nav-menu {
        display: block !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        padding-top: 0 !important;
    }
    
    .menu-overlay {
        display: none !important;
    }
    
    nav ul {
        flex-direction: row !important;
        gap: 30px !important;
        padding: 0 !important;
    }
    
    nav li {
        border-bottom: none !important;
    }
    
    nav a {
        padding: 0 !important;
    }
}

@media (max-width: 1024px) {
    .menu-toggle {
        display: flex;
    }
    
    .header-fixed .container {
        justify-content: space-between;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        transition: right 0.3s ease;
        padding-top: 80px;
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }
    
    nav li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    nav a {
        display: block;
        padding: 15px 10px;
        font-size: 1rem;
    }
    
    .btn-cta-header {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    /* Como Funciona - 2x2 em tablet */
    .processo {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    /* Contato - formulário embaixo das informações */
    .contato-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contato-form-wrapper {
        order: 1;
    }
    
    .contato-info {
        order: 2;
    }
    
    /* Footer - esconde coluna Links Úteis e ajusta larguras */
    .footer-content {
        grid-template-columns: 45% 30% 25%;
    }
    
    .footer-section:nth-child(2) {
        display: none;
    }
}

@media (max-width: 480px) {
    .menu-toggle {
        display: flex !important;
        position: relative;
        z-index: 1001;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .header-fixed .container {
        padding: 0 15px;
    }
    
    .header-fixed {
        padding: 10px 0;
    }
    
    .nav-menu {
        width: 75%;
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    /* Como Funciona - 2x2 em mobile */
    .processo {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .passo {
        padding: 20px 12px;
    }
    
    .passo h3 {
        font-size: 1.1rem;
    }
    
    .passo p {
        font-size: 0.9rem;
    }
    
    .contato-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .processo {
        grid-template-columns: 1fr;
    }
    
    .vantagens-grid {
        grid-template-columns: 1fr;
    }
    
    .doc-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .btn-primary {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .btn-whatsapp {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    section {
        padding: 60px 0;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vantagem-card,
.passo,
.doc-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll suave */
html {
    scroll-behavior: auto;
}

/* Ajuste para o header fixo */
body {
    padding-top: 0;
}

/* Ajuste específico para seções após o hero */
.quem-somos {
    background: #f8f9fa;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

/* Nossos Veículos */
.nossos-veiculos {
    background: #fff;
}

/* Grid responsivo para os veículos */
.veiculos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-top: 32px;
}
.veiculo-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: none;
    scroll-snap-align: start;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: visible;
    position: relative;
    z-index: 1;
}

.veiculo-card:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 0 0 3px #d0a745, 0 10px 30px rgba(0,0,0,0.15);
}

/* Fixar 4 cards visíveis no carrossel */
.veiculos-carousel .veiculo-card {
    flex: 0 0 calc((100% - 2 * var(--gap)) / 3);
    min-width: 0; /* previne overflow do flexbox */
    transform-origin: center center; /* melhora animação */
    margin: 0; /* remove margens que possam causar problemas */
}

@media (max-width: 1024px) {
    .veiculos-carousel .veiculo-card {
        flex: 0 0 calc((100% - var(--gap)) / 2);
    }
    .veiculos-wrapper {
        padding: 0 50px;
    }
}

@media (max-width: 640px) {
    .veiculos-carousel .veiculo-card {
        flex: 0 0 calc(100% - 20px);
    }
    .veiculos-wrapper {
        padding: 0 40px;
    }
}

.veiculo-card:hover {
    transform: translateY(-6px);
    border-color: #d0a745;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Transições de entrada/saída dos cards para suavizar troca lateral */
.veiculo-card {
    transition: none; /* Remove transições padrão */
}


.veiculo-img-placeholder {
    width: 100%;
    height: 110px; /* Ajuste fino: reduz um pouco a altura do topo do card */
    background: #f5f5f5;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 16px;
    text-align: center;
    padding: 20px;
}

.veiculo-info {
    padding: 15px;
}

.veiculo-info h3 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.veiculo-info p {
    color: #666;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.opcionais {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
    color: #333;
    font-size: 0.85rem;
}

.opcionais li::before {
    content: "• ";
    color: #d0a745;
}

.preco {
    display: none; /* Oculta o preço */
}

.veiculos-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #000;
    color: #d0a745;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 999; /* manter botões acima dos cards em rotação */
}

.veiculos-nav.prev { left: 8px; }
.veiculos-nav.next { right: 8px; }

.veiculos-nav:disabled {
    background: #666;
    color: #ccc;
    cursor: not-allowed;
}

/* Ajuste de posição para os botões e máscaras laterais para esconder cards por trás deles */
.veiculos-nav.prev { left: 16px; }
.veiculos-nav.next { right: 16px; }

.veiculos-wrapper::before,
.veiculos-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 88px; /* deve corresponder ao padding lateral do wrapper */
    pointer-events: none; /* não interferir com cliques nos botões */
    z-index: 950; /* abaixo dos botões (999) mas acima do carrossel */
}

.veiculos-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #fff 20%, rgba(255,255,255,0));
}

.veiculos-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #fff 20%, rgba(255,255,255,0));
}

/* Dots de navegação */
.veiculos-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    margin-top: 14px;
}

.veiculos-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    border: 1px solid #bbb;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.veiculos-dot.active {
    background: #d0a745;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    /* reduzir padding lateral em telas menores para evitar corte */
    .veiculos-wrapper { padding: 0 44px; }
    .veiculos-carousel .veiculo-card {
        flex: 0 0 calc((100% - var(--gap)) / 2);
    }
    
    /* Ajustes para formulário de contato em mobile */
    .contato-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contato-form-wrapper {
        padding: 30px 25px;
    }
    
    .info-item {
        padding: 15px;
    }
    
    .info-item i {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 1.1rem;
    }
    
    .info-item h3 {
        font-size: 1.1rem;
    }
    
    .info-item p {
        font-size: 0.95rem;
    }
    
    .btn-enviar-contato {
        padding: 16px 35px;
        font-size: 1rem;
    }
    
    /* Depoimentos - Mobile */
    .depoimentos-slider {
        gap: 20px;
        padding: 0 15px;
    }
    
    .depoimento p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .autor {
        font-size: 0.85rem;
    }
    
    .depoimento-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    /* Footer - Mobile */
    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }
    
    /* Mostra apenas coluna 1 (Logo/Nome/Slogan) e 4 (Redes Sociais) */
    .footer-section:nth-child(2),
    .footer-section:nth-child(3) {
        display: none;
    }
    
    /* Primeira coluna - Logo e Nome */
    .footer-section:nth-child(1) {
        order: 1;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-section:nth-child(1) .logo-footer {
        margin: 0 auto 10px;
    }
    
    .footer-section:nth-child(1) h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
        text-align: center;
    }
    
    .footer-section:nth-child(1) p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    /* Quarta coluna - Redes Sociais */
    .footer-section:nth-child(4) {
        order: 2;
        width: 100%;
    }
    
    .footer-section:nth-child(4) h4 {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .footer-section .social-icons {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .footer-left,
    .footer-right {
        width: 100%;
        text-align: center;
    }
}