/* ==========================================================================
   HERO.CSS — Centralizado com Ícones Line-Art (Sem Fundo)
   ========================================================================== */

.hero-section {
    position: relative;
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0 60px 0;
    box-sizing: border-box;
    background-color: #ffffff;
}

.hero-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background-image: radial-gradient(var(--border, #e5e5e5) 1.5px, transparent 1.5px);
    background-size: 32px 32px;
    opacity: 0.35;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-main-content {
    max-width: 800px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge { margin-bottom: 24px; }

.hero-main-content h1 {
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 24px;
}

.hero-main-content .g-hero-subtitle {
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Área dos Ícones Line-Art */
.hero-icons-area {
    width: 100%;
    max-width: 800px;
    margin: 20px auto 80px auto;
    display: flex;
    justify-content: center;
}

.hero-svg-icons {
    width: 100%;
    height: auto;
    display: block;
}

/* Rodapé do Hero (Contador) */
.hero-divider { width: 100%; height: 1px; background: #f0f0f0; margin-bottom: 40px; }
.hero-utility-row { display: flex; justify-content: space-between; gap: 40px; width: 100%; text-align: left; flex-wrap: wrap; }
.hero-utility-col-left, .hero-utility-col-right { flex: 1; min-width: 300px; }
.hero-utility-title { font-size: 26px; font-weight: 500; display: flex; align-items: center; gap: 12px; }
#btn-trigger-contador { background: none; border: none; color: #e27838; border-bottom: 1px dashed #e27838; cursor: pointer; font-family: inherit; font-weight: 500; }

/* ==========================================================================
   MOBILE (Regra de Ouro)
   ========================================================================== */
@media (max-width: 900px) {
    .hero-section { padding: 80px 0 40px 0; }
    .hero-main-content { margin-bottom: 30px; }
    
    .hero-icons-area {
        margin-bottom: 50px;
        padding: 0 10px;
    }

    .hero-utility-row {
        flex-direction: column;
        text-align: center;
    }

    .hero-utility-title {
        justify-content: center;
        font-size: 20px;
    }
}