/* Estilos personalizados restaurados do original */
body {
    font-family: 'Arial Narrow', Arial, sans-serif;
    background-color: #f3f4f6; /* bg-gray-100 */
    color: #374151; /* text-gray-700 */
}

/* Cores personalizadas baseadas na paleta original */
.bg-primary-dark { background-color: #b09673; }
.text-primary-dark { color: #b09673; }
.bg-secondary-dark { background-color: #000000; }
.bg-accent-gold { background-color: #b09673; }
.text-accent-gold { color: #b09673; }
.border-accent-gold { border-color: #b09673; }
.hover\:bg-accent-gold-darker:hover { background-color: #5D4B41; }
.hover\:text-primary-dark:hover { color: #5D4B41; }

/* Estilo para o sublinhado animado do menu */
.menu-underline {
    position: relative;
    padding-bottom: 4px;
}
.menu-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #5D4B41;
    transition: width 0.3s ease-in-out;
}
.menu-underline:hover::after {
    width: 100%;
}

/* Animação de Fade-in */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fadeIn {
    animation: fadeIn 1s ease-out forwards;
}
.animate-delay-100 { animation-delay: 0.1s; }
.animate-delay-200 { animation-delay: 0.2s; }
.animate-delay-300 { animation-delay: 0.3s; }
.animate-delay-400 { animation-delay: 0.4s; }
.animate-delay-500 { animation-delay: 0.5s; }

/* Container responsivo para mapa */
.responsive-container-16-9 {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 0.75rem; /* rounded-xl */
}
.responsive-container-16-9 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Container de vídeo para proporção 9:16 (Original) */
.video-container-9-16 {
    position: relative;
    width: 100%;
    padding-bottom: 177.77%; /* 16 / 9 = 1.7777... */
    height: 0;
    overflow: hidden;
}
.video-container-9-16 iframe,
.video-container-9-16 video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Estilo para inputs de formulário */
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    border-bottom: 2px solid #000;
    background-color: transparent;
    outline: none;
    transition: border-color 0.2s ease-in-out;
    border-radius: 0;
}
.form-input:focus {
    border-color: #5D4B41;
}

/* Estilos para o botão de voltar ao topo */
#back-to-top {
    transition: opacity 0.3s, visibility 0.3s;
}

/* Efeito Parallax e Imagem de Fundo Responsiva */
.parallax-bg {
    background-attachment: scroll;
    margin-top: -10%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* Imagem padrão para mobile */
    background-image: url('../Imagens/BACKDROPMOBO.JPG');
}
/* Media query para trocar a imagem em telas maiores (desktop) */
@media (min-width: 768px) {
    .parallax-bg {
        background-image: url('../Imagens/IMG_6544.JPG');
    }
}

/* Estilos do Slider (Dots e Setas) */
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #b09673; /* Cor inativa */
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.dot.active {
    background-color: #5D4B41; /* Cor ativa */
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 1.5rem;
    transition: background-color 0.3s ease;
}
.slider-arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
.slider-arrow.left { left: 10px; }
.slider-arrow.right { right: 10px; }

/* Estilos para o cabeçalho com rolagem */
header {
    transition: transform 0.3s ease-in-out;
}
.header-hidden {
    transform: translateY(-100%);
}