﻿/* Home Hero */
.hero {
    border-radius: 16px;
    overflow: hidden;
}

.hero-media {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: clamp(280px, 44vh, 440px);
    object-fit: cover;
    object-position: center 60%;
    filter: brightness(.75);
}

/* overlay única por cima do banner */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.50);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.hero-content {
    text-align: center;
    color: #fff;
    max-width: 880px;
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 900;
    margin: 0 0 10px;
}

    .hero-title span {
        color: var(--green);
    }

.hero-subtitle {
    color: #d8d8d8;
    font-size: clamp(.95rem, 1.6vw, 1.1rem);
    max-width: 660px;
    margin: 0 auto 18px;
}

.hero-cta {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ff3b3b;
    font-weight: 900;
}

    .hero-badge .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #ff3b3b;
        animation: blink 1s infinite;
    }


/* REC e timer mais “detalhe”, menos protagonista */
.hero-badge,
.hero-timer {
    opacity: .75;
    font-size: .95rem;
}

.hero-timer {
    position: absolute;
    top: 14px;
    right: 14px;
    color: rgba(255,255,255,.85);
    font-weight: 900;
    letter-spacing: .6px;
    animation: blink 1.5s infinite;
}

.hero-actions-note {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    color: rgba(255,255,255,.78);
    font-weight: 700;
    font-size: .95rem;
}

    .hero-actions-note span {
        padding: 6px 10px;
        border-radius: 12px;
        background: rgba(0,0,0,.28);
        border: 1px solid var(--line);
    }

@media (min-width: 992px) {
    .hero-title {
        margin-bottom: 6px;
    }

    .hero-subtitle {
        margin-bottom: 14px;
    }
}

.hero-watermark {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    height: 38px; /* antes 46px */
    opacity: .22; /* antes .35 */
    pointer-events: none;
    z-index: 3;
    filter: drop-shadow(0 0 10px rgba(0,0,0,.45));
}
