/* Paleta de Cores Premium */
:root {
    --primaria: #2B3E5C;    /* Azul Marinho da Logo */
    --detalhe: #FFC107;     /* Amarelo Ouro para destaque */
    --fundo: #FFFFFF;
    --texto: #2D3436;
    --cinza-suave: #F4F7F6;
    --branco: #ffffff;
    --sombra: rgba(43, 62, 92, 0.1);
    --azul-footer: #0072bc;
}

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

body { 
    font-family: 'Poppins', sans-serif; 
    color: var(--texto); 
    background: var(--fundo); 
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: auto; padding: 0 20px; }
.section-padding { padding: 80px 0; }
.bg-light { background-color: var(--cinza-suave); }

/* Header Moderno */
header { 
    background: rgba(255, 255, 255, 0.98); 
    padding: 12px 0; 
    position: fixed; 
    width: 100%; 
    top: 0; 
    z-index: 1000; 
    box-shadow: 0 4px 20px var(--sombra);
}

.header-flex { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 60px; transition: 0.3s; width: auto; }

nav ul { display: flex; list-style: none; align-items: center; }
nav ul li { margin-left: 25px; }
nav ul li a { 
    text-decoration: none; 
    color: var(--primaria); 
    font-weight: 600; 
    font-size: 0.95rem; 
    transition: 0.3s; 
}
nav ul li a:hover { color: var(--detalhe); }

.btn-nav { 
    background: var(--primaria); 
    color: white !important; 
    padding: 12px 25px; 
    border-radius: 8px; 
}

/* Hero */
.hero { 
    height: 100vh; 
    position: relative; 
    background: url('https://images.unsplash.com/photo-1543329035-779836e52030?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center;
}

.hero-overlay { 
    position: absolute; 
    top: 0; left: 0; width: 100%; height: 100%; 
    background: linear-gradient(135deg, rgba(43, 62, 92, 0.9) 0%, rgba(43, 62, 92, 0.5) 100%); 
}

.hero-content { position: relative; color: white; max-width: 900px; z-index: 2; padding: 0 20px; }

.badge { 
    background: var(--detalhe); 
    color: var(--primaria); 
    padding: 6px 18px; 
    border-radius: 4px; 
    font-weight: 800; 
    font-size: 0.75rem; 
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
}

.hero h1 { font-size: 3.5rem; font-weight: 700; margin-bottom: 25px; line-height: 1.2; }
.hero h1 span { color: var(--detalhe); }
.hero p { font-size: 1.25rem; margin-bottom: 40px; opacity: 0.9; }

/* Botões */
.btn-primary { 
    background: var(--detalhe); 
    color: var(--primaria); 
    padding: 18px 40px; 
    text-decoration: none; 
    font-weight: 700; 
    border-radius: 8px; 
    display: inline-block; 
    transition: 0.4s;
}

.btn-primary:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }

/* Cards de Serviço */
.section-title { text-align: center; font-size: 2.5rem; color: var(--primaria); margin-bottom: 60px; font-weight: 700; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }

.card { 
    background: var(--branco); 
    padding: 40px; 
    border-radius: 20px; 
    text-align: center; 
    transition: 0.5s; 
    box-shadow: 0 15px 45px var(--sombra);
}

.card:hover { transform: translateY(-10px); border-bottom: 6px solid var(--detalhe); }

/* --- SEÇÃO DE DESTINOS CORRIGIDA (LADO A LADO) --- */
.grid-destinos {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 colunas no Desktop */
    gap: 20px;
    margin-top: 40px;
}

.destino-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 350px; /* Altura fixa para alinhar */
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.destino-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Evita que a imagem estique */
    display: block;
    transition: transform 0.5s ease;
}

.destino-card:hover img { transform: scale(1.1); }

.destino-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(transparent, rgba(43, 62, 92, 0.9));
    color: white;
    z-index: 2;
}

/* --- SEÇÃO DE CONTATO MELHORADA --- */
.contato-wrapper {
    display: flex;
    gap: 40px;
    align-items: stretch;
    justify-content: center;
}

.contato-form-box {
    flex: 1.2;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contato-form-box h3 { margin-bottom: 25px; color: var(--primaria); font-weight: 700; }

/* Inputs com bordas visíveis */
input, textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    background: #fdfdfd;
    transition: 0.3s;
    outline: none;
    display: block;
}

input:focus, textarea:focus {
    border-color: var(--detalhe);
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.1);
}

.input-row { display: flex; gap: 15px; }
.input-row input { flex: 1; }

.btn-send-wpp {
    width: 100%;
    max-width: 350px;
    margin: 10px auto;
    background: var(--detalhe);
    color: var(--primaria);
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: 0.3s ease;
}

.btn-send-wpp:hover { background: #e6af06; transform: translateY(-3px); }
.btn-send-wpp img { width: 22px !important; height: 22px !important; }

/* Card Informativo Azul */
.contato-info-box { flex: 0.8; }
.info-card {
    background: var(--primaria);
    color: #fff;
    padding: 40px;
    border-radius: 15px;
    height: 100%;
}

.info-card h4 { color: var(--detalhe); margin-bottom: 25px; font-size: 1.2rem; }
.info-item { display: flex; align-items: flex-start; margin-bottom: 20px; gap: 12px; }
.info-item p { font-size: 0.9rem; line-height: 1.6; opacity: 0.9; }

/* Footer Moderno */
.footer-moderno { background-color: var(--azul-footer); color: white; padding: 60px 0 0; font-size: 0.85rem; }
.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; }
.footer-col { flex: 1; min-width: 200px; }
.footer-col h4 { margin-bottom: 20px; font-weight: 700; }
.footer-col ul { list-style: none; }
.footer-col a { color: white; text-decoration: none; opacity: 0.8; }
.footer-divider { border: 0; border-top: 1px solid rgba(255,255,255,0.2); margin: 40px 0; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; align-items: center; padding-bottom: 30px; }
.selo-cadastur, .selo-seguranca { background: white; color: #333; padding: 8px 15px; border-radius: 5px; font-weight: bold; }

/* Menu Hambúrguer */
.menu-hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; z-index: 1100; }
.menu-hamburger span { display: block; width: 30px; height: 3px; background: var(--primaria); transition: 0.3s; border-radius: 3px; }

/* --- RESPONSIVIDADE MOBILE --- */
@media (max-width: 992px) {
    .menu-hamburger { display: flex; }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        box-shadow: -10px 0 30px rgba(0,0,0,0.2);
        transition: 0.4s;
        z-index: 1050;
        display: block !important;
    }

    nav.active { right: 0; }
    nav ul { flex-direction: column; padding: 100px 30px; gap: 25px; }
    nav ul li a { color: var(--primaria) !important; font-size: 1.1rem; }

    .grid-destinos { grid-template-columns: 1fr; } /* 1 coluna no celular */
    .contato-wrapper { flex-direction: column; }
    .input-row { flex-direction: column; gap: 0; }
    .hero h1 { font-size: 2.2rem; }
    .btn-send-wpp { max-width: 100%; }
}

/* WhatsApp Flutuante */
.wpp-float { position: fixed; bottom: 20px; right: 20px; z-index: 1000; display: flex; align-items: center; text-decoration: none; }
.wpp-float img { width: 55px; height: 55px; }
.wpp-tooltip { background: white; color: #333; padding: 8px 15px; border-radius: 10px; margin-right: 10px; font-weight: 600; box-shadow: 0 4px 10px rgba(0,0,0,0.1); font-size: 13px; }

@media (max-width: 600px) { .wpp-tooltip { display: none; } }
