/* ================================
   BENEFÍCIOSUP - HUMANIZAÇÃO
   Estilos adicionais para imagens e elementos visuais
   ================================ */

/* ================================
   CLASSES DE DESTAQUE COLORIDO
   ================================ */

.text-highlight-green {
    color: #97C93C; /* Refeição */
    font-weight: 600;
}

.text-highlight-orange {
    color: #F27051; /* Festive Orange / Destaque */
    font-weight: 600;
}

.text-highlight-blue {
    color: #273768; /* Horizon / Fundo Secundário */
    font-weight: 600;
}

.text-highlight-pink {
    color: #B12C71; /* Premiação */
    font-weight: 600;
}

/* ================================
   PLACEHOLDERS DE IMAGEM
   ================================ */

.image-placeholder,
.image-placeholder-cta {
    background: linear-gradient(135deg, rgba(0, 61, 122, 0.05) 0%, rgba(30, 104, 179, 0.05) 100%);
    border: 3px dashed #1E68B3;
    border-radius: 16px;
    padding: 80px 40px;
    text-align: center;
    color: #003D7A;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.image-placeholder i,
.image-placeholder-cta i {
    font-size: 72px;
    color: #FF8533;
    margin-bottom: 24px;
    display: block;
}

.image-placeholder p,
.image-placeholder-cta p {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #003D7A;
}

.image-placeholder small,
.image-placeholder-cta small {
    font-size: 15px;
    color: #666666;
    display: block;
    font-style: italic;
    max-width: 400px;
    line-height: 1.5;
}

/* ================================
   HERO - LAYOUT 50/50
   ================================ */

.hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,133,51,0.1) 100%);
    z-index: 0;
    pointer-events: none;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-pillars {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    font-size: 17px;
    font-weight: 600;
}

.pillar {
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pillar-pink {
    color: #E42673;
}

.pillar-separator {
    color: #FF8533;
    font-size: 24px;
    font-weight: 700;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.image-frame {
    position: relative;
    border: 5px solid #F27051;
    border-radius: 40px; /* Bordas bem arredondadas, conforme brandbook */
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(242, 112, 81, 0.4);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transform: rotate(2deg);
    transition: all 0.4s ease;
    max-height: 420px;
    max-width: 550px;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-frame:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 30px 80px rgba(255, 133, 51, 0.5);
}

.image-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 61, 122, 0.6) 0%, rgba(0, 40, 85, 0.5) 100%);
    pointer-events: none;
    z-index: 1;
}

.stats-badge {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 24px;
    background: #FFFFFF;
    padding: 28px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0 20px;
    border-right: 3px solid #F8F9FA;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #FF8533;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

/* ================================
   EMPRESA - SEÇÃO COM IMAGEM
   ================================ */

.empresa-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.empresa-image {
    position: relative;
}

.image-frame-green {
    position: relative;
    border: 5px solid #97C93C;
    border-radius: 40px; /* Bordas bem arredondadas, conforme brandbook */
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(151, 201, 60, 0.3);
    background: rgba(151, 201, 60, 0.05);
    backdrop-filter: blur(10px);
    transform: rotate(-2deg);
    transition: all 0.4s ease;
    max-height: 520px;
    max-width: 450px;
}

.image-frame-green img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-frame-green:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 30px 80px rgba(122, 193, 67, 0.4);
}

.image-frame-green::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(122, 193, 67, 0.15) 0%, rgba(105, 171, 55, 0.1) 100%);
    pointer-events: none;
}

.feature-badges {
    position: absolute;
    bottom: -30px;
    right: -30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}

.feature-badge {
    background: #FFFFFF;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.feature-badge:hover {
    transform: translateX(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.feature-badge i {
    font-size: 24px;
    color: #FF8533;

    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.feature-badge span {
    font-size: 14px;
    font-weight: 600;
    color: #003D7A;
    white-space: nowrap;
    line-height: 1.4;
}

.lead-text {
    font-size: 18px;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 32px;
}

.valor-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF8533 0%, #FF6B1F 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.valor-icon i {
    font-size: 28px;
    color: #FFFFFF;
}

/* ================================
   CTA FINAL - IMAGEM DE FUNDO
   ================================ */

.section-cta-final {
    position: relative;
    overflow: hidden;
}

.cta-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 61, 122, 0.92) 0%, rgba(0, 40, 85, 0.95) 100%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-lead {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 48px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.impact-numbers {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 48px;
}

.impact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.impact-number {
    font-size: 56px;
    font-weight: 700;
    color: #FF8533;
    line-height: 1;
}

.impact-label {
    font-size: 15px;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ================================
   RESPONSIVO - HUMANIZAÇÃO
   ================================ */

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        order: -1;
    }
    
    .image-frame {
        max-height: 350px;
        margin: 0 auto;
    }
    
    .image-frame-green {
        max-height: 400px;
        margin: 0 auto;
    }
    
    .stats-badge {
        position: static;
        transform: none;
        margin-top: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .empresa-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-badges {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 20px;
    }
    
    .impact-numbers {
        flex-direction: column;
        gap: 32px;
    }
    
    .image-frame,
    .image-frame-green {
        transform: rotate(0deg);
    }
}

@media (max-width: 480px) {
    .hero-pillars {
        flex-wrap: wrap;
        font-size: 14px;
    }
    
    .stats-badge {
        padding: 20px;
        gap: 16px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .impact-number {
        font-size: 40px;
    }
    
    .feature-badge {
        padding: 12px 16px;
    }
    
    .feature-badge i {
        font-size: 20px;
    }
    
    .feature-badge span {
        font-size: 12px;
    }
}

/* ================================
   DISCLAIMER - SIMULAÇÃO
   ================================ */

.simulacao-aviso {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 24px;
    padding: 14px 18px;
    background: #f0f4f8;
    border-left: 4px solid #6B9EC3;
    border-radius: 0 8px 8px 0;
}

.simulacao-aviso i {
    color: #6B9EC3;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.simulacao-aviso p {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.simulacao-aviso strong {
    color: #003D7A;
}
