/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
    position: relative;
    min-height: 45vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 40px;
}

.hero-container {
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
    padding-top: 16px;
}

/* --- LABEL TOPO --- */
.hero-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeIn 0.7s 0.4s forwards;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 7px rgba(74, 222, 128, 0.6);
    animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(74, 222, 128, 0.8); }
    50%       { opacity: .4; box-shadow: 0 0 2px rgba(74, 222, 128, 0.3); }
}

.hero-label-text {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-body);
}

.hero-label-sep {
    width: 28px;
    height: 1px;
    background: var(--border-color);
}

.hero-label-sub {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

/* --- HEADLINES --- */
.hl-line {
    overflow: hidden;
    display: block;
    line-height: 0.9;
}

.hl-inner {
    display: block;
    font-family: 'Gilroy', sans-serif;
    font-size: clamp(2.8em, 8vw, 8.5rem);
    font-weight: 800;
    line-height: 1.2; 
    letter-spacing: -0.02em;
    color: var(--text-heading);
    opacity: 0;
    transform: translateY(110%);
    padding-bottom: 8px; 
}

/* Animações específicas por linha */
.hl-inner.l1 { 
    animation: slideUp 1.1s cubic-bezier(0.16,1,0.3,1) 0.5s forwards; 
}

/* AJUSTE 1: UX/UI Designer com font-weight 400 */
.hl-inner.l2 { 
    animation: slideUp 1.1s cubic-bezier(0.16,1,0.3,1) 0.64s forwards; 
    color: var(--accent-gold); 
    font-weight: 400; /* Peso mais leve conforme solicitado */
}

.hl-inner.l3 { 
    animation: slideUp 1.1s cubic-bezier(0.16,1,0.3,1) 0.78s forwards; 
    color: var(--text-muted); 
    font-weight: 700; 
}

/* --- LINHA DE TEXTO E BOTÕES --- */
.hero-body-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: flex-end;
    margin-top: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border-color);
    opacity: 0;
    animation: fadeUp 0.9s 1.1s forwards;
}

/* AJUSTE 3: Melhor estilização do texto descritivo */
.hero-body-text {
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-body);
    margin: 0;
    max-width: 540px; /* Controla largura para melhor legibilidade */
    opacity: 0.92; /* Sutil redução de opacidade para hierarquia visual */
}

.hero-body-text strong {
    color: var(--text-heading);
    font-weight: 600; /* Peso intermediário para destaque suave */
}

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

.btn-hero-p, .btn-hero-s {
    font-family: 'Gilroy', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-hero-p {
    color: var(--bg-body);
    background: var(--text-heading);
    border: 1px solid var(--text-heading);
}

.btn-hero-p:hover { 
    background: var(--accent-gold); 
    border-color: var(--accent-gold);
    color: #111111;
    transform: translateY(-2px);
}

.btn-hero-s {
    color: var(--text-heading);
    border: 1px solid var(--border-color);
    background: transparent;
}

.btn-hero-s:hover { 
    border-color: var(--text-heading); 
    transform: translateY(-2px);
}

/* --- META STRIP (RODAPÉ) --- */
/* AJUSTE 2: Melhor organização do grid */
.hero-meta-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    opacity: 0;
    animation: fadeUp 0.9s 1.3s forwards;
}

.meta-block {
    padding: 40px 48px; /* Padding mais generoso e balanceado */
    display: flex;
    flex-direction: column;
    gap: 10px; /* Gap levemente aumentado */
    border-right: 1px solid var(--border-color);
    transition: background-color 0.3s ease; /* Transição suave para interação */
}

.meta-block:first-child { 
    padding-left: 0; 
}

.meta-block:last-child  { 
    border-right: none; 
    padding-right: 0; 
}

/* Sutil hover state para interatividade */
.meta-block:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.meta-block-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px; /* Espaçamento adicional do valor */
}

.meta-block-value {
    font-size: 1.05rem; /* Tamanho levemente reduzido para melhor proporção */
    font-weight: 500; /* Peso médio para melhor legibilidade */
    color: var(--text-heading);
    line-height: 1.5;
}

.meta-block-value .n {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 6px; /* Espaçamento refinado */
    letter-spacing: -0.02em; /* Ajuste tipográfico */
}

/* --- ANIMAÇÕES KEYFRAMES --- */
@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeUp  { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(110%); } to { opacity: 1; transform: none; } }

@media (max-width: 768px) {
    .hl-inner {
        font-size: clamp(2.2rem, 11vw, 3.5rem);
        line-height: 1.1;
        letter-spacing: -0.02em;
    }

    .hl-line {
        line-height: 1;
    }

    .hero {
        min-height: 60svh;
        padding-bottom: 32px;
    }

    .hero-container {
        margin-top: 12px;
    }

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

    .hero-label-sep,
    .hero-label-sub {
        display: none;
    }

    .hero-body-row {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 24px;
        padding-bottom: 24px;
    }

    .hero-body-text {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-body-actions {
        justify-content: flex-start;
        flex-direction: column;
        width: 100%;
    }

    .btn-hero-p, .btn-hero-s {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
    }

    .hero-meta-strip {
        grid-template-columns: 1fr;
    }

    .meta-block {
        border-right: none;
        padding: 20px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .meta-block:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .meta-block-value .n {
        font-size: 2rem;
    }
}