/* ============================================
   HERO - Seção principal, selo, chopeira, badges
   ============================================ */

.hero-section {
    background: linear-gradient(135deg, rgba(245,244,227,0.95) 0%, rgba(245,244,227,0.95) 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 20;
}

.hero-content-inner {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.hero-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--primary) 1px, transparent 1px);
    background-size: 15px 15px;
    opacity: 0.1;
    z-index: 0;
}

.hero-gold-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
}

/* Chopeira */
.hero-chopeira {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.hero-chopeira-img {
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2));
    transition: transform 0.5s ease;
}

.hero-chopeira:hover .hero-chopeira-img {
    transform: translateY(-10px);
}

/* Selo flutuante */
.hero-seal {
    position: absolute;
    top: 20px;
    right: -30px;
    width: 100px;
    height: auto;
    z-index: 15;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
    animation: float-seal 6s ease-in-out infinite, glow-seal 3s ease-in-out infinite alternate;
}

@keyframes float-seal {
    0%, 100% { transform: translateY(0)   rotate(-3deg); }
    50%      { transform: translateY(-15px) rotate(3deg); }
}

@keyframes glow-seal {
    0%   { filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2)) brightness(1); }
    100% { filter: drop-shadow(0 8px 15px rgba(208, 179, 100, 0.4)) brightness(1.1); }
}

@media (max-width: 768px) {
    .hero-seal {
        width: 80px;
        top: 10px;
        right: -20px;
    }
    .hero-content {
        text-align: center;
        padding-top: 2rem;
    }
    .hero-image {
        margin-top: 1.5rem;
        padding: 0 1rem;
    }
    .hero-chopeira {
        max-width: 80%;
    }
    .distributor-badge {
        margin: 0 auto 1.5rem;
    }
    .hero-content-inner {
        padding: 0 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-seal {
        animation: none;
        filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
    }
}

/* Distributor badge */
.distributor-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(208, 179, 100, 0.1) 0%, rgba(208, 179, 100, 0.2) 100%);
    border: 1px solid rgba(208, 179, 100, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.distributor-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(transparent, rgba(208, 179, 100, 0.1), transparent);
    transform: rotate(30deg);
    animation: shine 3s infinite;
}

.distributor-badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--primary-dark);
    margin-right: 0.5rem;
}

.distributor-brand {
    font-size: 0.875rem;
    font-weight: 800;
    color: white;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .hero-content {
        padding-top: 100px;
        padding-bottom: 60px;
    }
}
