/* =========================================
   FIX HERO SOCIAL PROOF & WHATSAPP MOBILE
   ========================================= */

/* 1. HERO SOCIAL PROOF - DESIGN NOVO (GLOBAL - MOBILE E DESKTOP) */
.hero-social-proof {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: nowrap !important;

    /* Estilização "Bonita" - Box Glassmorphism */
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(201, 169, 110, 0.4) !important;
    border-radius: 16px !important;
    padding: 15px 20px !important;
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
    gap: 0 !important;
    max-width: 600px !important;
    /* Aumentei um pouco para Desktop */
}

.hero-social-proof .proof-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    flex: 1 !important;
    padding: 0 15px !important;
    border-right: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.hero-social-proof .proof-item:last-child {
    border-right: none !important;
}

.hero-social-proof .proof-divider {
    display: none !important;
}

.hero-social-proof .proof-number {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    color: #FFFFFF !important;
    line-height: 1.1 !important;
    margin-bottom: 4px !important;
}

.hero-social-proof .proof-label {
    font-family: 'Avenir Next Pro', sans-serif !important;
    font-size: 0.8rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.2 !important;
    max-width: 120px !important;
    margin: 0 auto !important;
}


/* --- AJUSTES DE RESPONSIVIDADE (MOBILE PARA NÃO QUEBRAR) --- */
@media (max-width: 768px) {
    .hero-social-proof {
        /* Muda para GRID para garantir 3 colunas iguais sem estourar */
        display: grid !important;
        grid-template-columns: 1fr 1fr 1fr !important;
        padding: 15px 2px !important;
        /* Padding lateral mínimo */
        margin-bottom: 2rem !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .hero-social-proof .proof-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        /* Alinha topo para ficar igual */
        padding: 0 2px !important;
        border-right: 1px solid rgba(255, 255, 255, 0.2) !important;
        min-width: 0 !important;
        height: 100% !important;
    }

    .hero-social-proof .proof-item:last-child {
        border-right: none !important;
    }

    .hero-social-proof .proof-number {
        font-size: 1.3rem !important;
        /* Fonte ajustada */
        margin-bottom: 2px !important;
    }

    .hero-social-proof .proof-label {
        font-size: 0.55rem !important;
        /* Fonte menor para caber palavras longas */
        line-height: 1.1 !important;
        letter-spacing: 0px !important;
        /* Remove espaçamento extra */
        white-space: normal !important;
        text-align: center !important;
        width: 100% !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        /* Hifeniza se necessário */
    }
}


/* 2. WHATSAPP FLUTUANTE - CORREÇÃO DEFINITIVA (TEXTO VISÍVEL EM TUDO) */
.whatsapp-float {
    background-color: #25D366 !important;
    /* Verde WhatsApp OFICIAL */
    width: auto !important;
    /* Largura automática para caber texto */
    height: 50px !important;
    /* Altura fixa confortável */
    padding: 0 20px !important;
    /* Espaçamento Avenir Next Prono */
    border-radius: 50px !important;
    /* Formato de pílula */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;

    /* Posicionamento Fixo e Seguro */
    position: fixed !important;
    bottom: 25px !important;
    right: 25px !important;
    z-index: 99999 !important;
    /* Acima de tudo */

    /* Flex para centrar ícone e texto */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    /* Espaço entre ícone e texto */

    /* Visibilidade FORÇADA */
    opacity: 1 !important;
    visibility: visible !important;
    transform: scale(1) !important;
    poAvenir Next Pro-events: auto !important;
    text-decoration: none !important;
    /* Remove sublinhado de link */

    /* Remove animações que podem bugar no mobile */
    animation: none !important;
    transition: transform 0.3s ease !important;
}

.whatsapp-float:active {
    transform: scale(0.95) !important;
    /* Feedback de clique */
}

.whatsapp-float svg {
    width: 24px !important;
    /* Ícone levemente menor para mobile */
    height: 24px !important;
    fill: #FFFFFF !important;
    /* Ícone Branco */
    display: block !important;
    flex-shrink: 0 !important;
}

.whatsapp-text {
    display: block !important;
    /* TEXTO VISÍVEL AGORA */
    color: #FFFFFF !important;
    font-family: 'Avenir Next Pro', sans-serif !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    /* Fonte ajustada para mobile */
    white-space: nowrap !important;
    /* Não quebra linha */
}

/* Ajuste fino do Whats em telas muito pequenas */
@media (max-width: 360px) {
    .whatsapp-float {
        padding: 0 12px !important;
        height: 45px !important;
        bottom: 15px !important;
        right: 15px !important;
    }

    .whatsapp-text {
        font-size: 0.8rem !important;
    }
}
