/* ======================================================= */
/* CONFIGURAÇÃO GERAL E FONTES                             */
/* ======================================================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    background-image: linear-gradient(rgba(26, 77, 59, 0.85), rgba(26, 77, 59, 0.85)), url('../img/fundo-site.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* ======================================================= */
/* WHATSAPP FLOAT ICON                                     */
/* ======================================================= */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    left: 20px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s ease-in-out;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float i {
    font-size: 36px;
    color: #fff;
}

.sub-accordion {
    padding: 15px 0;
}

.sub-accordion-button {
    display: block; /* Faz o link se comportar como um bloco */
    background-color: #4a4a4a;
    color: #e0e0e0;
    cursor: pointer;
    padding: 15px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1rem;
    text-decoration: none; /* Remove o sublinhado do link */
    transition: background-color 0.3s ease;
    margin-bottom: 2px;
    border-radius: 5px;
}

.sub-accordion-button:hover, .sub-accordion-button.active {
    background-color: #5a5a5a;
}
