/* HERO SECTION */
.hero {
    position: relative;
    background: url('../img//banner.jpg') no-repeat center center/cover; /* INSIRA A IMAGEM DE FUNDO AQUI */
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: var(--text-light);
}

.hero .overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.badge {
    display: inline-block;
    background-color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.hero-bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-bullets span {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-bullets i {
    color: var(--whatsapp-green);
}

/* ANIMAÇÃO PULSAR */
.pulse {
    animation: pulse 2s infinite;
}