@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700;900&display=swap');

/* --- RESET BÁSICO E ESTILOS GLOBAIS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 900;
}

.highlight {
    color: #f1c40f;
}

main {
    width: 100%;
}

/* --- HERO BANNER (COM NOVO DESIGN) --- */
.hero-banner {
    position: relative;
    height: 85vh; /* Aumentei um pouco a altura */
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start; 
    color: #fff;
    background-image: url('img/banner-placeholder.jpg'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed; 
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.hero-content {
    position: relative; 
    z-index: 1;
    max-width: 800px;
    padding-left: 8%; /* Espaçamento da esquerda */
}

.hero-content h1 {
    font-size: 4rem; 
    font-weight: 900;
    text-transform: uppercase; 
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.15; 
    position: relative; /* Necessário para o detalhe da linha */
    padding-left: 25px; /* Espaço para a linha amarela */
}

/* A NOVA MELHORIA: LINHA VERTICAL AMARELA */
.hero-content h1::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5%; /* Ajusta a posição vertical */
    height: 90%; /* Ajusta a altura da linha */
    width: 8px; /* Largura da linha */
    background-color: #f1c40f;
    border-radius: 4px;
}

.hero-content p {
    font-size: 1.3rem; 
    margin: 1.5rem 0 2.5rem 25px; /* Adiciona o mesmo recuo da linha */
    font-weight: 400;
    max-width: 550px; 
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #f1c40f;
    color: #000;
    text-decoration: none;
    border-radius: 8px; 
    font-weight: 700;
    font-size: 1.1rem; 
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-left: 25px; /* Adiciona o mesmo recuo da linha */
}

.btn-primary:hover {
    transform: translateY(-3px); 
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}


/* --- SEÇÕES DE CONTEÚDO E CARDS --- */
.info-section, .services-section, .frota-section {
    padding: 4rem 1rem;
}

.services-section {
    background-color: #f7f7f7;
}

.cards-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.12);
}

.info-section .card {
    display: flex;
    flex-direction: column;
    align-items: center; 
    padding: 2rem;
}

.info-section .card img {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.info-section .card h3 {
    text-align: center; 
}

.info-section .card-list {
    list-style: none; 
    padding: 0; 
    margin-top: 1rem;
    color: #555;
    font-size: 0.95rem;
    width: 100%; 
    text-align: left; 
}

.info-section .card-list li {
    margin-bottom: 0.75rem; 
}

.services-section .card {
    text-align: center;
}

.services-section .card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.services-section .card h3 {
    font-size: 1.3rem;
    margin: 1rem 1rem 0.5rem 1rem;
}

.services-section .card p {
    padding: 0 1rem 1rem 1rem;
    color: #666;
}


/* --- ESTILOS DA GALERIA DA FROTA --- */
.frota-section {
    text-align: center;
}

.frota-slider {
    width: 100%;
    max-width: 900px; 
    height: 550px; 
    margin: 1rem auto 0 auto; 
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.frota-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #eee; 
}

.frota-slider .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.swiper-button-next,
.swiper-button-prev {
    color: #f1c40f !important; 
}

.swiper-pagination-bullet-active {
    background-color: #f1c40f !important; 
}


/* --- RODAP
