/* Arquivo: assets/css/style.css */

/* --- CORES --- */
:root {
    --primary: #266E73; --gold-straw: #D4A373; --bg-sand: #FAF9F6; --text: #3D405B; --white: #ffffff;
    --font-heading: 'Playfair Display', serif; --font-body: 'Montserrat', sans-serif;
}
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family:var(--font-body); color:var(--text); line-height:1.6; background-color:var(--bg-sand); }
.container { max-width:1200px; margin:0 auto; padding:0 20px; }
a { text-decoration:none; transition:0.3s; }
h1,h2,h3,h4 { font-family:var(--font-heading); color:var(--primary); font-weight:700; }

/* --- HEADER --- */
.main-header { background:var(--white); padding:10px 0; box-shadow:0 4px 20px rgba(0,0,0,0.05); position:sticky; top:0; z-index:1000; }
.header-flex { display:flex; justify-content:space-between; align-items:center; }

/* ALTERAÇÃO AQUI: Tamanho da Logo Aumentado */
.logo-img { height:90px; width:auto; transition:0.3s; }

.logo-img:hover { transform:scale(1.05); }
.desktop-nav ul { list-style:none; display:flex; gap:40px; }
.nav-link { color:#555; font-size:0.85rem; font-weight:500; text-transform:uppercase; letter-spacing:2px; position:relative; }
.nav-link:hover { color:var(--primary); }
.nav-link::after { content:''; position:absolute; width:0; height:1px; bottom:-5px; left:0; background:var(--primary); transition:0.3s; }
.nav-link:hover::after { width:100%; }
.header-actions { display:flex; align-items:center; gap:25px; }
.admin-lock { color:#aaa; font-size:1rem; }
.admin-lock:hover { color:var(--gold-straw); }
.btn-header-reserve { background:#8B5E3C; color:#fff!important; padding:10px 28px; border-radius:50px; font-weight:700; letter-spacing:1px; }
.btn-header-reserve:hover { background:var(--primary); transform:translateY(-2px); }

/* --- HERO & BARRA DE RESERVA --- */
.hero { height:85vh; background-size:cover; background-position:center; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; color:#fff; gap:40px; }
.hero h1 { font-size:3.5rem; text-shadow:0 2px 10px rgba(0,0,0,0.3); }
.booking-bar-container { width:100%; max-width:850px; padding:0 20px; z-index:10; }
.booking-bar { background:#fff; padding:10px 20px; border-radius:50px; display:flex; align-items:center; justify-content:space-between; box-shadow:0 10px 40px rgba(0,0,0,0.2); gap:10px; }
.input-group { flex:1; display:flex; flex-direction:column; padding:10px 15px; }
.input-group label { font-size:0.7rem; font-weight:800; color:var(--primary); text-transform:uppercase; }
.input-group input { border:none; font-size:1rem; width:100%; outline:none; background:transparent; }
.btn-hero-submit { background:var(--gold-straw); color:#fff; border:none; padding:15px 40px; border-radius:40px; font-weight:700; cursor:pointer; }
.btn-hero-submit:hover { background:var(--primary); }

/* --- SCROLLER --- */
.highlights-strip { padding:40px 0; background:#fff; }
.scroller { display:flex; gap:20px; overflow-x:auto; padding-bottom:20px; }
.scroller-item { flex:0 0 280px; background:var(--bg-sand); border-radius:12px; overflow:hidden; box-shadow:0 4px 10px rgba(0,0,0,0.05); }
.scroller-img { height:180px; background-size:cover; background-position:center; }
.scroller-caption { padding:15px; text-align:center; }
.scroller-caption h4 { font-size:1.1rem; color:var(--primary); margin-bottom:5px; }

/* --- GERAL --- */
.section-padding { padding:80px 0; }
.bg-sand { background-color:var(--bg-soft); }
.grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.grid-3 { display:grid; grid-template-columns:repeat(auto-fit, minmax(300px, 1fr)); gap:25px; margin-top:20px; }

/* --- O CARD DA GALERIA --- */
.card-img {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #ddd;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.4s ease;
    cursor: pointer;
}
.card-img:hover { transform: translateY(-5px) scale(1.02); }

/* --- MATÉRIAS --- */
.discovery-card, .dest-card { background:#fff; border-radius:15px; overflow:hidden; box-shadow:0 10px 30px rgba(0,0,0,0.05); }
.discovery-img, .dest-img { height:220px; background-size:cover; background-position:center; position:relative; }
.discovery-content, .dest-card { padding:25px; }
.discovery-content h3 { font-size:1.3rem; color:var(--primary); margin-bottom:10px; }
.link-more { color:var(--gold-straw); font-weight:700; text-transform:uppercase; font-size:0.85rem; }
.distance-tag { position:absolute; top:15px; right:15px; background:var(--gold-straw); color:#fff; padding:5px 12px; border-radius:20px; font-size:0.75rem; font-weight:700; text-transform:uppercase; }

/* --- FOOTER --- */
.main-footer { background:var(--bg-soft); padding:80px 0 30px; border-top:5px solid var(--gold-straw); }
.main-footer a { color:#666; display:block; margin-bottom:8px; }
.koda-badge { display:inline-block; padding:6px 12px; background:#222; color:#fff; border-radius:4px; font-family:monospace; font-weight:bold; }
.koda-badge strong { color:#a29bfe; }

/* Mobile */
.mobile-toggle { display:none; cursor:pointer; font-size:1.5rem; }
@media (max-width: 900px) {
    .grid-2 { grid-template-columns:1fr; gap:30px; }
    .hero h1 { font-size:2.2rem; }
    .desktop-nav { display:none; position:absolute; top:100%; left:0; width:100%; background:#fff; padding:30px; box-shadow:0 10px 20px rgba(0,0,0,0.1); text-align:center; }
    .desktop-nav.active { display:block; }
    .desktop-nav ul { flex-direction:column; gap:20px; }
    .header-actions .btn-header-reserve { display:none; }
    .mobile-toggle { display:block; margin-left:20px; }
    .booking-bar { flex-direction:column; border-radius:20px; padding:20px; gap:20px; }
    .btn-hero-submit { width:100%; }
}
/* --- MELHORIA DO TEXTO DO BANNER --- */

/* Centraliza o conteúdo */
.hero-content {
    text-align: center;
    margin-bottom: 40px; /* Espaço para a barra de reserva não colar */
    position: relative;
    z-index: 2; /* Garante que fique acima da imagem */
}

/* O texto pequeno em cima (Montserrat) */
.hero-subtitle {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 4px; /* Espaçamento chique entre letras */
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5); /* Sombra para leitura */
}

/* O texto grande (Playfair Display) */
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem; /* Bem grande */
    line-height: 1.2;
    color: #fff;
    font-weight: 400; /* Mais fino fica mais elegante */
    font-style: italic; /* O itálico da Playfair é lindo */
    text-shadow: 0 4px 15px rgba(0,0,0,0.4); /* Sombra suave mas forte */
}

/* Ajuste para Celular */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem; /* Menor no celular */
    }
    .hero-subtitle {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }
}

/* --- SEÇÃO DESTAQUES (UNIQUE) --- */

/* Títulos da Seção */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary);
}
.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #888;
    font-weight: 600;
}

/* Grid Layout */
.unique-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsivo automático */
    gap: 30px;
    justify-content: center;
}

/* O Card em si */
.unique-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Sombra leve */
    transition: all 0.4s ease;
    border-bottom: 4px solid transparent; /* Preparando para o hover */
}

/* Efeito ao passar o mouse */
.unique-card:hover {
    transform: translateY(-10px); /* Sobe um pouco */
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-bottom: 4px solid var(--gold-straw); /* Linha dourada aparece */
}

/* Imagem do Card */
.card-image-wrapper {
    height: 220px;
    overflow: hidden;
}
.unique-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que a imagem preencha sem esticar */
    transition: transform 0.5s ease;
}
.unique-card:hover .unique-img {
    transform: scale(1.1); /* Zoom suave na imagem */
}

/* Conteúdo do Card */
.unique-content {
    padding: 30px 25px;
    text-align: center;
    position: relative;
}

/* Ícone Redondo */
.icon-box {
    width: 60px;
    height: 60px;
    background: var(--bg-sand);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: -60px auto 20px auto; /* Puxa o ícone para cima da imagem */
    border: 4px solid #fff; /* Borda branca para separar da imagem */
    position: relative;
    z-index: 2;
}

.unique-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text);
}

.unique-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}