/* Variáveis de Cores (Paleta Hibiscos + Estilo Clean da Referência) */
:root {
    --brand-dark: #2a585a;
    /* Verde lagoa escuro */
    --brand-primary: #c86957;
    /* Coral */
    --text-main: #2c3639;
    /* Cinza grafite */
    --text-muted: #2c3639;
    /* Cinza claro para textos secundários */
    --bg-offwhite: #F8F8F6;
    /* Fundo geral da página */
    --bg-white: #FFFFFF;
    /* Fundo de cards */
    --border-color: #EAECF0;

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-offwhite);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

.section-padding {
    padding: 100px 0;
}

.pt-0 {
    padding-top: 0;
}

.bg-offwhite {
    background-color: var(--bg-offwhite);
}

a {
    text-decoration: none;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

/* Tipografia Comum */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--brand-primary);
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 40px;
}

.text-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    border: 1px solid #E0E0E0;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Header */
header {
    background-color: var(--bg-white);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-dark);
    line-height: 1.1;
}

.logo-bold {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-light {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.navbar {
    display: flex;
    gap: 32px;
}

.navbar a {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

.navbar a:hover {
    color: var(--brand-dark);
}

.btn-header {
    background-color: var(--brand-dark);
    color: var(--bg-white);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
}

.btn-header:hover {
    background-color: #1b3b3d;
}

.menu-mobile-icon {
    display: none;
    font-size: 1.5rem;
    color: var(--brand-dark);
    cursor: pointer;
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('../img/barrerinhas.jpg') center/cover no-repeat;
}

.hero-content {
    color: var(--bg-white);
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.85);
    color: var(--text-main);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--bg-white);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: var(--brand-primary);
    color: var(--bg-white);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: #b05747;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Curve Bottom Hero */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Diferenciais */
.grid-diferenciais {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    background: var(--bg-white);
    padding: 80px;
    border-radius: 32px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.02);
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.avatars {
    display: flex;
}

.avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--bg-white);
    margin-left: -12px;
}

.avatars img:first-child {
    margin-left: 0;
}

.sp-text {
    font-size: 0.85rem;
    color: var(--brand-dark);
    line-height: 1.4;
}

.dif-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-offwhite);
    border-radius: 16px;
}

.icon-box {
    color: var(--brand-dark);
    font-size: 1.8rem;
    margin-top: 2px;
}

.feature-text h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--brand-dark);
    margin-bottom: 6px;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Como Funciona */
.steps-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.5rem;
    color: var(--text-muted);
}

.active-icon {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

.step h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--brand-dark);
    margin-bottom: 8px;
}

.step p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.step-line {
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

/* Destinos/Passeios */
.destinos-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.btn-primary-small {
    background: var(--brand-primary);
    color: var(--bg-white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.destino-card {
    background: var(--bg-white);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.card-img-wrapper {
    position: relative;
    height: 240px;
}

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

.card-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.tag-yellow {
    background: var(--brand-primary);
    color: #fff;
}

.tag-white {
    background: var(--bg-white);
    color: var(--text-main);
}

.card-content {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--brand-dark);
    margin-bottom: 12px;
}

.card-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.card-link {
    color: var(--brand-dark);
    font-size: 0.9rem;
    font-weight: 600;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    text-align: center;
}

/* Nossa Missão */
.mission-box {
    display: flex;
    background: var(--bg-white);
    border-radius: 32px;
    overflow: hidden;
}

.mission-text {
    padding: 60px;
    flex: 1;
}

.mission-text p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.mission-image {
    flex: 1;
}

.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-stats {
    display: flex;
    gap: 24px;
    margin-top: 40px;
    background: var(--bg-offwhite);
    padding: 24px;
    border-radius: 16px;
}

.m-stat {
    display: flex;
    gap: 16px;
    flex: 1;
}

.m-stat i {
    font-size: 1.5rem;
    color: var(--brand-dark);
}

.m-stat strong {
    display: block;
    font-family: var(--font-heading);
    color: var(--brand-dark);
    font-size: 0.95rem;
}

.m-stat span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Depoimentos */
.inline-sp {
    justify-content: center;
    margin-bottom: 24px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.review-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 24px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.stars {
    color: #FDB022;
    margin-bottom: 16px;
    display: flex;
    gap: 4px;
}

.review-card p {
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 32px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.r-avatar {
    width: 40px;
    height: 40px;
    background: var(--bg-offwhite);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-muted);
}

.r-info strong {
    display: block;
    font-size: 0.9rem;
    color: var(--brand-dark);
}

.r-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Galeria Instagram */
.slider-arrows {
    display: flex;
    gap: 12px;
}

.slider-arrows button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    color: var(--brand-dark);
    cursor: pointer;
    transition: 0.3s;
}

.slider-arrows button:hover {
    background: var(--brand-dark);
    color: var(--bg-white);
}

.gallery-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: none;
}

.gallery-grid::-webkit-scrollbar {
    display: none;
}

.insta-post {
    min-width: 280px;
    background: var(--bg-white);
    border-radius: 16px;
    padding: 16px;
}

.insta-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.insta-avatar {
    width: 28px;
    height: 28px;
    background: var(--brand-dark);
    border-radius: 50%;
}

.insta-header span {
    font-size: 0.8rem;
    font-weight: 500;
}

.insta-img {
    width: 100%;
    height: 280px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
}

.insta-footer {
    display: flex;
    gap: 16px;
    margin-top: 12px;
    color: var(--text-main);
    font-size: 1.2rem;
}

.bookmark-right {
    margin-left: auto;
}

/* Footer */
.footer {
    background-color: var(--brand-dark);
    padding: 60px 0;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
}

.footer-logo {
    color: #fff;
    margin-bottom: 20px;
}

.footer-logo .logo-light {
    color: rgba(255, 255, 255, 0.7);
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 400px;
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #fff;
}

.contact-email {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-email i {
    font-size: 1.5rem;
}

.contact-email span {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-email strong {
    font-size: 0.95rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.btn-whatsapp:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Responsividade */
@media (max-width: 992px) {
    .grid-diferenciais {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .steps-container {
        flex-direction: column;
        gap: 40px;
    }

    .step-line {
        display: none;
    }

    .cards-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .mission-box {
        flex-direction: column;
    }

    .mission-text {
        padding: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .navbar {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
        gap: 20px;
        text-align: center;
    }

    .navbar.active {
        display: flex;
    }

    .btn-header {
        display: none;
    }

    .menu-mobile-icon {
        display: block;
    }
}

/* --- Seção de Vídeo Experiência --- */
.bg-white {
    background-color: var(--bg-white);
}

.align-center {
    align-items: center;
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--brand-dark);
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-outline-dark:hover {
    border-color: var(--brand-dark);
    background: var(--brand-dark);
    color: #fff;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 320px;
    /* Mantém a proporção vertical de celular */
    margin: 0 auto;
    border-radius: 32px;
    /* Bordas bem arredondadas, premium */
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    /* Sombra elegante */
    border: 8px solid var(--bg-offwhite);
    /* Cria uma moldura */
    background: var(--bg-offwhite);
}

.video-wrapper video,
.video-wrapper iframe {
    width: 100%;
    height: 100%;
    aspect-ratio: 9/16;
    /* Força o formato vertical do Reel */
    object-fit: cover;
    display: block;
}

/* ==============================================================
   ESTILOS EXCLUSIVOS DA PÁGINA DE PASSEIOS (CATÁLOGO)
============================================================== */

/* Page Header (Topo menor para páginas internas) */
.page-header {
    background-color: var(--brand-dark);
    padding: 160px 0 80px; /* Espaço pro menu fixo */
    color: #fff;
    border-bottom: 8px solid var(--brand-primary);
}

.tag-white-border {
    border-color: rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.page-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Catalog Grid (Estrutura dos cartões completos) */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 Colunas no Computador */
    gap: 40px;
    margin-top: -30px; /* Para subir levemente sobre o fundo */
}

.catalog-card {
    background: var(--bg-white);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.catalog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.catalog-img {
    position: relative;
    height: 280px;
}

.catalog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tag-coral {
    background: var(--brand-primary);
    color: #fff;
}

.catalog-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.catalog-body h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--brand-dark);
    margin-bottom: 16px;
}

.catalog-body p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
    flex: 1; /* Empurra o resto pro fundo */
}

/* Meta Infos (Horário e Duração) */
.catalog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-main);
    font-weight: 500;
}

.meta-item i {
    font-size: 1.2rem;
    color: var(--brand-primary);
}

/* Footer do Cartão (Preço e Botão) */
.catalog-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.catalog-price {
    display: flex;
    flex-direction: column;
}

.catalog-price span {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.catalog-price strong {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--brand-dark);
    line-height: 1;
}

.btn-reservar {
    background: var(--brand-dark);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-reservar:hover {
    background: var(--brand-primary);
    color: #fff;
}

/* Responsividade do Catálogo */
@media (max-width: 992px) {
    .catalog-grid {
        grid-template-columns: 1fr; /* 1 Coluna no Celular */
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .catalog-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .btn-reservar {
        width: 100%;
        justify-content: center;
    }
}