/* Estilos Personalizados - Ahold Empreendimentos */

body {
    overflow-x: hidden;
}

.glass-nav {
    background-color: rgba(29, 53, 87, 0.95);
    backdrop-filter: blur(12px);
    padding-top: 1rem;
    padding-bottom: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(169, 125, 80, 0.2);
}

.transparent-nav {
    background-color: transparent;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.whatsapp-float svg {
    color: white;
    width: 28px;
    height: 28px;
}

.page-view {
    animation: fadeIn 0.5s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.spa-view {
    display: none;
}

.spa-view.active {
    display: block;
}

.faq-content {
    transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

.faq-content.open {
    max-height: 500px;
    opacity: 1;
}

.bg-blueprint {
    background-color: #1d3557;
    background-image: radial-gradient(#264673 1px, transparent 1px);
    background-size: 30px 30px;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1d3557;
}

::-webkit-scrollbar-thumb {
    background: #a97d50;
    border-radius: 4px;
}
