/* ==========================================================================
   Wisedesk - Identity Premium Style (Inspirado em Design Dynamic-SaaS)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

html {
    scroll-behavior: smooth;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: #F7F9FC;
    color: #0F1E36;
}

/* --- Gradientes e Fundos Premium --- */
.hero-bg {
    background: 
        radial-gradient(circle at 85% 15%, rgba(11, 99, 229, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 15% 85%, rgba(13, 27, 42, 0.02) 0%, transparent 50%);
    background-color: #F7F9FC;
}

/* Bloco Verde Floresta Escuro / Corporativo de Altíssimo Nível (Inspirado nos exemplos) */
.bg-wisedesk-premium {
    background-color: #173223;
}

/* --- Tipografia --- */
h1, h2, h3 {
    letter-spacing: -0.02em;
}

/* --- Simulador de Chat e Elementos Flutuantes --- */
.floating-mockup {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(13, 27, 42, 0.06); 
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01), 0 20px 40px -4px rgba(13, 27, 42, 0.06);
    animation: float 6s ease-in-out infinite;
}

.floating-element-1 {
    animation: float-reverse 5s ease-in-out infinite;
    box-shadow: 0 12px 24px -4px rgba(13, 27, 42, 0.08);
}

.floating-element-2 {
    animation: float 7s ease-in-out infinite;
    box-shadow: 0 12px 24px -4px rgba(13, 27, 42, 0.08);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

@keyframes float-reverse {
    0% { transform: translateY(0px); }
    50% { transform: translateY(6px); }
    100% { transform: translateY(0px); }
}

/* --- Imagens e Cards Sobrepostos (Inradicados nos Exemplos) --- */
.image-overlap-container {
    position: relative;
}

.image-mask-smooth {
    border-radius: 24px;
    object-fit: cover;
}

/* --- Cards de Funcionalidades Clean --- */
.zendesk-card {
    background: #ffffff;
    border: 1px solid rgba(13, 27, 42, 0.06);
    border-radius: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.01);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.zendesk-card:hover {
    transform: translateY(-4px);
    border-color: rgba(11, 99, 229, 0.25);
    box-shadow: 0 20px 32px -8px rgba(13, 27, 42, 0.08);
}

/* --- Cards de Preço Slim --- */
.price-card {
    background: #ffffff;
    border: 1px solid rgba(13, 27, 42, 0.08);
    border-radius: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.01);
    transition: all 0.3s ease;
}

.price-card.featured {
    border: 1px solid #0B63E5;
    box-shadow: 0 16px 24px -6px rgba(11, 99, 229, 0.1);
}

.price-card:hover {
    transform: scale(1.01);
    box-shadow: 0 16px 24px -6px rgba(13, 27, 42, 0.06);
}
