:root {
    --teal-dark: #0a2a2a;
    --teal-heading: #002B36;
    --gold: #dca345;
    --gold-hover: #c8922e;
    --bg-light: #F9F7F2;
    --text-body: #4A4A4A;
    --whatsapp: #25D366;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-body);
    background-color: var(--bg-light);
    line-height: 1.7;
}

.site-main {
    padding-top: 76px;
}

/* Navbar */
.site-navbar {
    background-color: var(--teal-dark) !important;
    padding: 0.75rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
    font-size: 1.25rem;
    letter-spacing: 0.5px;
}

.brand-gold {
    color: var(--gold);
}

.nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--gold) !important;
}

.btn-gold {
    border-color: var(--gold);
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.2s;
    background-color: #c5a059; /* Exemplo de cor gold */
    color: white;
    border: none;
}

.btn-gold:hover,
.btn-gold:focus {
    background-color: #a8874a;
    border-color: var(--gold-hover);
    color: #fff;
}

.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold);
    font-weight: 600;
    background: transparent;
}

.btn-outline-gold:hover {
    background-color: var(--gold);
    color: #fff;
}

.lang-switcher .btn-lang {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
}

.lang-switcher .btn-lang.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

/* Hero */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-bg-default {
    background: linear-gradient(135deg, var(--teal-dark) 0%, #1a4a4a 50%, var(--teal-heading) 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 42, 42, 0.65);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 1rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.hero-slogan {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto 1.5rem;
    opacity: 0.95;
}

/* Sections */
.section-title {
    color: var(--teal-heading);
    font-weight: 700;
    font-size: 2rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 0.75rem auto 0;
}

.section-hospedagem {
    background: #fff;
}

.hospedagem-subtitle {
    color: var(--teal-heading);
    font-weight: 600;
    margin-bottom: 1rem;
}

.hospedagem-text {
    font-size: 1rem;
    line-height: 1.8;
}

.section-atividades {
    background: var(--bg-light);
}
.atividade-img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:.375rem .375rem 0 0;
    object-fit:cover;
}

.atividade-card {
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 12px !important;
    overflow:hidden;
}

.atividade-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
}

.atividade-card .card-title {
    color: var(--teal-heading);
    font-weight: 600;
    font-size: 1rem;
}

.section-contato {
    background: #fff;
}

.text-gold {
    color: var(--gold) !important;
}

.text-whatsapp {
    color: var(--whatsapp) !important;
}

.btn-whatsapp {
    background-color: var(--whatsapp);
    color: #fff;
    font-weight: 600;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
}

.btn-whatsapp:hover {
    background-color: #1da851;
    color: #fff;
}

.contato-info h5 {
    color: var(--teal-heading);
    font-weight: 600;
    font-size: 1rem;
}

.contato-info a {
    color: var(--text-body);
    text-decoration: none;
}

.contato-info a:hover {
    color: var(--gold);
}

/* Carousel */
.carousel-custom .carousel-img {
    height: 400px;
    object-fit: cover;
}

.placeholder-carousel {
    height: 400px;
    background: linear-gradient(135deg, #e8e4dc, #d4cfc4);
}

.carousel-caption {
    background: rgba(10, 42, 42, 0.7);
    border-radius: 4px;
    padding: 0.5rem 1rem;
    bottom: 1rem;
}

/* Page header (inner pages) */
.page-header {
    background: var(--teal-dark);
    margin-top: -76px;
    padding-top: calc(76px + 3rem) !important;
}

/* Footer */
.site-footer {
    background-color: var(--teal-dark);
    color: rgba(255, 255, 255, 0.85);
}

.footer-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.footer-heading {
    color: var(--gold);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 2;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-tagline {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Modal */
.modal-title {
    color: var(--teal-heading);
    font-weight: 700;
}

#atividadeModalCarousel .carousel-item img {
    height: 300px;
    object-fit: cover;
    width: 100%;
}

#atividadeModal .modal-content {
    border-radius: 1rem;
}

#atividadeModal .carousel-img {
    height: 300px; /* Altura fixa para manter o alinhamento */
    object-fit: cover;
}

#atividadeModalDescricao {
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Forms */
.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(220, 163, 69, 0.25);
}

.card {
    border-radius: 8px;
}

@media (max-width: 991.98px) {
    .lang-switcher {
        margin: 0.5rem 0;
    }

    .hero-section {
        min-height: 70vh;
    }

    .carousel-custom .carousel-img {
        height: 280px;
    }
}
