header {
    padding: 20px 0;
}

.navbar a {
    color: white;
    font-weight: 500;
    margin-left: 1rem;
    margin-right: 1rem;
    text-decoration: none;
    font-size: 0.95rem;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    padding: 60px 0;
}

    .hero .text-content {
        max-width: 600px;
    }

    .hero h1 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #ffffff;
    }

        .hero h1 span {
            color: #FFC107;
        }

    .hero p {
        font-size: 1.2rem;
        margin-top: 20px;
        color: #cccccc;
    }

        .hero p strong {
            color: #ffffff;
        }

.btn-destaque {
    background-color: #FFC107;
    color: #000;
    font-weight: 600;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .btn-destaque:hover {
        background-color: #e0a800;
        transform: scale(1.05);
    }

.img-hero {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .hero {
        text-align: center;
        justify-content: center;
    }

        .hero .text-content {
            margin-bottom: 40px;
        }
}

.blinking {
    animation: blink 1s steps(2, start) infinite;
    color: #FFC107;
}

@keyframes blink {
    to {
        visibility: hidden;
    }
}

.text-muted-custom {
    color: #bbbbbb;
}

.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card-hover:hover {
        transform: translateY(-6px);
        box-shadow: 0 8px 20px rgba(255, 193, 7, 0.2);
    }

.painel-marquee {
    width: 100%;
    overflow: hidden;
    background-color: #111;
    border-bottom: 1px solid #222;
    top: 0;
    left: 0;
    z-index: 9999;
    padding: 6px 0;
}

.marquee-track {
    display: inline-flex;
    white-space: nowrap;
    animation: scroll-left 120s linear infinite;
    gap: 20px;
    padding-left: 100%;
}

.painel-marquee:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.card-cotacao {
    background-color: #222;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 0.85rem;
    min-width: 80px;
    text-align: center;
    transition: background-color 0.2s;
}

.positivo {
    color: #00ff6a;
}

.negativo {
    color: #ff5252;
}

.flash {
    animation: flash-bg 0.5s;
}

.icon-person {
    font-size: 2.5rem;
    color: #FFC107
}

@keyframes flash-bg {
    0% {
        background-color: #444;
    }

    100% {
        background-color: #222;
    }
}

.title-h3 {
    font-size: 1.25rem;
}