/* ======================================================
   1. DESIGN TOKENS
====================================================== */

:root {
    --brand: #7e4a1f;
    --brand-light: #b8895a;
    --barro: #723e13;
    --musgo: #525436;
    --bg: #f8f6f3;
    --texto: #2d2d2d;
    --overlay: rgba(0, 0, 0, 0.55);
}


/* ======================================================
   2. BASE
====================================================== */

body {
    font-family: 'Nunito', sans-serif;
    background: var(--bg);
    color: var(--texto);
    margin: 0;
}


/* ======================================================
   3. TIPOGRAFIA
====================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Marcellus', serif;
    font-weight: 400;
    letter-spacing: .5px;
}

.title-journey { color: var(--musgo); }
.lead-highlight { font-weight: bold; }


/* ======================================================
   4. UTILITÁRIOS
====================================================== */

.bg-areia { background-color: #f3eee6; }
.bg-off   { background-color: var(--bg); }
.bg-brand { background-color: var(--brand); }

.text-brand { color: var(--brand); }
.text-muted-soft { color: #5a5146; }

.hr-brand {
    border: 2px solid var(--brand-light);
    opacity: 1;
    max-width: 60px;
}


/* ======================================================
   5. LAYOUT
====================================================== */

.top-bar {
    background: #f3eee6;
    padding: 18px 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
}

.top-bar img { height: 80px; }

.logo-journey img { max-height: 70px; }

.section-intro {
    text-align: center;
}

.section-intro p {
    max-width: 650px;
    margin: auto;
    font-size: 1.05rem;
}

/* Responsivo Layout */
@media (max-width: 991px) {
     .top-bar img { height: 70px; }

    .logo-journey img { max-height: 60px !important; }
}


/* ======================================================
   6. HERO
====================================================== */

.hero {
    min-height: calc(100vh - 106px);
    background: url('../imgs/bg-1.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 40px 20px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--overlay);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    color: #fff;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.15rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

/* Responsivo Hero */
@media (max-width: 991px) {
    .hero h1 { font-size: 2.3rem; }
    .hero p { font-size: 1rem; }
}


/* ======================================================
   7. COMPONENTES
====================================================== */

.form-box {
    background: #ffffff;
    border-radius: 14px;
    padding: 35px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transition: all .3s ease;
}

.form-box h5 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--brand);
}

.btn-brand {
    background: var(--brand);
    color: #fff;
    border: none;
    padding: .8rem 1.6rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all .3s ease;
}

.btn-brand:hover {
    background: var(--brand-light);
    transform: translateY(-2px);
}

/* Responsivo Componentes */
@media (max-width: 991px) {
    .form-box { padding: 25px; }
}


/* ======================================================
   8. GALERIA
====================================================== */

.gallery-carousel img {
    border-radius: 10px;
    transition: transform .3s ease, box-shadow .3s ease;
}

.gallery-carousel img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.gallery-item {
    width: 100%;
    aspect-ratio: 8 / 8;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.gallery-item::after {
    content: "\f424";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    pointer-events: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}


/* ======================================================
   9. CTA FIXO
====================================================== */

.cta-fixed {
    display: none;
    background: linear-gradient(90deg, #0f1c1c, #1b2b2b);
    z-index: 999;
    justify-content: center;
}

.cta-box {
    display: flex;
    justify-content: center !important;
}

.btn-cta {
    background: var(--barro);
    color: #fff;
    padding: 10px 15px;
    border-radius: 14px;
    font-weight: 600;
    letter-spacing: .5px;
    text-decoration: none;
    transition: all .3s ease;
    border: 2px solid var(--brand-light);
}

.btn-cta:hover {
    background: #8b4f1a;
    transform: translateY(-3px);
}

.btn-cta-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-cta-outline:hover {
    background: var(--texto);
    color: #fff;
}


/* ======================================================
   ANSWERS (JORNADA)
====================================================== */

.answers-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.answer-item {
    background: #ffffff;
    border-radius: 40px;
    padding: 16px 24px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.answer-item:hover {
    background: var(--brand);
    color: #fff;
    transform: translateY(-3px);
    border-color: var(--brand);
}

/* Responsivo */
@media (max-width: 768px) {
    .answer-item {
        padding: 14px 18px;
        font-size: .95rem;
    }
}

/* ======================================================
   FINAL JOURNEY
====================================================== */

.final-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* ======================================================
   10. SLICK (BIBLIOTECA)
====================================================== */


.custom-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.custom-arrow:hover {
    color: #fff;
    background: var(--barro);
    border-color: var(--barro);
    transform: translateY(-50%) scale(1.08);
}

.slick-prev { left: -30px; }
.slick-next { right: -30px; }

.slick-prev:before,
.slick-next:before {
    display: none;
}


/* Responsivo Slick */
@media (max-width: 768px) {

    .slick-prev {
        left: 20px;
    }

    .slick-next {
        right: 20px;
    }

    .custom-arrow {
        width: 42px;
        height: 42px;
        font-size: 14px;
    }

}

