body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc; /* Light gray background */
    color: #334155; /* Darker text for readability */
}
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease-in-out;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}
.accordion-item {
    border-bottom: 1px solid #e2e8f0; /* Gray-200 */
}
.accordion-header {
    padding: 1rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #1e293b; /* Slate-800 */
    transition: background-color 0.3s ease;
}
.accordion-header:hover {
    background-color: #f1f5f9; /* Gray-100 */
}
.accordion-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    color: #475569; /* Slate-600 */
}
.accordion-content.active {
    max-height: 500px; /* Adjust as needed for content length */
    padding-bottom: 1.5rem;
}
/* Custom style for the logo text color */
.header-logo-text {
    color: #1a56db; /* A blue similar to the logo */
}
/* Estilos específicos para páginas de erro */
body.error-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
body.error-page main {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
