        /* --- VARIÁVEIS DA MARCA 99 --- */
        :root {
            --primary-yellow: #FFDE00;
            --text-black: #111111;
            --text-gray: #666666;
            --bg-light: #F9F9F9;
            --white: #FFFFFF;
            --radius-lg: 24px;
            --radius-md: 16px;
            --shadow-soft: 0 10px 30px rgba(0,0,0,0.08);
            --shadow-hover: 0 15px 40px rgba(0,0,0,0.12);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; }

        body { background-color: var(--bg-light); color: var(--text-black); }

        /* --- HEADER/NAV SIMPLIFICADO --- */
        header {
            background: var(--white);
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .logo {
    /* Remove as propriedades de texto/fonte */
    font-size: 0; 
    line-height: 0;
    color: transparent;
    
    
    /* Configurações da Imagem */
    background-image: url('logo1.png'); /* << SUBSTITUA ESTE LINK PELO CAMINHO DA SUA LOGO */
    background-size: contain; /* Garante que a imagem se ajuste */
    background-repeat: no-repeat;
    background-position: left center; /* Alinha a logo à esquerda */

    /* Define o tamanho fixo para a logo */
    width: 60px; /* Largura da logo (ajuste conforme sua logo) */
    height: 30px; /* Altura da logo (ajuste conforme sua logo) */
    
    display: inline-block; /* Garante que o div tenha width e height definidos */
}

/* --- Estilização da Header (Mantida para Contexto) --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: white;
}

.nav-btn {
    background-color: var(--text-black);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s;
}
        /* --- HERO SECTION (MODERNIZADA) --- */
        .hero {
    /* Mantenho o fundo de imagem (se for o último que você forneceu) */
    background-image: url('bg-hero-alguel-carros-99.webp'); 
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
    /* Remover border-bottom-right-radius: 80px; se não estiver no código que você forneceu */
}

.hero-content {
    max-width: 500px;
    opacity: 2.5; /* Propriedade não-standard, mantida como está */
    /* Fundo semi-transparente removido conforme solicitado no último ajuste, mas mantemos o box. */
    border-radius: var(--radius-md);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-black);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 1;
}

.promo-badge {
    padding: 15px 25px;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 20px;
    font-weight: bold;
    transform: rotate(-2deg);
}

.btn-cta {
    background-color: var(--text-black);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s;
}
.btn-cta:hover { transform: scale(1.05); }

.hero-image {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: flex-end; /* Alinha a imagem à parte de baixo */
    justify-content: center;
    position: relative;
}

.img-placeholder {
    width: 400px; 
    height: 500px; 
    opacity: 0.9999;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    background-image: url('URL_DA_SUA_IMAGEM_AQUI'); /* Imagem do motorista */
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-soft);
}

/* --- OTIMIZAÇÃO PARA MOBILE (GARANTINDO O ESTILO DA IMAGEM DE REFERÊNCIA) --- */

@media (max-width: 992px) {
    
    /* 1. MUDANÇA DE LAYOUT: EMPILHAR */
    .hero {
        flex-direction: column; /* Coloca os itens em coluna */
        min-height: auto; /* Permite que o conteúdo defina a altura */
        padding: 40px 5%; 
        justify-content: flex-start;
    }
    
    /* 2. REORDENAR E CENTRALIZAR A IMAGEM NO TOPO */
    .hero-image {
        order: -1; /* Força a imagem a aparecer antes do texto no HTML */
        width: 100%;
        height: auto;
        margin-bottom: 30px;
        align-items: center; /* Centraliza a imagem verticalmente */
    }

    .img-placeholder {
        width: 80%; /* Ocupa 80% da largura do contêiner mobile */
        max-width: 300px; /* Limita o tamanho máximo da imagem */
        height: 350px; /* Altura fixa para mobile, similar à referência */
        margin: 0 auto; /* Centraliza horizontalmente */
        /* Mantém o border-radius: var(--radius-lg) var(--radius-lg) 0 0; */
    }
    
    /* 3. CONTEÚDO DE TEXTO (Abaixo da Imagem) */
    .hero-content {
        max-width: 100%;
        text-align: center; /* Centraliza todo o conteúdo (título, parágrafo, botão) */
        padding: 0;
    }
    
    .hero h1 {
        font-size: 2.5rem; /* Reduz o título */
        margin-top: 20px; /* Adiciona margem acima do H1 */
    }
    
    .promo-badge {
        transform: none; /* Remove a rotação */
        margin: 0 auto 20px; /* Centraliza o badge */
    }

    .btn-cta {
        width: 100%;
        max-width: 350px;
        margin: 0 auto; /* Centraliza o botão */
        justify-content: center;
    }
}

/* Ajuste fino para telas extra pequenas */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    .img-placeholder {
        height: 300px; 
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem; 
        text-align: left; 
        max-width: 100%;
        padding: 0 5%; /* Adiciona padding para afastar das bordas laterais do celular */
        margin-bottom: 30px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr; /* Uma coluna no mobile */
        gap: 20px;
    }
}
        
        .section-title {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 50px;
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
.benefits {
    padding: 80px 5%;
    background-color: var(--bg-light, #F9F9F9); 
}

.section-title {
    /* Base: Alinhamento estritamente à esquerda */
    text-align: left !important; /* Reforça a regra */
    
    font-size: 3rem; 
    line-height: 1.1;
    margin-bottom: 50px; 
    max-width: 600px;
    margin-left: 0; /* Garante que não haja margem automática centralizadora */
    margin-right: 0;
    
    /* Zera qualquer padding que possa estar empurrando o texto */
    padding-left: 0;
    padding-right: 0;
}

.section-title span {
    display: block; 
    font-weight: 300; 
    color: var(--text-black, #111111);
}

.section-title .line-2,
.section-title .line-4 {
    font-weight: 800; 
}

/* O container cards-grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px; 
    margin-bottom: 50px;
}

/* --- RESPONSIVIDADE (FOCO NA QUEBRA DE COLUNAS E ALINHAMENTO) --- */

@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas em telas médias */
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem; 
        text-align: left !important; /* Reforça o alinhamento à esquerda no mobile */
        max-width: 100%;
        margin-bottom: 30px;
        
        /* O padding da seção base (.benefits) já é 5%, não precisa duplicar aqui */
    }
    
    .cards-grid {
        grid-template-columns: 1fr; /* Uma coluna no mobile */
        gap: 20px;
    }

    /* O botão CTA também deve ter sua largura ajustada para mobile, se ainda não estiver */
    .btn-solid-yellow {
        width: 100%;
        max-width: 300px;
    }
}


        /* O "Pulo do Gato": Cards sem borda preta, com sombra e hover */
        .benefit-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-soft);
            transition: all 0.3s ease;
            text-align: left;
            border: 1px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary-yellow);
        }

        /* Detalhe amarelo decorativo no topo do card */
        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 6px;
            background: var(--primary-yellow);
            opacity: 0;
            transition: opacity 0.3s;
        }
        .benefit-card:hover::before { opacity: 1; }

      .card-icon {
    /* Remove as propriedades de texto/fonte */
    font-size: 0; 
    line-height: 0;
    
    /* Configurações da Imagem */
    background-image: url('carregador.webp'); /* << SUBSTITUA ESTE LINK */
    background-size: contain; /* Ajusta o ícone ao tamanho do span */
    background-repeat: no-repeat;
    background-position: center;

    /* Define o tamanho fixo para o ícone */
    width: 40px; /* Largura do ícone (ajuste conforme a necessidade) */
    height: 40px; /* Altura do ícone (ajuste conforme a necessidade) */
    
    margin-bottom: 20px;
    display: block;
}

  .card-icon2 {
    /* Remove as propriedades de texto/fonte */
    font-size: 0; 
    line-height: 0;
    
    /* Configurações da Imagem */
    background-image: url('Money_bag.svg'); /* << SUBSTITUA ESTE LINK */
    background-size: contain; /* Ajusta o ícone ao tamanho do span */
    background-repeat: no-repeat;
    background-position: center;

    /* Define o tamanho fixo para o ícone */
    width: 40px; /* Largura do ícone (ajuste conforme a necessidade) */
    height: 40px; /* Altura do ícone (ajuste conforme a necessidade) */
    
    margin-bottom: 20px;
    display: block;
}

.card-icon3 {
    /* Remove as propriedades de texto/fonte */
    font-size: 0; 
    line-height: 0;
    
    /* Configurações da Imagem */
    background-image: url('icon-money.svg'); /* << SUBSTITUA ESTE LINK */
    background-size: contain; /* Ajusta o ícone ao tamanho do span */
    background-repeat: no-repeat;
    background-position: center;

    /* Define o tamanho fixo para o ícone */
    width: 40px; /* Largura do ícone (ajuste conforme a necessidade) */
    height: 40px; /* Altura do ícone (ajuste conforme a necessidade) */
    
    margin-bottom: 20px;
    display: block;
}

.card-icon4 {
    /* Remove as propriedades de texto/fonte */
    font-size: 0; 
    line-height: 0;
    
    /* Configurações da Imagem */
    background-image: url('car.svg'); /* << SUBSTITUA ESTE LINK */
    background-size: contain; /* Ajusta o ícone ao tamanho do span */
    background-repeat: no-repeat;
    background-position: center;

    /* Define o tamanho fixo para o ícone */
    width: 40px; /* Largura do ícone (ajuste conforme a necessidade) */
    height: 40px; /* Altura do ícone (ajuste conforme a necessidade) */
    
    margin-bottom: 20px;
    display: block;
}

.card-icon5 {
    /* Remove as propriedades de texto/fonte */
    font-size: 0; 
    line-height: 0;
    
    /* Configurações da Imagem */
    background-image: url('lock.png'); /* << SUBSTITUA ESTE LINK */
    background-size: contain; /* Ajusta o ícone ao tamanho do span */
    background-repeat: no-repeat;
    background-position: center;

    /* Define o tamanho fixo para o ícone */
    width: 40px; /* Largura do ícone (ajuste conforme a necessidade) */
    height: 40px; /* Altura do ícone (ajuste conforme a necessidade) */
    
    margin-bottom: 20px;
    display: block;
}

        .benefit-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
        
        .benefit-card p {
            color: var(--text-gray);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .highlight { color: var(--text-black); font-weight: bold; }

/* style BD1 */

        :root {
            --primary-yellow: #FFDE00;
            --secondary-yellow-dark: #e6c800; /* Um tom mais escuro para hover/gradiente */
            --text-black: #111111;
            --text-gray: #666666;
            --text-light-gray: #999999;
            --bg-light: #F9F9F9;
            --white: #FFFFFF;
            --radius-lg: 24px;
            --radius-md: 16px;
            --radius-sm: 8px;
            --shadow-soft: 0 10px 30px rgba(0,0,0,0.08);
            --shadow-hover: 0 15px 40px rgba(0,0,0,0.12);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; }
        body { background-color: var(--bg-light); color: var(--text-black); padding-bottom: 50px;}

        /* --- ESTILOS GERAIS --- */
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        h2.section-heading {
            text-align: center;
            font-size: 2.2rem;
            margin: 60px 0 40px;
            color: var(--text-black);
        }

        /* --- BOTÕES E TABS --- */
        .tabs-container {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 40px;
        }

        .tab-btn {
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            border: none;
            transition: all 0.3s;
        }

        .tab-btn.active { background-color: var(--primary-yellow); color: var(--text-black); }
        .tab-btn.inactive { background-color: #E0E0E0; color: var(--text-gray); }
        .tab-btn.inactive:hover { background-color: #d0d0d0; }

        .btn-outline-yellow {
            border: 2px solid var(--primary-yellow);
            background: transparent;
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            text-decoration: none;
            color: var(--text-black);
            display: inline-block;
            transition: all 0.3s;
        }
        .btn-outline-yellow:hover { background: var(--primary-yellow); }

        .btn-solid-yellow {
            background-color: var(--primary-yellow);
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
            transition: transform 0.2s, background-color 0.3s;
        }
        .btn-solid-yellow:hover {
            transform: scale(1.02);
            background-color: var(--secondary-yellow-dark);
        }

        /* --- O NOVO CARD DO VEÍCULO --- */
        .vehicle-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-soft);
            overflow: hidden; /* Importante para cortar o fundo amarelo */
            display: flex;
            flex-wrap: wrap; /* Para responsividade */
            margin-bottom: 60px;
        }

        /* Coluna da Esquerda - Imagem e Fundo Amarelo */
        .vehicle-image-col {
            flex: 1 1 45%; /* Ocupa 45% da largura ou ajusta */
            min-width: 300px;
            position: relative;
            background: var(--primary-yellow);
            /* Cria um corte diagonal moderno no fundo */
            clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
        }

        .logos-overlay {
            position: absolute;
            top: 30px;
            left: 30px;
            z-index: 2;
        }
        /* Espaço reservado para os logos (BYD, Dolphin) */
        .logo-placeholder {
             display: block; margin-bottom: 15px; font-weight: bold; font-size: 1.2rem; opacity: 0.7;
             /* REMOVA ISTO QUANDO COLOCAR AS IMAGENS REAIS DOS LOGOS */
        }

        .car-main-image {
            width: 100%;
            max-width: 450px;
            height: auto;
            z-index: 3;
            filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15)); /* Sombra na imagem do carro em si */
            transition: transform 0.3s ease;
        }
        .vehicle-card:hover .car-main-image {
            transform: scale(1.03) translateX(5px); /* Leve movimento ao passar o mouse */
        }


        /* Coluna da Direita - Detalhes */
        .vehicle-details-col {
            flex: 1 1 50%;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .vehicle-title { font-size: 2rem; margin-bottom: 15px; }

        .badges-container { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
        .badge {
            background: #f0f0f0;
            padding: 6px 14px;
            border-radius: var(--radius-sm);
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-gray);
        }
        .badge.highlight { background: rgba(255, 222, 0, 0.3); color: var(--text-black); }

        /* Bloco de Preço Destacado */
        .price-block {
            margin-bottom: 30px;
        }
        .price-label { display: block; font-size: 0.9rem; color: var(--text-gray); margin-bottom: 5px; }
        .price-value { font-size: 2.5rem; font-weight: 900; color: var(--text-black); line-height: 1; }
        .price-period { font-size: 1.2rem; font-weight: normal; color: var(--text-gray); }

        /* Grid de Especificações com Ícones */
        .specs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 1px solid #eee;
        }
        .spec-item { display: flex; align-items: flex-start; gap: 10px; }
        .spec-icon { font-size: 1.5rem; }
        .spec-info strong { display: block; color: var(--text-black); font-size: 1.1rem; }
        .spec-info span { font-size: 0.9rem; color: var(--text-gray); }

        .features-list { margin-bottom: 20px; color: var(--text-gray); }
        .disclaimer { font-size: 0.8rem; color: var(--text-light-gray); margin-bottom: 30px; line-height: 1.4; }

        /* --- RODAPÉ DE NAVEGAÇÃO --- */
        .bottom-nav-actions {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            margin-top: 40px;
        }
        .btn-next { position: absolute; right: 0; }

        /* Responsividade básica */
        @media (max-width: 768px) {
            .vehicle-image-col { clip-path: none; min-height: 300px; } /* Remove o corte diagonal no mobile */
            .vehicle-card { flex-direction: column; }
            .bottom-nav-actions { flex-direction: column; gap: 20px; }
            .btn-next { position: static; }
            .car-main-image { max-width: 80%; }
        }

     /* passo a passo 99 */

    /* --- ESTILOS ESPECÍFICOS PARA ESTA NOVA SEÇÃO --- */

    /* Container Geral Amarelo */
    .steps-section {
        background-color: var(--primary-yellow);
        padding: 80px 5% 120px; /* Padding extra embaixo para o banner sobrepor se quiser */
        position: relative;
        color: var(--text-black);
    }

    .steps-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    /* Lado Esquerdo: Textos e Lista */
    .steps-content h2 {
        font-size: 2.5rem;
        margin-bottom: 40px;
        line-height: 1.2;
        padding: 38p, 0%;
    }

    .step-item {
        display: flex;
        gap: 20px;
        margin-bottom: 30px;
        align-items: flex-start;
    }

    .step-number {
        background-color: var(--white);
        color: var(--text-black);
        min-width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        border-radius: 12px; /* Canto arredondado moderno */
        font-size: 1.2rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        flex-shrink: 0;
    }

    .step-text {
        font-size: 1.05rem;
        line-height: 1.5;
        padding-top: 5px; /* Alinha visualmente com o número */
    }

    /* Lado Direito: Imagem do Motorista */
    .steps-image-wrapper {
        position: relative;
    }

    .steps-img {
        width: 300%;
        border-radius: var(--radius-lg);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        transform: rotate(2deg); /* Um leve toque de design */
        transition: transform 0.3s ease;
        object-fit: cover;
    }
    
    .steps-image-wrapper:hover .steps-img {
        transform: rotate(0deg) scale(1.02);
    }

    /* --- BANNER CLASSIFICADOS 99 --- */
    /* Este banner fica 'flutuando' entre as seções ou no final desta */
    .classifieds-section {
        background: var(--bg-light); /* Volta para fundo claro */
        padding: 0 5% 80px;
        margin-top: -60px; /* Efeito visual: sobe para encostar na seção amarela */
        position: relative;
        z-index: 10;
    }

    .classifieds-banner {
        max-width: 1200px;
        margin: 0 auto;
        background-color: var(--primary-yellow);
        border-radius: 40px; /* Bordas bem arredondadas */
        padding: 60px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-shadow: 0 25px 50px rgba(0,0,0,0.1); /* Sombra forte em vez de borda preta */
        position: relative;
        overflow: visible; /* Permite que o carro saia da caixa */
    }

    .classifieds-content {
        max-width: 50%;
        z-index: 2;
    }

    .classifieds-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .classifieds-tag {
        font-size: 0.8rem;
        background: var(--white);
        padding: 4px 10px;
        border-radius: 4px;
        border: 1px solid var(--text-black);
        font-weight: normal;
        vertical-align: middle;
    }

    .classifieds-desc {
        font-size: 1.1rem;
        margin-bottom: 30px;
        opacity: 0.9;
    }

    .btn-black {
        background-color: var(--text-black);
        color: var(--white);
        padding: 15px 35px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        display: inline-flex;
        align-items: center;
        transition: transform 0.2s;
    }
    .btn-black:hover { transform: scale(1.05); }

    /* Imagem dos Carros Classificados */
    .classifieds-cars-img {
        position: absolute;
        right: -20px;
        bottom: 0;
        width: 55%;
        max-width: 600px;
        height: auto;
        filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
        /* A imagem precisa ser PNG transparente para ficar bom */
    }

    /* Ícones flutuantes decorativos (Simulando o % e $) */
    .floating-icon {
        position: absolute;
        background: transparent;
        border: 2px solid var(--text-black);
        width: 50px; height: 50px;
        border-radius: 12px;
        display: flex; align-items: center; justify-content: center;
        font-weight: bold; font-size: 1.2rem;
        background: var(--primary-yellow);
    }
    .icon-percent { top: 40px; right: 45%; transform: rotate(-15deg); }
    .icon-dollar { bottom: 30px; right: 5%; transform: rotate(10deg); z-index: 3;}


    /* Responsividade */
    @media (max-width: 900px) {
        .steps-container { grid-template-columns: 1fr; }
        .steps-img { margin-top: 30px; transform: none; }
        
        .classifieds-banner { 
            flex-direction: column; 
            align-items: flex-start; 
            padding: 40px 30px 250px; /* Espaço extra embaixo para a imagem */
            overflow: hidden; /* No mobile cortamos para não quebrar o layout */
        }
        .classifieds-content { max-width: 100%; }
        .classifieds-cars-img { 
            width: 90%; 
            right: 5%; 
            bottom: -20px; 
        }
        .icon-percent { display: none; }
    }

   /* teste do resto */
/* --- ESTILOS ESPECÍFICOS PARA SEJA UM MOTORISTA 99 --- */

    .driver-section {
        background-color: var(--white);
        padding: 80px 5%;
    }

    .driver-container {
        max-width: 1000px;
        margin: 0 auto;
        display: flex;
        gap: 50px;
        align-items: center;
        flex-wrap: wrap; /* Para mobile */
        /* O card principal (com sombra) é branco. Não é necessário box-shadow aqui. */
    }

    /* Coluna da Imagem */
    .driver-image-wrapper {
        flex: 1 1 350px; /* Garante que a imagem tenha um bom tamanho */
        position: relative;
        padding: 10px; /* Espaço para a sombra não ser cortada */
    }

    .driver-img {
        width: 100%;
        max-width: 400px;
        border-radius: var(--radius-lg); /* Cantos arredondados */
        object-fit: cover;
        box-shadow: var(--shadow-soft); /* Sombra suave para "elevar" a imagem */
    }

    /* Coluna de Conteúdo */
    .driver-content {
        flex: 1 1 400px;
    }

    .driver-content h2 {
        font-size: 2.5rem;
        margin-bottom: 30px;
        line-height: 1.1;
    }

    /* Estilo da lista de benefícios */
    .driver-benefits-list {
        list-style: none;
        padding: 0;
        margin-bottom: 40px;
    }

    .driver-benefit-item {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
        font-size: 1.1rem;
        font-weight: 500;
    }

    .driver-benefit-icon {
    /* Remove as propriedades de texto/fonte */
    color: transparent; /* Garante que o ✔️ não apareça */
    font-size: 0; 
    line-height: 0;
    
    /* Configurações da Imagem */
    background-image: url('Check.svg'); /* << SUBSTITUA ESTE LINK */
    background-size: contain; 
    background-repeat: no-repeat;
    background-position: center;

    /* Define o tamanho fixo para o ícone */
    width: 24px; /* Largura do ícone (ajuste conforme a necessidade) */
    height: 24px; /* Altura do ícone (ajuste conforme a necessidade) */
    
    flex-shrink: 0; /* Impede que o ícone diminua no layout flexbox */
}
    
    .driver-more {
        margin-top: 10px;
        font-size: 1.1rem;
        color: var(--text-gray);
    }

    /* Botão CTA (o mesmo do topo, mas ajustado para a cor preta/amarela) */
    .btn-driver-cta {
        background-color: var(--primary-yellow);
        color: var(--text-black);
        padding: 15px 40px;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: bold;
        text-decoration: none;
        display: inline-block;
        transition: transform 0.2s, box-shadow 0.2s;
        box-shadow: 0 5px 15px rgba(255, 222, 0, 0.4);
    }
    .btn-driver-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(255, 222, 0, 0.6);
    }
    
    /* Responsividade básica */
    @media (max-width: 768px) {
        .driver-container { flex-direction: column; }
        .driver-image-wrapper { order: -1; }
        .driver-img { max-width: 100%; }
        .driver-content h2 { text-align: center; }
        .driver-benefits-list { padding-left: 20px; }
    }


    /* --- SEÇÃO FAQ (Dúvidas Frequentes) --- */
    .faq-section {
        background-color: var(--bg-light);
        padding: 80px 5%;
    }

    .faq-header {
        max-width: 800px;
        margin: 0 auto 50px;
        text-align: center;
    }

    .faq-header h2 {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .faq-icon-bubble {
        display: inline-block;
        font-size: 2rem;
        margin-right: 15px;
        position: relative;
        top: 5px;
        color: var(--text-black);
    }
    
    /* Estilo para a área de acordeões (Perguntas) */
    .accordion-item {
        background-color: var(--white);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-soft);
        margin-bottom: 15px;
        overflow: hidden;
        border: 1px solid transparent;
        transition: border-color 0.3s;
    }
    .accordion-item:hover { border-color: var(--primary-yellow); }

    .accordion-header {
        padding: 20px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 600;
        font-size: 1.1rem;
    }

    .accordion-body {
        padding: 0 20px 20px;
        font-size: 1rem;
        color: var(--text-gray);
        display: none; /* Escondido por padrão, simulando a funcionalidade */
    }

    .accordion-arrow {
        font-size: 1.2rem;
        transition: transform 0.3s;
    }

    /* Simulação de abertura do acordeão */
    .accordion-item.open .accordion-arrow {
        transform: rotate(180deg);
    }
    .accordion-item.open .accordion-body {
        display: block;
    }

    .faq-footer-link {
        text-align: center;
        margin-top: 30px;
    }
    .faq-footer-link a {
        color: var(--text-black);
        font-weight: 600;
        text-decoration: none;
        border-bottom: 2px solid var(--primary-yellow);
        padding-bottom: 2px;
    }
/* --- RODAPÉ (FOOTER) --- */
footer {
    background-color: var(--primary-yellow);
    color: var(--text-black);
    padding: 80px 0 40px; /* Mais espaço no topo para elegância */
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; /* Fonte limpa */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- GRID --- */
.footer-grid {
    display: grid;
    /* Layout: Marca (maior) + 3 colunas iguais */
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* --- COLUNA DA MARCA --- */
.footer-brand-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.logo-image {
    display: block;
    background-image: url('logo1.png'); 
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    width: 120px; /* Um pouco maior para presença de marca */
    height: 60px;
    text-indent: -9999px; /* Técnica melhor para esconder texto */
    margin-bottom: 30px;
}

.social-wrapper {
    margin-top: auto;
}

.social-label {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: var(--text-black); /* Ícones pretos são mais elegantes no amarelo */
    color: var(--primary-yellow); /* Ícone amarelo dentro */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px); /* Efeito de elevação */
    background-color: var(--white);
    color: var(--text-black);
}

/* --- NAVEGAÇÃO --- */
.footer-heading {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px; /* Espaçamento entre letras = Sofisticação */
    font-weight: 800;
    margin-bottom: 24px;
    opacity: 0.8;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-black);
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

/* Efeito de hover moderno (sublinhado que cresce) */
.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--text-black);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

/* --- RODAPÉ INFERIOR (COPYRIGHT) --- */
.footer-bottom {
    border-top: 1px solid rgba(0,0,0, 0.1); /* Linha sutil separadora */
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 0.85rem;
    opacity: 0.7;
}

.legal-links a {
    font-size: 0.85rem;
    color: var(--text-black);
    text-decoration: none;
    margin-left: 20px;
    font-weight: 600;
}

.legal-links a:hover {
    text-decoration: underline;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr; /* 2 colunas em tablets */
        gap: 40px;
    }
    .footer-brand-col {
        grid-column: span 2; /* Logo ocupa a largura total */
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {
    footer {
        padding: 50px 0 30px;
    }
    
    .footer-grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .legal-links a {
        margin-left: 0;
        margin-right: 20px;
    }
}

    /* --- ESTILOS ESPECÍFICOS PARA ESTA NOVA SEÇÃO --- */
.steps-section {
    /* Mantém o fundo amarelo e padding, ou use o fundo claro se for o novo layout de cards */
    background-color: var(--primary-yellow); 
    height: 50%;
    padding: 38px 0%;
    color: var(--text-black);
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
    /* Usa flexbox ou grid para controlar o layout da imagem e do conteúdo */
    display: grid;
    grid-template-columns: 1fr 1fr; /* Duas colunas padrão (imagem + conteúdo) */
    gap: 60px;
    align-items: center;
}

/* Container da Imagem */
.steps-image-wrapper {
    position: relative;
    /* No seu código, a imagem está no lado esquerdo do conteúdo. Vamos garantir que ela seja flexível. */
}

/* Imagem em si - Onde as principais alterações são aplicadas */
.steps-img {
    width: 100%; /* Torna a imagem 100% da largura do seu container */
    max-width: 100%; /* Garante que não exceda o container */
    height: auto; /* Mantém a proporção da imagem */
    
    /* Remove bordas e cantos arredondados (se houver no estilo original) */
    border-radius: 0; /* REMOVE bordas arredondadas (se quiser manter, use var(--radius-lg)) */
    border: none;
    
    /* Remove transformações e sombras pesadas para um visual mais limpo */
    transform: none; 
    box-shadow: none; 
    
    /* Outros estilos que você pode querer manter ou ajustar */
    object-fit: cover;
}

/* Responsividade: Garante que a imagem e o conteúdo se empilhem em telas pequenas */
@media (max-width: 768px) {
    .steps-container { 
        grid-template-columns: 1fr; /* Uma coluna no mobile */
    }
    
    /* No mobile, vamos colocar a imagem primeiro (se ela não estiver) */
    .steps-image-wrapper {
        order: -1; /* Coloca a imagem no topo no layout mobile */
        margin-bottom: 20px;
    }
}

/* O conteúdo do texto (Passo a Passo) */
.steps-content {
    /* Garante que o texto ocupe bem o espaço no mobile */
    padding: 0 15px; 
}

/* Se você estiver usando a estrutura que gerei anteriormente (imagem no topo do bloco amarelo), ignore o código acima e use este: */
/* .steps-hero-image {
    width: 100%;
    height: 300px; 
    background-size: cover;
    background-position: center;
    border-radius: 0; 
} */
