/* Configuração Base */
html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
    font-size: 140%; /* Desktop: Escala 1.4x conforme estabelecido */
}

@media (max-width: 768px) {
    html {
        font-size: 100% !important; /* Mobile: Escala 1.0x */
    }
}

/* Otimizações CSS */
.hero-bg {
    background: linear-gradient(180deg, #fff 0%, #fff7ed 100%);
}

.btn-pulse {
    animation: pulse-orange 2s infinite;
    will-change: transform;
}

@keyframes pulse-orange {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

/* Scrollbar Oculta */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Gradiente no texto */
.text-gradient {
    background: linear-gradient(to right, #e65100, #ff9e00);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animação Scroll Infinito (Provas Sociais) */
.animate-scroll {
    display: flex !important;
    animation: scroll 40s linear infinite !important;
    will-change: transform;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animate-scroll:hover {
    animation-play-state: paused;
}

/* Whatsapp Float */
.whatsapp-float {
    background-color: #25d366;
    color: white;
    padding: 15px;
    border-radius: 50px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 80px;
    right: 0;
    background: white;
    color: #333;
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 20px;
    border-width: 6px;
    border-style: solid;
    border-color: white transparent transparent transparent;
}

.whatsapp-container:hover .whatsapp-tooltip,
.whatsapp-tooltip.show {
    opacity: 1;
    visibility: visible;
}

.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-container .whatsapp-float {
    position: static;
}
