
        :root {
            --primary-blue: #000066; /* Azul Escuro Real da logo */
            --accent-blue: #00aeef;  /* Azul Celeste/Ciano da logo */
            --light-bg: #f8fafd;     /* Fundo claro suave para o padrão Soft Premium */
            --text-dark: #1e293b;
            --dark-slate: #0f172a;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            color: var(--text-dark);
            background-color: #ffffff;
        }

        /* ==========================================================================
           NAVBAR
           ========================================================================== */
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 0, 102, 0.05);
        }

        .navbar-nav .nav-link {
            color: var(--primary-blue);
            font-weight: 500;
            padding: 0.5rem 1.2rem !important;
            transition: color 0.2s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--accent-blue);
        }

        .btn-primary-custom {
            background-color: var(--primary-blue);
            border-color: var(--primary-blue);
            color: #ffffff;
            font-weight: 600;
            border-radius: 8px;
            padding: 0.6rem 1.5rem;
            transition: all 0.2s ease;
        }

        .btn-primary-custom:hover {
            background-color: #000044;
            border-color: #000044;
            color: #ffffff;
        }

        /* ==========================================================================
           HERO PREMIUM (COM SHAPE MORPHING E GLASSMORPHISM)
           ========================================================================== */
        .hero-premium {
            position: relative;
            width: 100%;
            min-height: 100vh;
            background-color: #ffffff;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding-top: 80px;
        }

        .hero-bg-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .layer-1 {
            background: radial-gradient(circle at 85% 20%, rgba(0, 174, 239, 0.12) 0%, rgba(255, 255, 255, 0) 50%);
            z-index: 1;
        }

        .layer-2 {
            background: radial-gradient(circle at 15% 80%, rgba(0, 0, 102, 0.04) 0%, rgba(255, 255, 255, 0) 40%);
            z-index: 1;
        }

        .layer-3::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            border: 2px solid rgba(0, 174, 239, 0.06);
            border-radius: 43% 57% 41% 59% / 57% 45% 55% 43%;
            top: -10%;
            right: -5%;
            animation: rotateFluid 25s infinite linear;
            z-index: 1;
        }

        @keyframes rotateFluid {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .badge-glow {
            background: rgba(0, 0, 102, 0.05);
            color: var(--primary-blue);
            padding: 0.6rem 1.2rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .pulse-dot {
            width: 8px;
            height: 8px;
            background-color: #198754;
            border-radius: 50%;
            display: inline-block;
            box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.7);
            animation: pulseEffect 2s infinite;
        }

        @keyframes pulseEffect {
            0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.7); }
            70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(25, 135, 84, 0); }
            100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(25, 135, 84, 0); }
        }

        .hero-main-title {
            color: var(--dark-slate);
            font-weight: 800;
            font-size: 3.5rem;
            line-height: 1.15;
            letter-spacing: -1px;
        }

        .text-gradient {
            background: linear-gradient(135deg, var(--primary-blue) 0%, #0000ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .text-gradient-alt {
            background: linear-gradient(135deg, var(--accent-blue) 0%, #0080b0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-description {
            font-size: 1.2rem;
            color: #475569;
            line-height: 1.62;
            max-width: 540px;
        }

        .btn-main-premium {
            background: linear-gradient(135deg, var(--accent-blue) 0%, #009cd6 100%);
            color: #ffffff;
            font-weight: 700;
            padding: 1.1rem 2.4rem;
            border-radius: 14px;
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            box-shadow: 0 10px 25px rgba(0, 174, 239, 0.35);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .btn-main-premium:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 30px rgba(0, 174, 239, 0.45);
            color: #ffffff;
        }

        .btn-main-premium svg {
            transition: transform 0.2s ease;
        }

        .btn-main-premium:hover svg {
            transform: translateX(4px);
        }

        .btn-secondary-premium {
            background: transparent;
            color: var(--primary-blue);
            font-weight: 600;
            padding: 1.1rem 2rem;
            border-radius: 14px;
            border: 2px solid rgba(0, 0, 96, 0.1);
            display: inline-flex;
            align-items: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn-secondary-premium:hover {
            background: rgba(0, 0, 102, 0.02);
            border-color: var(--primary-blue);
            color: var(--primary-blue);
        }

        .hero-interactive-canvas {
            position: relative;
            padding: 2rem;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2;
        }

        .main-image-wrapper {
            position: relative;
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0, 0, 102, 0.1);
            animation: morphShape 12s infinite ease-in-out;
            width: 100%;
            max-width: 480px;
        }

        @keyframes morphShape {
            0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
            50% { border-radius: 50% 50% 30% 70% / 50% 60% 40% 50%; }
            100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
        }

        .main-hero-img {
            transform: scale(1.05);
            transition: transform 0.5s ease;
            object-fit: cover;
            height: 480px;
            width: 100%;
        }

        .glass-morphism {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.6);
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
        }

        .floating-card {
            position: absolute;
            padding: 1rem 1.25rem;
            display: flex;
            align-items: center;
            gap: 12px;
            z-index: 10;
            animation: floatAnimation 6s infinite ease-in-out;
        }

        .card-top-left {
            top: 10%;
            left: -5%;
            animation-delay: 0s;
        }

        .card-bottom-right {
            bottom: 10%;
            right: -5%;
            animation-delay: 3s;
        }

        @keyframes floatAnimation {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-12px); }
            100% { transform: translateY(0px); }
        }

        .icon-shape {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .bg-success-soft { background-color: rgba(25, 135, 84, 0.1); }
        .bg-info-soft { background-color: rgba(0, 174, 239, 0.1); }

        .card-metric {
            display: block;
            font-weight: 700;
            color: var(--dark-slate);
            font-size: 0.95rem;
            line-height: 1.2;
        }

        .card-subtext {
            font-size: 0.75rem;
            color: #64748b;
            font-weight: 500;
        }

        /* ==========================================================================
           VANTAGENS EXCLUSIVAS (CARDS)
           ========================================================================== */
        .badge-cyan-clean {
            background: rgba(0, 174, 239, 0.1);
            color: var(--accent-blue);
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 30px;
        }

        /* ==========================================================================
           DIFERENCIAIS PREMIUM (TABS)
           ========================================================================== */
        .diferenciais-premium {
            padding: 6rem 0;
            background-color: #ffffff;
        }

        .badge-glow-cyan {
            background: rgba(0, 174, 239, 0.08);
            color: var(--accent-blue);
            padding: 0.6rem 1.2rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .section-title-dark {
            color: #0f172a;
            font-weight: 700;
        }

        .info-card-glass {
            background: rgba(0, 0, 102, 0.02);
            border: 1px solid rgba(0, 0, 102, 0.05);
            border-radius: 16px;
        }

        .pulse-icon-blue {
            padding: 8px;
            background: rgba(0, 174, 239, 0.1);
            border-radius: 10px;
            color: var(--accent-blue);
        }

        .tabs-premium-wrapper {
            background: #ffffff;
            border-radius: 24px;
            padding: 1.5rem;
            box-shadow: 0 20px 50px rgba(0, 0, 102, 0.04);
            border: 1px solid rgba(0, 0, 102, 0.03);
        }

        .custom-premium-tabs {
            background: var(--light-bg);
            border-radius: 14px;
            border: none;
        }

        .custom-premium-tabs .nav-link {
            color: #64748b;
            font-weight: 600;
            border-radius: 10px;
            border: none;
            background: transparent;
            transition: all 0.3s ease;
        }

        .custom-premium-tabs .nav-link.active {
            background: #ffffff;
            color: var(--primary-blue);
            box-shadow: 0 4px 15px rgba(0, 0, 102, 0.06);
        }

        .pane-container-premium {
            padding: 1.5rem 0.5rem 0.5rem 0.5rem;
        }

        .pane-title {
            color: #0f172a;
            font-weight: 700;
        }

        .metric-card-box {
            background: var(--light-bg);
            border: 1px solid rgba(0, 0, 102, 0.02);
            padding: 1.25rem;
            border-radius: 16px;
            transition: transform 0.2s ease;
        }

        .metric-card-box:hover {
            transform: scale(1.02);
        }

        .metric-card-box .label {
            display: block;
            font-size: 0.8rem;
            font-weight: 600;
            text-uppercase: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 4px;
        }

        .metric-card-box .value {
            display: block;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary-blue);
        }

        .metric-card-box .value small {
            font-size: 0.85rem;
            color: #64748b;
            font-weight: 500;
        }

        .sorteio-banner-box {
            background: linear-gradient(135deg, rgba(0, 174, 239, 0.04) 0%, rgba(0, 0, 102, 0.02) 100%);
            border: 2px dashed rgba(0, 174, 239, 0.2);
            border-radius: 20px;
        }

        .badge-premium-gold {
            background: rgba(218, 165, 32, 0.1);
            color: #b8860b;
            padding: 0.4rem 1rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 700;
            display: inline-block;
        }

        /* ==========================================================================
           FORMULÁRIO PREMIUM
           ========================================================================== */
        .form-card-premium {
            background: #ffffff;
            border-radius: 32px;
            box-shadow: 0 40px 80px rgba(0, 0, 102, 0.06);
            border: 1px solid rgba(0, 0, 102, 0.03);
        }

        .bg-gradient-blur {
            position: absolute;
            top: -20%;
            right: -20%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(0, 174, 239, 0.06) 0%, rgba(255,255,255,0) 70%);
            z-index: 1;
            pointer-events: none;
        }

        .toggle-premium-container {
            display: flex;
            background: var(--light-bg);
            padding: 6px;
            border-radius: 16px;
            max-width: 400px;
            margin: 0 auto;
        }

        .btn-toggle-label {
            flex: 1;
            text-align: center;
            padding: 1rem;
            font-weight: 600;
            font-size: 0.95rem;
            color: #64748b;
            cursor: pointer;
            border-radius: 12px;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .btn-check:checked + .btn-toggle-label {
            background: var(--primary-blue);
            color: #ffffff;
            box-shadow: 0 10px 20px rgba(0, 0, 102, 0.15);
        }

        .input-group-premium {
            position: relative;
            width: 100%;
        }

        .form-input-field {
            width: 100%;
            padding: 1.2rem 1.25rem 0.8rem 1.25rem;
            background-color: var(--light-bg);
            border: 1px solid rgba(0, 0, 102, 0.04);
            border-radius: 14px;
            color: #0f172a;
            font-size: 1rem;
            font-weight: 500;
            outline: none;
            transition: all 0.3s ease;
        }

        .select-custom {
            appearance: none;
            cursor: pointer;
            padding-top: 1.4rem;
        }

        .form-input-field:focus {
            background-color: #ffffff;
            border-color: var(--accent-blue);
            box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.1);
        }

        .form-input-label {
            position: absolute;
            left: 1.25rem;
            top: 50%;
            transform: translateY(-50%);
            color: #64748b;
            font-size: 1rem;
            pointer-events: none;
            transition: all 0.2s ease;
        }

        .form-input-field:focus ~ .form-input-label,
        .form-input-field:not(:placeholder-shown) ~ .form-input-label {
            top: 25%;
            font-size: 0.75rem;
            color: var(--accent-blue);
            font-weight: 600;
        }

        .select-label-fix {
            top: 25%;
            font-size: 0.75rem;
            color: #64748b;
        }

        .checkbox-container-premium {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            cursor: pointer;
            position: relative;
            user-select: none;
        }

        .checkbox-container-premium input {
            position: absolute;
            opacity: 0;
            cursor: pointer;
            height: 0;
            width: 0;
        }

        .checkmark-box {
            width: 22px;
            height: 22px;
            background-color: var(--light-bg);
            border: 1px solid rgba(0, 0, 102, 0.1);
            border-radius: 6px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .checkbox-container-premium:hover input ~ .checkmark-box {
            border-color: var(--accent-blue);
        }

        .checkbox-container-premium input:checked ~ .checkmark-box {
            background-color: var(--accent-blue);
            border-color: var(--accent-blue);
        }

        .checkmark-box::after {
            content: "";
            display: none;
            width: 5px;
            height: 10px;
            border: solid white;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
            margin-bottom: 2px;
        }

        .checkbox-container-premium input:checked ~ .checkmark-box::after {
            display: block;
        }

        .checkbox-text {
            font-size: 0.88rem;
            line-height: 1.5;
        }

        /* Responsive */
        @media (max-width: 991.98px) {
            .hero-main-title { font-size: 2.5rem; }
            .hero-description { max-width: 100%; }
            .hero-interactive-canvas { margin-top: 3rem; }
            .card-top-left { left: 0; }
            .card-bottom-right { right: 0; }
        }

        /* ==========================================================================
   HERO AWARD-WINNING SECTION (STATIC 8K BACKGROUND)
   ========================================================================== */

:root {
    --primary-dark: #000044;
    --accent-cyan: #00AEEF;
}

.hero-award-winning {
    position: relative;
    width: 100%;
    min-height: 100vh;
    /* O gradiente é declarado antes da imagem para ficar posicionado acima dela */
    background-image: linear-gradient(90deg, 
        rgba(0, 0, 68, 0.95) 0%, 
        rgba(0, 0, 68, 0.7) 40%, 
        rgba(0, 0, 68, 0) 100%
    ), url('../img/hero-background-8k.webp');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    background-color: var(--primary-dark);
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Atenção: Não há .overlay-mask aqui. 
   A legibilidade depende exclusivamente do lado esquerdo da imagem ser sólido e escuro.
*/

.z-index-2 {
    z-index: 2;
}

/* Tipografia e Distintivos (Adaptados para Fundo Escuro) */
.badge-premium-dark {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--accent-cyan);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.pulse-dot-cyan {
    width: 8px;
    height: 8px;
    background-color: var(--accent-cyan);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(0, 174, 239, 0.7);
    animation: pulseCyan 2s infinite;
}

@keyframes pulseCyan {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 174, 239, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(0, 174, 239, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 174, 239, 0); }
}

.text-gradient-cyan {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

/* Botão de Conversão UX (Figma Quality) */
.btn-cyan-figma {
    background: var(--accent-cyan);
    color: #ffffff;
    font-weight: 700;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 174, 239, 0.25);
    text-decoration: none;
}

.btn-cyan-figma:hover {
    background: #009cd6;
    color: #ffffff;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 174, 239, 0.4);
}

.btn-cyan-figma svg {
    transition: transform 0.3s ease;
}

.btn-cyan-figma:hover svg {
    transform: translateX(6px);
}

/* Microinterações de Entrada (Fade In Up) */
.hero-animate-1, 
.hero-animate-2, 
.hero-animate-3 {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-animate-1 { animation-delay: 0.1s; }
.hero-animate-2 { animation-delay: 0.3s; }
.hero-animate-3 { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade Móbile */
@media (max-width: 991.98px) {
    .hero-award-winning {
        /* No mobile, a imagem pode precisar de um ajuste de posição para não cortar elementos vitais */
        background-position: center right;
        text-align: center;
    }
    
    .hero-content-wrapper {
        text-align: center !important;
        background: rgba(0, 0, 68, 0.6);
        padding: 2rem;
        border-radius: 24px;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .btn-cyan-figma { 
        width: 100%; 
        justify-content: center; 
    }
}

/* ==========================================================================
   ODONTO PREMIUM INTERACTIVE SECTION
   ========================================================================== */

.odonto-premium-interactive {
    background-color: var(--primary-dark, #000044);
    padding: 6rem 0;
    overflow: hidden;
}

/* Iluminação de Fundo */
.odonto-radial-glow {
    position: absolute;
    width: 60vw;
    height: 60vw;
    top: 50%;
    left: -10%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(0, 174, 239, 0.08) 0%, rgba(0, 0, 68, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

/* Canvas Tridimensional e Imagem */
.odonto-canvas-tridimensional {
    position: relative;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blob-backdrop-fluid {
    position: absolute;
    width: 90%;
    height: 90%;
    background: linear-gradient(135deg, rgba(0, 174, 239, 0.2) 0%, rgba(0, 0, 68, 0) 100%);
    border-radius: 43% 57% 41% 59% / 57% 45% 55% 43%;
    animation: rotateBlob 20s infinite linear;
    z-index: 0;
}

@keyframes rotateBlob {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.05); }
    100% { transform: rotate(360deg) scale(1); }
}

.frame-morphing-wrapper {
    position: relative;
    width: 100%;
    max-width: 460px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    overflow: hidden;
    z-index: 2;
    animation: morphShape 12s infinite ease-in-out;
    border: 2px solid rgba(255, 255, 255, 0.05);
}

.odonto-img-fluid {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.frame-morphing-wrapper:hover .odonto-img-fluid {
    transform: scale(1.1);
}

/* Glassmorphism Badge (Sempre Odonto) */
.operator-badge-glass {
    position: absolute;
    bottom: 5%;
    right: 0%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.2rem 1.8rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    z-index: 10;
    animation: floatAnimation 6s infinite ease-in-out;
}

.operator-title {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.operator-brand {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
}

/* Grid de Especificações Interativas */
.odonto-interactive-spec {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.95rem;
}

.odonto-interactive-spec:hover {
    background: rgba(0, 174, 239, 0.08);
    border-color: rgba(0, 174, 239, 0.3);
    transform: translateX(5px);
    color: #ffffff;
}

.spec-dot-cyan {
    width: 6px;
    height: 6px;
    background-color: var(--accent-cyan, #00AEEF);
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(0, 174, 239, 0.6);
}

/* Utilitários Visuais Compartilhados */
.shadow-premium {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Sistema de Entrada em Cascata */
.odonto-animate-1, .odonto-animate-2, .odonto-animate-3, 
.odonto-animate-4, .odonto-animate-5, .odonto-animate-6 {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.odonto-animate-1 { animation-delay: 0.1s; }
.odonto-animate-2 { animation-delay: 0.2s; }
.odonto-animate-3 { animation-delay: 0.3s; }
.odonto-animate-4 { animation-delay: 0.4s; }
.odonto-animate-5 { animation-delay: 0.5s; }
.odonto-animate-6 { animation-delay: 0.6s; }

/* Responsividade Móbile */
@media (max-width: 991.98px) {
    .odonto-premium-interactive {
        padding: 4rem 0;
    }
    
    .frame-morphing-wrapper {
        max-width: 100%;
    }
    
    .operator-badge-glass {
        bottom: -5%;
        right: 10%;
        left: 10%;
        justify-content: center;
    }
}

