/* ========================================================================
   ESTILOS PERSONALIZADOS AGENHURB (MANTIDO SEPARADO DO ESTÁTICO)
   ======================================================================== */

body {
    font-family: 'Work Sans', sans-serif;
    background-color: #FAF7F2;
    overflow-x: hidden;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #FAF7F2;
}
::-webkit-scrollbar-thumb {
    background: #4A0F1C;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #2D060F;
}

/* Custom animation for Chat and transitions */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fadeIn {
    animation: fadeIn 0.3s ease-out forwards;
}

/* Form focus border colors custom classes */
.focus-ring-accent:focus {
    outline: none;
    border-color: #C9A227;
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}

/* Float WhatsApp badge styles */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    background-color: #20BA56;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}
.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25D366;
    border-radius: 50%;
    animation: pulse-ring 2.5s infinite;
    z-index: -1;
    opacity: 0.65;
}
@keyframes pulse-ring {
    0% { transform: scale(0.95); opacity: 0.85; }
    100% { transform: scale(1.5); opacity: 0; }
}