body {
    background-color: #F8F6F0;
    color: #1C2026;
    overflow-x: hidden;
}

.chart-container {
    position: relative;
    width: 100%;
    height: 240px;
}

.card-shadow {
    box-shadow: 0 10px 30px -5px rgba(28, 32, 38, 0.05);
}

/* Continuous Ambient Animations */
@keyframes continuousFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(0.8deg);
    }
}

@keyframes continuousPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.08);
    }
}

@keyframes subtleWave {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-15px);
    }

    100% {
        transform: translateX(0);
    }
}

.animate-float {
    animation: continuousFloat 5s ease-in-out infinite;
}

.animate-float-delayed {
    animation: continuousFloat 6.5s ease-in-out infinite 1.5s;
}

.animate-pulse-glow {
    animation: continuousPulse 4s ease-in-out infinite;
}

.animate-subtle-wave {
    animation: subtleWave 8s ease-in-out infinite;
}

/* Entrance Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* UI Interactions */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px -10px rgba(216, 81, 53, 0.12);
}

.filter-btn.active {
    background-color: #1C2026;
    color: #FFFFFF;
    border-color: #1C2026;
}

.blog-filter-btn.active {
    background-color: #1C2026;
    color: #FFFFFF;
    border-color: #1C2026;
}

/* SVG Curved Dividers */
.curve-divider {
    line-height: 0;
    width: 100%;
    overflow: hidden;
}

.curve-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 48px;
}

#seguros,
#calculadora,
#deu-ruim,
#mitos,
#blog {
    scroll-margin-top: 5.5rem;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Blog article pages */
.article-content h4 {
    margin-top: 1.5rem;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1rem;
}
