/* PALETA SAIRÚ: Laranja (#FF6600), Preto (#1A1A1A), Cinza (#333) */

body {
    background-color: #f4f4f4;
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* TOP BAR */
.top-bar {
    background-color: #484646;
    color: #bbb;
    font-size: 13px;
    padding: 8px 0;
}

.header-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* HEADER */
header {
    background-color: #000000;
    color: white;
    padding: 2px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.logo-area { display: flex; align-items: center; gap: 2px; }
.logo-img { height: 100px; }
.nome-empresa { font-size: 1.5em; font-weight: bold; color: white; }
.destaque-turismo { color: #FF6600; }

.menu ul { display: flex; gap: 25px; list-style: none; margin: 0; padding: 0; }
.menu a { color: white; text-decoration: none; font-weight: 500; transition: 0.3s; }
.menu a:hover { color: #FF6600; }

/* CARROSSEL TELA CHEIA */
.carousel { width: 100vw; height: 85vh; overflow: hidden; position: relative; }
.carousel-container { display: flex; width: 300%; height: 100%; transition: transform 0.6s ease-in-out; }

.slide {
    width: 100vw;
    height: 100%;
    position: relative;
    flex-shrink: 0;
}

.foto-carrossel {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TEXTO DENTRO DO CARROSSEL */
.carousel-caption {
    position: absolute;
    top: 30%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
    max-width: 500px;
}

.carousel-caption h1 { font-size: 3.5em; margin: 0; color: #FF6600; }
.carousel-caption p { font-size: 1.5em; margin: 10px 0 0; }

.btn-carrossel {
    background: rgba(255, 102, 0, 0.6);
    border: none; color: white; padding: 15px; cursor: pointer; position: absolute; top: 50%; 
    border-radius: 50%; z-index: 10;
}
.prev { left: 20px; } .next { right: 20px; }

/* CARDS DE SERVIÇOS */
.container { max-width: 1200px; margin: 60px auto; padding: 0 20px; text-align: center; }
.titulo-sessao { border-bottom: 4px solid #FF6600; display: inline-block; padding-bottom: 10px; margin-bottom: 40px; }

.servicos-container { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

.card {
    position: relative; flex: 1; min-width: 300px; height: 380px; border-radius: 8px; overflow: hidden;
    background-size: cover; background-position: center; transition: 0.4s;
}

.card-fretamento { background-image: url('img/onibuszoo.jpg'); }
.card-turismo { background-image: url('img/sconvencional.jpg'); }
.card-eventos { background-image: url('img/14000.png'); }

.card-overlay {
    position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 25px; color: white; text-align: left;
}

.card:hover { transform: translateY(-10px); }
.card:hover .card-overlay { background: linear-gradient(to top, rgba(255, 102, 0, 0.85), rgba(0,0,0,0.4)); }
.card-overlay h3 { margin: 0; font-size: 1.7em; color: #FF6600; }
.card:hover h3 { color: white; }

/* BOTÃO WHATSAPP */
.botao-contato {
    background-color: #FF6600; color: white; padding: 18px 40px; text-decoration: none;
    border-radius: 5px; font-weight: bold; display: inline-block; margin-top: 40px; transition: 0.3s;
}

/* RODAPÉ */
.rodape-completo { background-color: #1A1A1A; color: white; padding: 50px 20px 20px; margin-top: 80px; }
.rodape-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; }
.laranja { color: #FF6600; }
.rodape-direitos { border-top: 1px solid #333; margin-top: 40px; padding-top: 20px; font-size: 0.8em; text-align: center; color: #666; }

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .header-container { flex-direction: column; gap: 10px; }
    .carousel, .foto-carrossel { height: 50vh; }
    .carousel-caption h1 { font-size: 2em; }
    .carousel-caption p { font-size: 1em; }
}
/* SEÇÃO CONFORTO A BORDO */
.conforto-abordagem {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 80px;
    text-align: left;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.conforto-texto { flex: 1; }
.conforto-texto h2 { color: #1A1A1A; font-size: 2.2em; margin-bottom: 20px; }
.conforto-texto p { font-size: 1.2em; color: #555; line-height: 1.6; }

.conforto-imagem { flex: 1; }
.conforto-imagem img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* DIFERENCIAIS ÍCONES */
.diferenciais {
    display: flex;
    justify-content: space-around;
    margin-bottom: 60px;
}
.dif-item span { font-size: 3em; display: block; margin-bottom: 10px; }
.dif-item h4 { color: #FF6600; text-transform: uppercase; }

@media (max-width: 768px) {
    .conforto-abordagem { flex-direction: column; padding: 20px; }
}

/* Estilos específicos para a página Sobre Nós */
.sobre-conteudo {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 20px;
}

.sobre-conteudo p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

/* Ajuste para os cards de pilares ficarem lado a lado */
.servicos-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.card-pilar {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.card-pilar:hover {
    transform: translateY(-5px);
}