/* ================================================
   HERO IMPACT PHRASE - HIGHLIGHT & ARROW
   "É método." em branco com setinha apontando
   ================================================ */

/* ===== CONTAINER DO IMPACTO ===== */
.hero-impact-container {
    position: relative !important;
    display: inline-block !important;
    margin: 2rem auto !important;
    max-width: 90% !important;
    text-align: center !important;
}

/* ===== FRASE DE IMPACTO ===== */
.hero-impact-phrase {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    line-height: 1.6 !important;
    color: var(--primary-color, #FF6B00) !important;
    text-align: center !important;
    margin: 0 !important;
    position: relative !important;
    display: inline-block !important;
}

/* ===== DESTAQUE "É MÉTODO" ===== */
.impact-highlight {
    color: #FFFFFF !important;
    font-weight: 800 !important;
    font-size: 1.1em !important;
    display: inline-block !important;
    position: relative !important;
    padding: 0.25rem 0.75rem !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15) !important;
    animation: pulse-highlight 2s ease-in-out infinite !important;
}

@keyframes pulse-highlight {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 16px rgba(255, 255, 255, 0.25);
        transform: scale(1.03);
    }
}

/* ===== SETINHA ===== */
.impact-arrow {
    position: absolute !important;
    left: -60px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #FFFFFF !important;
    font-size: 2rem !important;
    animation: arrow-point 1.5s ease-in-out infinite !important;
    z-index: 10 !important;
}

.impact-arrow i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) !important;
}

@keyframes arrow-point {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
        opacity: 1;
    }
    50% {
        transform: translateY(-50%) translateX(-8px);
        opacity: 0.8;
    }
}

/* ===== DESKTOP - LAYOUT HORIZONTAL ===== */
@media (min-width: 769px) {
    .hero-impact-container {
        text-align: center !important;
    }
    
    .hero-impact-phrase {
        font-size: 1.8rem !important;
        text-align: center !important;
    }
    
    .impact-arrow {
        left: -80px !important;
        font-size: 2.5rem !important;
    }
}

/* ===== TABLET ===== */
@media (max-width: 768px) {
    .hero-impact-container {
        margin: 1.75rem auto !important;
    }
    
    .hero-impact-phrase {
        font-size: 1.3rem !important;
        text-align: center !important;
    }
    
    .impact-highlight {
        font-size: 1.15em !important;
        padding: 0.3rem 0.9rem !important;
    }
    
    .impact-arrow {
        left: -50px !important;
        font-size: 1.8rem !important;
    }
}

/* ===== MOBILE SMALL ===== */
@media (max-width: 480px) {
    .hero-impact-container {
        margin: 1.5rem auto !important;
    }
    
    .hero-impact-phrase {
        font-size: 1.2rem !important;
    }
    
    .impact-highlight {
        font-size: 1.1em !important;
        padding: 0.25rem 0.75rem !important;
    }
    
    .impact-arrow {
        left: -40px !important;
        font-size: 1.5rem !important;
    }
    
    @keyframes arrow-point {
        0%, 100% {
            transform: translateY(-50%) translateX(0);
            opacity: 1;
        }
        50% {
            transform: translateY(-50%) translateX(-6px);
            opacity: 0.8;
        }
    }
}

/* ===== ACESSIBILIDADE ===== */
@media (prefers-reduced-motion: reduce) {
    .impact-highlight,
    .impact-arrow {
        animation: none !important;
    }
    
    .impact-highlight {
        box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2) !important;
    }
}

/* ===== DARK MODE / HIGH CONTRAST ===== */
@media (prefers-contrast: high) {
    .impact-highlight {
        border: 3px solid #FFFFFF !important;
        background: rgba(0, 0, 0, 0.5) !important;
    }
}

.impact-highlight {
    margin-top: 1rem;
}

/* ===== VARIAÇÃO: SETINHA COM ÍCONE ALTERNATIVO ===== */
/* Se quiser usar outra setinha, descomente:

.impact-arrow::before {
    content: '→' !important;
    font-size: 2em !important;
    font-weight: 900 !important;
}

.impact-arrow i {
    display: none !important;
}

*/
