.hero {
    position: relative;
    min-height: 100vh;
    background-image: url("/static/img/hero/pedra-furada.png");
    background-size: cover;
    background-position: center;
    color: white;
}

/* OVERLAY ESCURO */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.65));
}

/* CONTEÚDO */
.hero .container {
    z-index: 2;
}

/* LOCALIZAÇÃO */
.hero-location {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(20, 0, 0, 0.37);
    backdrop-filter: blur(6px);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* TÍTULO */
.hero-title {
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-top: 20px;
    line-height: 1.2;
}

.hero-title span {
    color: #C9A96C;
}

/* SUBTÍTULO */
.hero-subtitle {
    margin-top: 20px;
    font-size: 1.1rem;
    max-width: 520px;
    opacity: .9;
}

@media (max-width: 576px) {
    .card-badge {
        position: relative !important;
        bottom: auto !important;
        right: auto !important;
        margin-top: 15px;
        margin-left: auto;
        margin-right: auto;
    }
}

.btn-cta:hover {
    filter: brightness(1.1);
    box-shadow: 0 4px 15px rgba(191, 163, 111, 0.3);
}

footer a.btn-outline-light:hover {
    background-color: #bfa36f !important;
    color: #244B1A !important;
    border-color: #bfa36f !important;
    opacity: 1 !important;
}

.btn-brand-dark {
    background-color: #244B1A !important;
    color: #ffffff !important;
}

.bg-brand-dark {
    background-color: #244B1A;
}

.btn-brand-dark:hover {
    background-color: #1a251f !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(36, 75, 26, 0.3);
}

.btn-outline-brand-dark {
    color: #244B1A !important;
    border-color: #244B1A !important;
}

.btn-outline-brand-dark:hover {
    background-color: #244B1A !important;
    color: #ffffff !important;
    border-color: #244B1A !important;
    box-shadow: 0 4px 15px rgba(36, 75, 26, 0.3);
}

.btn-outline-brand-light {
    color: #ffffff !important;
    border-color: #ffffff !important;
}

.btn-outline-brand-light:hover {
    background-color: #bfa36f !important;
    color: #244B1A !important;
    border-color: #bfa36f !important;
    opacity: 1 !important;
}

.text-brand-secondary {
    color: #bfa36f !important;
}

.text-brand-dark {
    color: #244B1A !important;
}

.bg-brand-light {
    background-color: #e6e6e6;
}

.bg-brand-secondary {
    background-color: #bfa36f !important;
}

.bg-brand-lighter {
    background-color: #f8f9fa;
}

#main-navbar {
    transition: background-color 0.4s ease, color 0.4s ease, backdrop-filter 0.4s ease;
}