/* ======= Navbar ======= */
.navbar {
    z-index: 1045;
}

.navbar {
    transition: background-color .3s ease, box-shadow .3s ease, padding .3s ease;
    padding: .8rem 0;
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: .5px;
}

.navbar.fixed-top {
    background: transparent;
}

.navbar.scrolled {
    background: rgba(0,0,0,.85);
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
    backdrop-filter: blur(6px);
}

.navbar .nav-link {
    color: #fff;
}

    .navbar .nav-link:hover, .navbar .nav-link:focus {
        color: #ffc107;
    }

.navbar-toggler {
    border-color: rgba(255,255,255,.5);
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

@media (max-width: 991.98px) {
    .navbar.scrolled {
        background: rgba(0,0,0,.90);
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
}

/* ======= Hero ======= */
.hero {
    position: relative;
    height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

    .hero video, .hero img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }

    .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,.5);
        z-index: 1;
    }

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
}

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    opacity: .95;
}

.btn-custom {
    background: #ffc107;
    color: #000;
    border: none;
    padding: 10px 20px;
    font-size: 1.1rem;
    border-radius: .5rem;
    transition: .2s;
}

    .btn-custom:hover {
        background: #e0a800;
    }

/* ======= Seções ======= */
section {
    padding: 80px 0;
}

:target {
    scroll-margin-top: 80px;
}

html {
    scroll-behavior: smooth;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
}

    .social-link i {
        font-size: 1.1rem;
    }

    .social-link:hover {
        opacity: .8;
    }

/* ===== Carrossel de Experiências ===== */
#experiencias h2 {
    font-weight: 800;
    letter-spacing: .4px;
}

.exp-carousel {
    position: relative;
    --gap: 1.25rem;
}

.exp-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc(100% - 2rem);
    gap: var(--gap);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: .5rem;
    padding-bottom: .25rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

    .exp-track::-webkit-scrollbar {
        display: none;
    }

@media (min-width:576px) {
    .exp-track {
        grid-auto-columns: calc((100% - var(--gap))/2);
    }
}

@media (min-width:992px) {
    .exp-track {
        grid-auto-columns: calc((100% - (var(--gap)*2))/3);
    }
}

@media (min-width:1200px) {
    .exp-track {
        grid-auto-columns: calc((100% - (var(--gap)*3))/4);
    }
}

.exp-card {
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
    overflow: hidden;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
}

.exp-media {
    position: relative;
    aspect-ratio: 16/11;
    overflow: hidden;
}

    .exp-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.exp-title {
    position: absolute;
    top: .6rem;
    left: .6rem;
    color: #fff;
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
    font-size: 1.05rem;
    text-shadow: 0 2px 8px rgba(0,0,0,.45);
}

    .exp-title span {
        display: block;
    }

.exp-date {
    position: absolute;
    bottom: .6rem;
    left: .6rem;
    background: #ff7a00;
    color: #fff;
    font-weight: 800;
    padding: .25rem .5rem;
    border-radius: .5rem;
    font-size: .9rem;
}

.exp-body {
    padding: 1rem 1rem 1.1rem;
}

.exp-price {
    margin-top: .5rem;
    padding-top: .6rem;
    font-size: .95rem;
    border-top: 1px solid rgba(0,0,0,.1);
}

.exp-nav-left, .exp-nav-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    display: inline-flex;
    z-index: 3;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

.exp-nav-left {
    left: -50px;
}

.exp-nav-right {
    right: -50px;
}

.exp-nav:disabled {
    opacity: .45;
    pointer-events: none;
}

.exp-track:focus {
    outline: 3px solid #ffe4cc;
    outline-offset: 2px;
    border-radius: 12px;
}

/* ===== Seção Depoimento (Full Width) ===== */
.quote-section {
    position: relative;
    width: 100%;
    height: 500px;
    background: url("../fotos/depoimento-bg.png") center/cover no-repeat;
    color: #fff;
    margin: 0;
    overflow: hidden;
}

.quote-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: right;
    padding: 2rem;
}

.quote-section .container {
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.quote-section p {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.quote-section .quote-left, .quote-section .quote-right {
    font-size: 4rem;
    color: #fff;
    vertical-align: middle;
}

.quote-section .quote-left {
    margin-right: .5rem;
}

.quote-section .quote-right {
    margin-left: .5rem;
}

.quote-section footer {
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 1rem;
}

@media (max-width:992px) {
    .quote-section {
        height: 600px;
    }
}

@media (max-width:768px) {
    .quote-section {
        height: 700px;
        padding: 3rem 1rem;
    }

    .quote-overlay {
        text-align: center;
        padding: 3rem 1.5rem;
    }

    .quote-section p {
        font-size: 1.6rem;
        line-height: 1.4;
    }

    .quote-section .quote-left, .quote-section .quote-right {
        font-size: 2.2rem;
    }

    .quote-section footer {
        font-size: 1.1rem;
    }
}

@media (max-width:480px) {
    .quote-section {
        height: 750px;
    }

        .quote-section p {
            font-size: 1.4rem;
        }
}

/* ===== Equipe ===== */
#equipe h2 {
    font-weight: 800;
    letter-spacing: .2px;
}

.equipe-card {
    margin: 0;
}

.equipe-foto {
    width: 180px;
    height: 180px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: #C64D16;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .equipe-foto img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
        display: block;
        background: #fff;
    }

.equipe-nome {
    font-weight: 800;
    margin-bottom: .35rem;
}

.equipe-cargo {
    display: inline-block;
    font-size: .95rem;
    margin: 0;
    padding: .5rem .75rem;
    max-width: 260px;
}

@media (max-width:576px) {
    .equipe-foto {
        width: 150px;
        height: 150px;
    }

    .equipe-cargo {
        max-width: 100%;
    }
}

/* ===== Carrossel de Depoimentos ===== */
.dep-carousel {
    position: relative;
    --gap: 1.25rem;
}

.dep-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc(100% - 2rem);
    gap: var(--gap);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: .5rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

    .dep-track::-webkit-scrollbar {
        display: none;
    }

@media (min-width:576px) {
    .dep-track {
        grid-auto-columns: calc((100% - var(--gap))/2);
    }
}

@media (min-width:992px) {
    .dep-track {
        grid-auto-columns: calc((100% - (var(--gap)*2))/3);
    }
}

@media (min-width:1200px) {
    .dep-track {
        grid-auto-columns: calc((100% - (var(--gap)*3))/4);
    }
}

.dep-card {
    position: relative;
    overflow: visible; /* permite avatar fora do card */
    scroll-snap-align: start;
    background: #000;
    height: 100%;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease;
}

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

    .dep-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.dep-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

    .dep-overlay p {
        font-size: .95rem;
        margin: 0;
    }

/* avatar */
.dep-avatar {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 4px solid #fff;
    overflow: hidden;
    background: #C64D16;
    z-index: 100;
    pointer-events: none;
    box-shadow: 0 4px 16px rgba(0,0,0,.25);
}

    .dep-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }

/* botões (se usados) */
.dep-nav-left, .dep-nav-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    display: inline-flex;
    z-index: 10;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

.dep-nav-left {
    left: -50px;
}

.dep-nav-right {
    right: -50px;
}

.dep-nav:disabled {
    opacity: .4;
    pointer-events: none;
}

/* ===== Carrossel de Parceiros ===== */
.parc-carousel {
    position: relative;
    --gap: 1.25rem;
}

.parc-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc(100% - 2rem);
    gap: var(--gap);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

    .parc-track::-webkit-scrollbar {
        display: none;
    }

@media (min-width:576px) {
    .parc-track {
        grid-auto-columns: calc((100% - var(--gap))/2);
    }
}

@media (min-width:768px) {
    .parc-track {
        grid-auto-columns: calc((100% - (var(--gap)*2))/3);
    }
}

@media (min-width:992px) {
    .parc-track {
        grid-auto-columns: calc((100% - (var(--gap)*3))/4);
    }
}

.parc-card {
    background: #fff;
    border-radius: .5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    padding: 1.5rem;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
}

    .parc-card img {
        max-height: 120px;
        max-width: 100%;
        object-fit: contain;
        filter: grayscale(20%);
        transition: filter .3s ease, transform .3s ease;
    }

    .parc-card:hover img {
        filter: none;
        transform: scale(1.05);
    }

/* Indicadores (bolinhas) */
.parc-dots {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: .5rem;
}

.parc-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background .3s;
}

    .parc-dot.active {
        background: #444;
    }

/* ===== Missão · Visão · Valores ===== */
.mvv-section {
    position: relative;
    padding: 50px 0 40px; /* ↓ reduziu o espaço inferior */
    background: url("../fotos/bg2.png") center/cover no-repeat;
}

    .mvv-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.15));
    }

    .mvv-section .container {
        position: relative;
        z-index: 2;
    }

/* Card centralizado e coluna do ícone mais larga */
.mvv-card {
    display: flex;
    align-items: center;
    gap: 24px;
    background: #fff;
    border-radius: .75rem;
    box-shadow: 0 10px 24px rgba(0,0,0,.12);
    padding: 30px 40px;
    max-width: 960px;
    margin: 0 auto 28px;
}

.mvv-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 150px;
}

    .mvv-icon img {
        margin-bottom: 8px;
    }

.mvv-title {
    color: #C64D16;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
    font-size: 1.05rem;
    text-align: center;
}

.mvv-content {
    flex: 1;
    display: flex;
    align-items: center;
}

.mvv-text, .mvv-list {
    margin: 0;
    padding: 0;
}

.mvv-list {
    padding-left: 1.25rem;
}

@media (max-width:768px) {
    .mvv-card {
        flex-direction: column;
        text-align: center;
        padding: 22px;
    }

    .mvv-icon {
        min-width: auto;
        margin-bottom: 10px;
    }

    .mvv-content {
        align-items: flex-start;
    }
}

/* ===== Por que escolher a Desbravar ===== */
.porque-section {
    position: relative;
    padding-top:50px;
    padding-bottom:0px;

}

.porque-box {
    border-radius: .5rem;
    padding: 18px 20px;
    background: #fff;
}

.porque-list {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

    .porque-list li {
        margin-bottom: .6rem;
    }

        .porque-list li strong {
            color: #C64D16;
        }

.porque-photo {
    position: relative;
    height: 450px;
    min-height: 140px;
    margin: 0;
}

    .porque-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* Empilha no mobile e remove o corte para manter legibilidade */
@media (max-width: 768px) {
    .porque-photo img {
        clip-path: none;
        border-radius: .5rem;
    }
}


/* ===== Público / Experiências ===== */
.aud-box {
    padding-top: 0px;
    padding-bottom: 0px;
    background: #fff;
}

.aud-title {
    color: #666;
    font-weight: 800;
}

.aud-photo {
    margin: 0;
    overflow: hidden;
}

    .aud-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        /* deixa com “cara de peça” mais bem acabada */
        box-shadow: 0 8px 24px rgba(0,0,0,.08);
    }

/* Empilha no mobile */
@media (max-width: 991.98px) {
    #publico h2 {
        font-size: 1.35rem;
    }
}

/* ===== Contato / Crie seu roteiro ===== */
.text-brand {
    color: #C64D16;
    letter-spacing: .3px;
}

/* ===== Ações rápidas (Crie seu roteiro) ===== */
.contato-card {
    background: #fff;
    border: 2px solid #ddd;
    border-radius: .5rem;
    padding: 28px 18px;
    text-decoration: none;
    color: #333;
    height: 150px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

    .contato-card:hover {
        border-color: #C64D16;
        box-shadow: 0 8px 22px rgba(0,0,0,.08);
        transform: translateY(-3px);
    }

    .contato-card strong {
        color: #444;
        font-size: 0.95rem;
        line-height: 1.3;
    }

    .contato-card img {
        width: 56px;
        height: auto;
        margin-bottom: 8px;
    }

/* Centralizar corretamente no desktop e mobile */
@media (max-width: 768px) {
    .contato-card {
        margin: 0 auto;
        width: 90%;
    }
}

.btn-brand {
    background: #C64D16;
    color: #fff;
    border: none;
    border-radius: .5rem;
}

    .btn-brand:hover {
        background: #a94210;
    }


/* ==== Cards da Agenda ==== */
/* ==== Card de Agenda (estilo imagem) ==== */
.card-agenda {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,.12);
    overflow: hidden;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    padding: 0;
    margin: 0; /* <- sem margem! */
    height: 100%; /* opcional: para os cards ficarem com mesma altura */
    display: flex; /* opcional */
    flex-direction: column; /* opcional */
}

.card-header {
    background: #fff;
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #e5e5e5;
}

.card-data {
    font-size: 2.5rem;
    font-weight: 800;
    color: #555;
    margin-right: 10px;
    line-height: 1;
}

.card-titulo {
    font-size: 1.1rem;
    font-weight: 700;
    color: #444;
    text-transform: uppercase;
    line-height: 1.2;
}

.card-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== INFORMAÇÕES DO PASSEIO ===== */
.info-passeio {
    background: #000; /* cinza escuro do fundo */
    color: #fff;
    padding: 44px 0 48px;
}

.ip-heading {
    color: #C64D16; /* laranja da marca */
    letter-spacing: .12em;
    font-weight: 800;
    text-transform: uppercase;
}

.ip-icons .ip-item {
    text-align: center;
    color: rgba(255,255,255,.95);
    line-height: 1.25;
}

    .ip-icons .ip-item img {
        height: 56px; /* troque os ícones e mantenha o tamanho */
        width: auto;
        margin-bottom: 10px;
        display: inline-block;
    }

.ip-price-box {
    border: 2px solid rgba(255,255,255,.6);
    padding: 22px;
    border-radius: 4px;
    background: transparent;
}

    .ip-price-box strong {
        color: #D75B1F; /* laranja mais vivo */
        font-weight: 800;
        font-size: 1.4rem;
        text-transform: uppercase;
    }

.ip-cta {
    display: inline-block;
    background: #C64D16;
    color: #fff !important;
    font-weight: 900;
    letter-spacing: .02em;
    text-transform: uppercase;
    padding: 20px 22px;
    border-radius: 4px;
    text-decoration: none;
    transition: transform .15s ease, filter .15s ease, background .2s ease;
}

    .ip-cta:hover {
        filter: brightness(1.05);
        transform: translateY(-1px);
    }

    .ip-cta:active {
        transform: translateY(0);
    }

.ip-note {
    color: rgba(255,255,255,.9);
    margin-top: 8px;
}

.ip-foot {
    color: rgba(255,255,255,.9);
    font-size: 1.02rem;
}

/* responsivo */
@media (max-width: 991.98px) {
    .ip-price-box strong {
        font-size: 1.25rem;
    }

    .ip-icons .ip-item img {
        height: 52px;
    }
}

@media (max-width: 575.98px) {
    .ip-icons .ip-item img {
        height: 48px;
    }

    .ip-price-box {
        padding: 18px;
    }

    .ip-cta {
        padding: 18px;
    }
}

/* miniaturas */
.gal-thumb {
    width: 100%;
    aspect-ratio: 4/3; /* mantém grade uniforme */
    object-fit: cover;
    display: block;
    border-radius: 6px;
    box-shadow: 0 6px 18px rgba(0,0,0,.12);
    transition: transform .2s ease, box-shadow .2s ease;
}

.gal-item:hover .gal-thumb {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

/* lightbox */
#galeriaModal .modal-content {
    border: none;
}

.gal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    line-height: 1;
    font-weight: 700;
    color: #fff;
    background: rgba(0,0,0,.35);
    border: none;
    border-radius: 50%;
    z-index: 10;
    cursor: pointer;
    transition: background .2s ease, transform .1s ease;
}

.gal-prev {
    left: 12px;
}

.gal-next {
    right: 12px;
}

.gal-nav:hover {
    background: rgba(0,0,0,.55);
}

.gal-nav:active {
    transform: translateY(-50%) scale(.98);
}

#galeriaImg {
    max-height: 85vh;
    object-fit: contain;
    background: #000;
}


/* ===== Footer ===== */
.footer {
    background: url("../img/bg_footer.png") center/cover no-repeat;
    background-color: #999;
    color: #fff;
    position: relative;
}

    .footer::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,.55);
    }

    .footer .container {
        position: relative;
        z-index: 2;
    }

    .footer h5, .footer h6 {
        color: #fff;
        font-weight: 700;
        letter-spacing: .5px;
    }

    .footer p {
        font-size: .95rem;
        margin: 0;
    }

    .footer small {
        font-size: .85rem;
        color: rgba(255,255,255,0.8);
    }

    .footer i {
        vertical-align: middle;
        font-size: 1.1rem;
    }

    /* Centralizar blocos horizontalmente no footer */
    .footer .row.align-items-center {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 4rem;
    }

    .footer .col-md-6 {
        max-width: 300px;
    }

    .footer .text-center {
        margin-top: 2rem;
    }

@media (max-width:768px) {
    .footer {
        text-align: center;
    }

        .footer .row.align-items-center {
            flex-direction: column;
            align-items: center;
            gap: 2rem;
            text-align: center;
        }

        .footer img {
            margin: 0 auto;
        }
}
