.white-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.white-header .logo a {
    color: #B39B6D; /* Cor dourada para combinar com a logo */
}

.white-header .main-nav ul li a {
    color: #333333;
}

.white-header .main-nav ul li a:after {
    background-color: #B39B6D; /* Cor dourada para o efeito hover */
}

.white-header .menu-toggle span {
    background-color: #333333;
}

/* Ajustes para a logo na hero section */
.hero-logo {
    max-width: 400px;
    margin: 0 auto 30px;
}

.hero-logo img {
    width: 100%;
    height: auto;
}

/* Ajustes para os botões na hero section */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.btn-fale-conosco {
    background-color: #B39B6D;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-areas {
    background-color: transparent;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    border: 2px solid #B39B6D;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-fale-conosco:hover {
    background-color: #9a8555;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-areas:hover {
    background-color: rgba(179, 155, 109, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Ajuste no overlay para melhor legibilidade */
.video-container .overlay {
    background-color: rgba(0, 0, 0, 0.6); /* Ajustado para não ficar nem muito claro nem muito escuro */
}

/* Ajustes para o subtítulo */
.hero-subtitle {
    font-family: var(--font-secondary);
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 20px auto 0;
    color: var(--white);
    text-align: center;
}
