/* ===== BÓ ALI VIAGENS ===== */

/* Paleta Oficial */
:root {
    --azul: #0A2342;
    --laranja: #FF6600;
    --turquesa: #008EA8;
    --verde: #2E7D32;
    --amarelo: #FFA600;
    --branco: #FFFFFF;
    --cinza: #F5F5F5;
    --texto: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--texto);
    background: var(--branco);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ===== HEADER ===== */
header {
    background: var(--branco);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(10, 35, 66, 0.1); 
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 65px;
    width: auto;
}

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

nav a {
    color: var(--azul);
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

nav a:hover {
    color: var(--laranja);
}

/* ===== HERO (BANNER PRINCIPAL) ===== */
.hero {
    min-height: 90vh;
    background: linear-gradient(rgba(10, 35, 66, .85), rgba(10, 35, 66, .85)), url("imagens/banner.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--branco);
}

.hero-content {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    width: 90%;
    max-width: 320px;
    margin-bottom: 20px;
}

.hero span {
    color: var(--amarelo);
    font-weight: 700;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: 3rem;
    margin: 20px 0;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ===== BOTÕES ===== */
.btn-primary, .btn-secondary, .card a, button {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
}

.btn-primary, button {
    background: var(--laranja);
    color: var(--branco);
    border: none;
}

.btn-primary:hover, button:hover {
    background: var(--turquesa);
    color: var(--branco);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 142, 168, 0.4);
}

.btn-secondary {
    background: var(--branco);
    color: var(--azul);
}

.btn-secondary:hover {
    background: var(--cinza);
    color: var(--laranja);
    transform: translateY(-3px);
}

/* ===== SEÇÕES GERAIS ===== */
section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    color: var(--azul);
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title span {
    color: var(--laranja);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== QUEM SOMOS ===== */
.sobre {
    background: var(--cinza);
}

.sobre p {
    max-width: 800px;
    margin: auto;
    text-align: center;
    font-size: 1.1rem;
}

/* ===== EXCURSÃO EM DESTAQUE ===== */
.excursao-destaque {
    background: var(--branco); 
    padding: 40px 0; 
}

.excursao-banner {
    position: relative;
    width: 100%; 
    max-width: 750px; 
    margin: 0 auto; 
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.excursao-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,.25);
}

.excursao-banner img {
    width: 100%; 
    height: auto;
    display: block; 
    transition: transform 0.5s ease;
}

.excursao-banner:hover img {
    transform: scale(1.03);
}

.excursao-overlay {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    text-align: center;
    pointer-events: none; 
}

/* ===== DESTINOS (CARDS) ===== */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: var(--branco);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    transition: .3s;
    display: flex; 
    flex-direction: column;
    height: 100%; 
}

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

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

.card h3 {
    padding: 20px;
    color: var(--azul);
    flex-grow: 1; 
    text-align: center;
}

.card a {
    margin: 0 20px 20px;
    background: var(--laranja);
    color: var(--branco);
    text-align: center;
}

.card a:hover {
    background: var(--turquesa);
}

/* ===== DEPOIMENTOS ===== */
.depoimento {
    background: var(--branco);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    text-align: center;
    font-style: italic;
}

/* ===== CADASTUR ===== */
.cadastur {
    text-align: center;
    background: var(--cinza);
}

.cadastur p {
    margin-bottom: 20px;
}

.cadastur img {
    max-width: 250px;
}

/* ===== FORMULÁRIO ===== */
form {
    max-width: 700px;
    margin: auto;
    display: grid;
    gap: 20px;
}

input, textarea {
    padding: 15px;
    border: 2px solid #EEE;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--turquesa);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

/* ===== INSTAGRAM ===== */
.instagram {
    text-align: center;
}

/* ===== RODAPÉ ===== */
footer {
    background: var(--azul);
    color: var(--branco);
    padding: 60px 20px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.footer-col h3 {
    color: var(--amarelo);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-col i {
    margin-right: 10px;
    color: var(--laranja);
}

.redes-sociais {
    display: flex;
    gap: 15px;
}

.redes-sociais a {
    color: var(--branco);
    background: rgba(255,255,255,0.1);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: 0.3s;
}

.redes-sociais a:hover {
    background: var(--laranja);
    transform: translateY(-3px);
}

.redes-sociais a i {
    margin: 0;
    color: var(--branco);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

/* ===== WHATSAPP FLUTUANTE ===== */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #25D366; 
    color: white;
    text-decoration: none;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,.2);
    z-index: 9999;
    font-size: 2rem; 
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #20b858;
}

/* ===== RESPONSIVIDADE (MOBILE) ===== */
@media(max-width: 768px) {
    nav {
        display: none;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero-logo {
        max-width: 260px;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }
    .btn-secondary {
        margin-left: 0;
    }
    .logo img {
        height: 55px;
    }
    .excursao-overlay {
        bottom: 15px;
    }
    .excursao-overlay .btn-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .footer-grid {
        text-align: center;
    }
    .redes-sociais {
        justify-content: center;
    }
}