:root {
    --azul-escuro: #0a192f;
    --dourado: #c5a059;
    --branco-gelo: #f8f9fa;
}

body {
    font-family: 'Montserrat', sans-serif;
}

h1, h2, h3, .navbar-brand {
    font-family: 'Playfair Display', serif;
}

.navbar-brand span {
    color: var(--dourado);
}

.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(10, 25, 47, 0.8), rgba(10, 25, 47, 0.8)), 
    url('./images/bg-martelo.jpg') no-repeat center center/cover;
    background-attachment: fixed;

}
@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
    }
}

.btn-gold {
    background-color: var(--dourado);
    color: white;
    border: none;
    padding: 12px 30px;
    transition: 0.3s;
}

.btn-gold:hover {
    background-color: #b08e4a;
    color: white;
}

.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--dourado);
    margin: 15px auto;
}

.accordion-button:not(.collapsed) {
    background-color: var(--branco-gelo);
    color: var(--azul-escuro);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--dourado);
}

.accordion-button::after {
    filter: sepia(100%) saturate(1000%) hue-rotate(5deg); /* Deixa a setinha dourada */
}

.card h3 {
    font-size: 1.5rem;
    color: var(--azul-escuro);
    margin-bottom: 15px;
}

.card:hover {
    transform: translateY(-10px); /* Efeito de levitação ao passar o mouse */
    transition: 0.4s;
}

.text-gold {
    color: var(--dourado);
}

.form-control:focus, .form-select:focus {
    border-color: var(--dourado);
    box-shadow: 0 0 0 0.25rem rgba(197, 160, 89, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--azul-escuro);
}

.btn-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: 0.3s;
    text-decoration: none;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    color: white;
    transform: scale(1.1);
}