/* RESET & FONTS */
:root {
    --font-poppins: "Poppins", "Poppins Fallback";
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family: var(--font-poppins), sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    background-color: #000000;
    background-image:
        /* Glow roxo lateral esquerdo */
        radial-gradient(ellipse 40% 80% at -5% 40%, rgba(193, 131, 251, 0.15) 0%, rgba(193, 131, 251, 0) 70%),
        /* Glow rosa lateral direito */
        radial-gradient(ellipse 50% 90% at 105% 70%, rgba(241, 115, 184, 0.15) 0%, rgba(241, 115, 184, 0) 70%),
        /* Glow de fundo bem suave ao centro/baixo */
        radial-gradient(ellipse 60% 60% at 50% 90%, rgba(193, 131, 251, 0.08) 0%, transparent 70%);
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

/* UTILITIES */
.desktop-hide {
    display: none;
}

@media (max-width: 768px) {
    .mobile-hide {
        display: none;
    }

    .desktop-hide {
        display: block;
    }
}

/* HEADER SECTION — Floating Glassmorphism */
.site-header {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1320px;
    height: 64px;
    z-index: 1000;

    /* Glass real — background quase totalmente transparente para 
       o backdrop-filter captar a cor real do fundo */
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(40px) saturate(200%) brightness(1.05);
    -webkit-backdrop-filter: blur(40px) saturate(200%) brightness(1.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;

    /* Sombra suave que não escurece demais */
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.15),
        0 1px 0 rgba(255, 255, 255, 0.08) inset;

    /* Animação de entrada */
    animation: headerSlideIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;

    transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, width 0.4s ease, backdrop-filter 0.4s ease, -webkit-backdrop-filter 0.4s ease;
}

/* Reflexo de luz premium no topo */
.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.12) 20%,
            rgba(255, 255, 255, 0.25) 50%,
            rgba(255, 255, 255, 0.12) 80%,
            transparent 100%);
    border-radius: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Estado scrolled — adapta-se à cor do fundo atual */
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(48px) saturate(220%) brightness(1.08);
    -webkit-backdrop-filter: blur(48px) saturate(220%) brightness(1.08);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 1px 0 rgba(255, 255, 255, 0.1) inset;
}

@keyframes headerSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* HEADER CONTENT */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 8px 0 28px;
    position: relative;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    min-width: 120px;
    height: 30px;
}

.logo img {
    height: 30px;
    width: auto;
    transition: opacity 0.4s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.logo-white {
    opacity: 0.92;
}

.logo-dark {
    opacity: 0;
}

/* NAVIGATION — Pill centralizado */
.desktop-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-pill {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border-radius: 100px;
    background: transparent;
    border: none;
    transition: background 0.4s ease, border-color 0.4s ease;
}

.nav-pill a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    padding: 8px 16px;
    border-radius: 100px;
    transition: color 0.4s ease, background 0.4s ease;
    position: relative;
    letter-spacing: 0.01em;
}

.nav-pill a:hover {
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.08);
}

.nav-pill a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 16px;
    height: 2px;
    background: linear-gradient(90deg, #c183fb, #e27bb7);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.nav-pill a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* LOGIN BUTTON — Minimalista */
.header-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    border-radius: 100px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: color 0.4s ease, border-color 0.4s ease, background 0.4s ease, transform 0.3s ease;
    flex-shrink: 0;
    letter-spacing: 0.01em;
}

.header-login-btn::before {
    display: none;
}

.header-login-btn span,
.header-login-btn svg {
    position: relative;
    z-index: 1;
}

.header-login-btn svg {
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.6;
}

.header-login-btn:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.header-login-btn:hover svg {
    transform: translateX(3px);
    opacity: 1;
}

/* Login no modo claro */
.site-header.header-light .header-login-btn {
    color: rgba(0, 0, 0, 0.7);
    border-color: rgba(0, 0, 0, 0.15);
}

.site-header.header-light .header-login-btn:hover {
    color: rgba(0, 0, 0, 0.9);
    border-color: rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.05);
}

/* MOBILE MENU BUTTON */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    transition: all 0.4s ease;
}

/* ═══════════════════════════════════════════════
   HEADER LIGHT MODE — Ativado sobre fundos claros
   ═══════════════════════════════════════════════ */

/* Glass adapta para fundo claro */
.site-header.header-light {
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.06),
        0 1px 0 rgba(255, 255, 255, 0.5) inset;
}

/* Reflexo sutil no modo claro */
.site-header.header-light::before {
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.4) 20%,
            rgba(255, 255, 255, 0.6) 50%,
            rgba(255, 255, 255, 0.4) 80%,
            transparent 100%);
}

/* Logo: esconde branca, mostra preta */
.site-header.header-light .logo-white {
    opacity: 0 !important;
}

.site-header.header-light .logo-dark {
    opacity: 0.92;
}

.site-header.header-light .logo-dark:hover {
    opacity: 1;
}

/* Nav pill — fundo e borda adaptados */
.site-header.header-light .nav-pill {
    background: transparent;
    border-color: transparent;
}

/* Links da nav — texto preto */
.site-header.header-light .nav-pill a {
    color: rgba(0, 0, 0, 0.55);
}

.site-header.header-light .nav-pill a:hover {
    color: rgba(0, 0, 0, 0.9);
    background: rgba(0, 0, 0, 0.06);
}

/* Mobile menu — linhas pretas */
.site-header.header-light .mobile-menu-btn span {
    background-color: rgba(0, 0, 0, 0.7);
}

/* HERO SECTION */
.hero {
    position: relative;
    width: 100%;
    /* Define a proporção exata da imagem para que o letreiro grude embaixo dela perfeitamente */
    aspect-ratio: 3834 / 1845;
    background-color: transparent;
    background-image: url('images/banner hero titto.webp');
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    display: block;
}

.hero-content {
    position: absolute;
    top: 55%;
    /* Fine-tuned to perfectly balance the visible photo bounds */
    transform: translateY(-50%);
    width: 100%;
    padding: 0 8vw 0 12vw;
    /* anchored to the left, slightly further from edge to move items right */
    display: flex;
    flex-direction: column;
}

.text-column {
    max-width: 600px;
}

.headline {
    font-family: var(--font-poppins), sans-serif;
    font-weight: 400;
    font-size: 3.1rem;
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -1.5px;
}

.highlight {
    font-weight: 700;
}

.headline-bold {
    font-weight: 700;
    background: linear-gradient(135deg, #bc85f8 0%, #e27bb7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

@media (max-width: 768px) {
    .headline-bold {
        background: none;
        -webkit-text-fill-color: initial;
        color: inherit;
        display: inline;
    }

    .gradient-wrapper {
        background: linear-gradient(135deg, #bc85f8 0%, #e27bb7 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
        display: inline;
    }
}

.subheadline {
    font-weight: 300;
    /* Thin */
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 40px;
    color: #e0e0e0;
}

/* BUTTON */
.button-container {
    margin-top: 0;
}

.cta-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 72px;
    font-size: 1rem;
    font-weight: 400;
    /* Regular */
    color: #ffffff;
    text-decoration: none;
    border-radius: 20px;
    /* Less rounded */
    background-color: #bc85f8;
    background-image: linear-gradient(135deg, #bc85f8 0%, #e27bb7 100%);
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.4),
        -6px 0 20px rgba(188, 133, 248, 0.3),
        6px 0 20px rgba(226, 123, 183, 0.3),
        inset 0 0 10px rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before,
.cta-button::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background-color: #ffffff;
    z-index: -1;
}

.cta-button::before {
    top: 50%;
    left: 50%;
    border-radius: 45% 55% 40% 60% / 55% 45% 60% 40%;
    transform: translate(-120%, -120%) rotate(-45deg);
    transition: transform 2.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.cta-button::after {
    top: 50%;
    left: 50%;
    border-radius: 60% 40% 55% 45% / 40% 60% 45% 55%;
    transform: translate(20%, 20%) rotate(45deg);
    transition: transform 3s cubic-bezier(0.25, 1, 0.5, 1) 0.1s;
}

.cta-button:hover {
    color: #bc85f8;
    transform: translateY(-2px);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.5),
        -10px 0 30px rgba(188, 133, 248, 0.5),
        10px 0 30px rgba(226, 123, 183, 0.5),
        inset 0 0 15px rgba(255, 255, 255, 0.15);
}

.cta-button:hover::before {
    transform: translate(-50%, -50%) rotate(90deg);
}

.cta-button:hover::after {
    transform: translate(-50%, -50%) rotate(-90deg);
}

/* MARQUEE SECTION (BANCOS) */
.marquee-section {
    width: 100%;
    background-color: #000000;
    padding: 16px 0;
    overflow: hidden;
    position: relative;
    display: flex;
    white-space: nowrap;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Efeito de fade nas bordas para as logos surgirem/sumirem suavemente */
.marquee-section::before,
.marquee-section::after {
    content: '';
    position: absolute;
    top: 0;
    width: 15vw;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-section::before {
    left: 0;
    background: linear-gradient(to right, #000000 10%, transparent 100%);
}

.marquee-section::after {
    right: 0;
    background: linear-gradient(to left, #000000 10%, transparent 100%);
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 60px;
    padding-left: 60px;
    /* mesmo tamanho do gap */
    animation: scrollMarquee 35s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    user-select: none;
}

.marquee-item svg {
    color: #ffffff;
    flex-shrink: 0;
}

.marquee-item:hover {
    color: rgba(255, 255, 255, 0.95);
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Rola perfeitamente por causa da duplicação de itens */
    }
}

/* ORBIT SECTION (REDE NEURAL) */
.orbit-section {
    width: 100%;
    padding: 100px 8vw 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    background-color: transparent;
    background-image: radial-gradient(circle at center, rgba(193, 131, 251, 0.08) 0%, transparent 70%);
}

#neural-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.orbit-title {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
    z-index: 10;
}

.orbit-title h2 {
    font-family: var(--font-poppins), sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 16px;
}

.highlight-purple {
    font-weight: 700;
    background: linear-gradient(135deg, #bc85f8 0%, #e27bb7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.orbit-title p {
    font-size: 1.1rem;
    color: #e0e0e0;
    font-weight: 300;
}

.orbit-wrapper {
    position: relative;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.05);
}

.center-whatsapp {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(20, 20, 25, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(193, 131, 251, 0.4);
    box-shadow: 0 0 30px rgba(193, 131, 251, 0.3), inset 0 0 20px rgba(193, 131, 251, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    animation: pulse-glow 3s ease-in-out infinite;
}

.center-whatsapp svg {
    width: 35px;
    height: 35px;
    fill: #c183fb;
    filter: drop-shadow(0 0 10px rgba(193, 131, 251, 0.8));
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 30px rgba(193, 131, 251, 0.3), inset 0 0 20px rgba(193, 131, 251, 0.15);
    }

    50% {
        box-shadow: 0 0 50px rgba(193, 131, 251, 0.6), inset 0 0 30px rgba(193, 131, 251, 0.3);
    }

    100% {
        box-shadow: 0 0 30px rgba(193, 131, 251, 0.3), inset 0 0 20px rgba(193, 131, 251, 0.15);
    }
}

.orbit-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 210px;
    height: 0;
    transform-origin: 0 50%;
    transform: translateY(-50%) rotate(var(--angle));
    z-index: 1;
}

.orbit-card {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(calc(-1 * var(--angle)));

    /* ======================================
       GLASS SOFISTICADO — mesmo nível dos botões
       Alta opacidade + blur forte + bordas brilhantes
       ====================================== */
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);

    /* Borda assimétrica: topo e esquerda brilham, resto some */
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);

    border-radius: 16px;
    padding: 10px 16px 10px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    white-space: nowrap;

    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        0 0 28px rgba(193, 131, 251, 0.10),
        0 1px 0 rgba(255, 255, 255, 0.08);

    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 10;

    /* Flutuação suave — cada card recebe delay via nth-child */
    animation: card-float 4s ease-in-out infinite;
}

/* Linha de reflexo no topo — brilhinho premium do glass */
.orbit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.45) 25%,
            rgba(255, 255, 255, 0.70) 50%,
            rgba(255, 255, 255, 0.45) 75%,
            transparent 100%);
    border-radius: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Glow interno sutil na parte inferior — profundidade glass */
.orbit-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(193, 131, 251, 0.20) 40%,
            rgba(193, 131, 251, 0.20) 60%,
            transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.orbit-card:hover {
    transform: translate(-50%, -50%) rotate(calc(-1 * var(--angle))) scale(1.06);
    animation-play-state: paused;
    background: rgba(255, 255, 255, 0.12);
    border-top-color: rgba(255, 255, 255, 0.50);
    border-left-color: rgba(255, 255, 255, 0.25);
    box-shadow:
        0 6px 32px rgba(0, 0, 0, 0.50),
        inset 0 1px 0 rgba(255, 255, 255, 0.32),
        0 0 40px rgba(193, 131, 251, 0.22),
        0 0 80px rgba(193, 131, 251, 0.08);
    z-index: 20;
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    flex-shrink: 0;

    /* Glass icon — uniforme, branco, refinado */
    background: rgba(255, 255, 255, 0.10);
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.20),
        0 2px 8px rgba(0, 0, 0, 0.30);

    /* Todos os ícones brancos */
    color: rgba(255, 255, 255, 0.90);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Remove cores individuais — todos brancos */
.orbit-item:nth-child(3n+1) .card-icon,
.orbit-item:nth-child(3n+2) .card-icon,
.orbit-item:nth-child(3n) .card-icon {
    background: rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.90);
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.orbit-card:hover .card-icon {
    background: rgba(255, 255, 255, 0.16);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.30),
        0 0 14px rgba(255, 255, 255, 0.10),
        0 2px 10px rgba(0, 0, 0, 0.35);
}

.card-text {
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: -0.01em;
}

.orbit-card {
    cursor: pointer;
}

/* Delays e amplitudes independentes por posição — flutuação orgânica */
.orbit-item:nth-child(1) .orbit-card {
    animation-delay: 0s;
    animation-duration: 3.8s;
}

.orbit-item:nth-child(2) .orbit-card {
    animation-delay: -1.2s;
    animation-duration: 4.3s;
}

.orbit-item:nth-child(3) .orbit-card {
    animation-delay: -2.5s;
    animation-duration: 3.6s;
}

.orbit-item:nth-child(4) .orbit-card {
    animation-delay: -0.7s;
    animation-duration: 4.8s;
}

.orbit-item:nth-child(5) .orbit-card {
    animation-delay: -3.1s;
    animation-duration: 4.1s;
}

.orbit-item:nth-child(6) .orbit-card {
    animation-delay: -1.8s;
    animation-duration: 3.9s;
}

.orbit-item:nth-child(7) .orbit-card {
    animation-delay: -0.4s;
    animation-duration: 4.5s;
}

@keyframes card-float {
    0% {
        transform: translate(-50%, -50%) rotate(calc(-1 * var(--angle))) translateY(0px);
    }

    50% {
        transform: translate(-50%, -50%) rotate(calc(-1 * var(--angle))) translateY(-7px);
    }

    100% {
        transform: translate(-50%, -50%) rotate(calc(-1 * var(--angle))) translateY(0px);
    }
}

.card-arrow {
    font-size: 1rem;
    color: rgba(193, 131, 251, 0.7);
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.25s ease, color 0.25s ease;
    margin-left: 2px;
}

.orbit-card:hover .card-arrow {
    transform: translateX(3px);
    color: #c183fb;
}

/* ===================================
   MODAL DOS CARDS — LAYOUT RICO
   =================================== */
#card-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

#card-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

#card-modal {
    position: relative;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    scrollbar-width: none;

    --modal-bg: #f1ecec;
    background: var(--modal-bg);
    border: 1px solid #e3e8ee;
    border-radius: 20px;
    padding: 40px 40px 0;
    /* Removido padding inferior para o ::after assumir */

    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.08);

    transform: translateY(24px) scale(0.97);
    transition: transform 0.38s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Scroll Fade Indicator - Degradê Sticky no fundo */
#card-modal::after {
    content: '';
    display: block;
    position: sticky;
    bottom: 0;
    margin-left: -40px;
    margin-right: -40px;
    width: calc(100% + 80px);
    height: 120px;
    background: linear-gradient(to top, var(--modal-bg) 10%, transparent 100%);
    pointer-events: none;
    z-index: 100;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

#card-modal::-webkit-scrollbar {
    display: none;
}

#card-modal-overlay.active #card-modal {
    transform: translateY(0) scale(1);
}

/* --- Botão Fechar --- */
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #c183fb 0%, #f173b8 100%);
    border: none;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
    box-shadow: 0 2px 8px rgba(193, 131, 251, 0.3);
    z-index: 10;
}

.modal-close:hover {
    opacity: 0.85;
}

/* --- Nova Estrutura Modal --- */
.modal-drag-handle {
    width: 36px;
    height: 4px;
    background: #d0c8c8;
    border-radius: 4px;
    margin: 0 auto 24px;
}

#modal-title.new-modal-title {
    font-family: var(--font-poppins), -apple-system, sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: #1a1f36;
    line-height: 1.25;
    margin-bottom: 12px;
    text-align: left;
    letter-spacing: -0.02em;
}

.modal-lead.new-modal-lead {
    font-family: var(--font-poppins), -apple-system, sans-serif;
    font-size: 0.95rem;
    color: #1a1f36;
    line-height: 1.5;
    margin-bottom: 24px;
    text-align: left;
}

.modal-buttons-stack {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-bottom: 32px;
}

.modal-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #c183fb 0%, #f173b8 100%);
    color: #fff;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-family: var(--font-poppins), -apple-system, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: opacity 0.2s;
    text-align: center;
    text-decoration: none;
    width: 100%;
}

.modal-btn-primary:hover {
    opacity: 0.9;
}

.modal-btn-secondary {
    background: transparent;
    color: #1a1f36;
    border: 1px solid #1a1f36;
    padding: 14px 24px;
    border-radius: 8px;
    font-family: var(--font-poppins), -apple-system, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
    text-align: center;
    width: 100%;
}

.modal-btn-secondary:hover {
    background: rgba(26, 31, 54, 0.05);
}

.modal-checklist-col.new-checklist {
    margin-bottom: 12px;
}

.modal-checklist-col.new-checklist ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0;
    padding: 0;
}

.modal-checklist-col.new-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-poppins), -apple-system, sans-serif;
    font-size: 0.95rem;
    color: #1a1f36;
    font-weight: 400;
    line-height: 1.4;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
}

.modal-check-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c183fb 0%, #f173b8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

/* --- Responsive: 1 coluna em telas pequenas --- */
@media (max-width: 600px) {
    #card-modal {
        padding: 32px 24px 0;
        border-radius: 20px;
        max-width: 90vw;
    }

    #card-modal::after {
        margin-left: -24px;
        margin-right: -24px;
        width: calc(100% + 48px);
    }

    #modal-title {
        font-size: 1.3rem;
    }
}



/* ======================================
   ANIMAÇÃO CHAT PREMIUM — BLOCO 3
   ====================================== */

.ma-floating-canvas {
    position: relative;
    width: 100%;
    max-width: 380px;
    height: 520px;
    margin: 0 auto 20px auto;
    background-color: #F5F0EB;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    overflow: hidden;
    border-radius: 24px;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.02),
        0 8px 16px rgba(0, 0, 0, 0.04),
        0 16px 28px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
}


/* ── Overlay de desfoque sobre as mensagens ── */
.ma-blur-overlay {
    position: absolute;
    inset: 0;
    background: rgba(245, 240, 235, 0.55);
    /* Corrigido */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 5;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.ma-blur-overlay.active {
    opacity: 1;
}

/* ── Eraser — camada sólida que "apaga" a tela subindo ── */
.ma-eraser {
    position: absolute;
    left: 0;
    width: 100%;
    height: 200%;
    top: 100%;
    background: #F5F0EB;
    /* Corrigido */
    z-index: 15;
    pointer-events: none;
    will-change: top;
}

/* Trilha das mensagens */
.ma-chat-track {
    flex: 1;
    padding: 50px 16px 80px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: hidden;
    z-index: 2;
}

/* ── Dock — SEMPRE usa 'top' para posicionamento fluido ── */
.ma-input-dock {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 20;
    /* Flex: centraliza a pill horizontalmente (expansão do centro) */
    display: flex;
    justify-content: center;
    will-change: top, transform, opacity;
}

/* Pill */
.ma-input-pill {
    background: #ffffff;
    border-radius: 40px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.09), 0 1px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    will-change: width, border-radius, padding;
}

/* ── Estado colapsado: círculo puro com "+" ── */
.ma-input-pill.collapsed {
    width: 54px;
    height: 54px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), 0 0 0 4px rgba(0, 0, 0, 0.02);
}

.ma-input-pill.collapsed .ma-icon-plus {
    margin: 0 auto;
}

/* ── Estado expandido: barra completa ── */
.ma-input-pill.expanded {
    width: 100%;
    border-radius: 40px;
    padding: 10px 16px;
}

.ma-text-field {
    flex: 1;
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #111b21;
    white-space: nowrap;
    overflow: hidden;
    min-width: 0;
}

.ma-icon-btn {
    color: #8696a0;
    flex-shrink: 0;
    cursor: pointer;
}

.ma-cursor {
    animation: ma-blink 1s infinite;
    color: #00a884;
    margin-left: 2px;
}

/* Mensagens */
.ma-row {
    display: flex;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    animation: ma-floatUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.ma-row.user {
    justify-content: flex-end;
}

.ma-row.bot {
    justify-content: flex-start;
    gap: 12px;
}

/* Avatar */
.ma-avatar-wrap {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.ma-avatar-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Balões */
.ma-bubble {
    padding: 12px 16px;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 14px;
    max-width: 82%;
    border: 1px solid rgba(0, 0, 0, 0.02);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07), 0 1px 2px rgba(0, 0, 0, 0.04);
}

.ma-bubble.user {
    background-color: #d9fdd3;
    color: #111b21;
    border-top-right-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.ma-bubble.bot {
    background-color: #ffffff;
    color: #111b21;
    border-top-left-radius: 4px;
}

.ma-bot-head {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 6px;
}

.ma-bot-head strong {
    font-size: 14px;
    color: #111b21;
}

.ma-verified {
    color: #34B7F1;
    width: 14px;
    height: 14px;
}

.ma-meta {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #667781;
    margin-top: 6px;
}

.ma-ticks {
    color: #8696a0;
    transition: color 0.4s ease;
}

.ma-ticks.blue {
    color: #53bdeb;
}

/* 3 bolinhas */
.ma-typing-dots {
    display: flex;
    gap: 5px;
    align-items: center;
    height: 20px;
    padding: 0 4px;
}

.ma-typing-dots span {
    width: 7px;
    height: 7px;
    background-color: #8696a0;
    border-radius: 50%;
    opacity: 0.8;
    animation: ma-bounce 1.4s infinite ease-in-out both;
}

.ma-typing-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.ma-typing-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

/* ======================================
   GOOGLE AGENDA OVERLAY — BLOCO 5
   ====================================== */

.gcal-overlay {
    position: absolute;
    inset: 0;
    background: #ffffff;
    z-index: 60;
    display: flex;
    flex-direction: column;
    pointer-events: none;
    border-radius: 24px;
    overflow: hidden;
    transform: translateX(105%);
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s ease;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .gcal-overlay {
        border-radius: 16px;
    }
}

.gcal-overlay.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: all;
}

/* Header */
.gcal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px 6px;
    border-bottom: 1px solid #e8eaed;
    background: #ffffff;
}

.gcal-header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.gcal-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gcal-logo span {
    font-size: 16px;
    font-weight: 500;
    color: #3c4043;
    letter-spacing: -0.2px;
}

.gcal-header-right {
    display: flex;
    align-items: center;
}

.gcal-avatar-small {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #bc85f8, #e27bb7);
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
}

/* Navegação do mês */
.gcal-month-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px 4px;
}

.gcal-month-label {
    font-size: 18px;
    font-weight: 500;
    color: #3c4043;
}

.gcal-nav-arrows {
    display: flex;
    gap: 8px;
    align-items: center;
}

.gcal-nav-arrows svg {
    cursor: pointer;
    opacity: 0.6;
}

/* Semana header */
.gcal-week-header {
    display: flex;
    justify-content: space-around;
    padding: 8px 12px 8px;
    border-bottom: 1px solid #e8eaed;
}

.gcal-day-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.gcal-day-name {
    font-size: 10.5px;
    font-weight: 500;
    color: #70757a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gcal-day-num {
    font-size: 15px;
    font-weight: 400;
    color: #3c4043;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.gcal-today .gcal-day-num {
    background: #1a73e8;
    color: #ffffff;
    font-weight: 500;
}

.gcal-today .gcal-day-name {
    color: #1a73e8;
}

/* Timeline */
.gcal-timeline {
    flex: 1;
    overflow-y: auto;
    padding: 0 0 4px;
}

.gcal-time-row {
    display: flex;
    align-items: center;
    padding: 0 16px;
    height: 34px;
}

.gcal-time-label {
    font-size: 11px;
    color: #70757a;
    width: 48px;
    flex-shrink: 0;
    text-align: right;
    padding-right: 12px;
}

.gcal-time-line {
    flex: 1;
    height: 1px;
    background: #e8eaed;
}

/* Slots de evento */
.gcal-event-slot {
    padding: 2px 16px 2px 60px;
    opacity: 0;
    transform: translateY(12px) scale(0.96);
    transition: opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.gcal-event-slot.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.gcal-event {
    padding: 6px 10px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-left: 4px solid;
    position: relative;
}

.gcal-ev-blue {
    background: rgba(66, 133, 244, 0.12);
    border-left-color: #4285F4;
}

.gcal-ev-green {
    background: rgba(11, 128, 67, 0.12);
    border-left-color: #0B8043;
}

.gcal-ev-purple {
    background: rgba(142, 36, 170, 0.12);
    border-left-color: #8E24AA;
}

.gcal-ev-red {
    background: rgba(234, 67, 53, 0.12);
    border-left-color: #EA4335;
}

.gcal-ev-title {
    font-size: 13.5px;
    font-weight: 500;
    color: #3c4043;
    line-height: 1.3;
}

.gcal-ev-time {
    font-size: 11px;
    color: #70757a;
}

/* Slide-up para sair (fechar aba) */
.gcal-overlay.slide-up {
    transform: translateY(-105%);
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s ease;
}

/* ── Notificação WhatsApp ── */
.gcal-whatsapp-notif {
    position: absolute;
    top: 6px;
    left: 0;
    right: 0;
    z-index: 70;
    padding: 6px 8px;
    transform: translateY(-120%);
    opacity: 0;
    /* Transição de SAÍDA: Mais lenta e suave */
    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.8s ease;
    pointer-events: none;
}

.gcal-whatsapp-notif.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
    /* Transição de ENTRADA: Elegante sem pressa */
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.8s ease;
}

.gcal-notif-inner {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.12),
        0 1px 4px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(0, 0, 0, 0.04);
}

.gcal-notif-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #e7fce6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gcal-notif-icon svg {
    width: 22px;
    height: 22px;
}

.gcal-notif-body {
    flex: 1;
    min-width: 0;
}

.gcal-notif-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3px;
}

.gcal-notif-head strong {
    font-size: 13px;
    color: #1a1a2e;
    font-weight: 600;
}

.gcal-notif-head span {
    font-size: 11px;
    color: #70757a;
}

.gcal-notif-body p {
    font-size: 12px;
    color: #5f6368;
    line-height: 1.4;
    margin: 0;
}

/* Keyframes */
@keyframes ma-blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0
    }
}

@keyframes ma-floatUp {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes ma-bounce {

    0%,
    80%,
    100% {
        transform: scale(0)
    }

    40% {
        transform: scale(1)
    }
}

/* Mobile */
@media (max-width: 768px) {
    .ma-floating-canvas {
        height: 520px;
        transform: translateX(0);
        /* Remove o deslocamento no mobile */
        max-width: 100%;
        border-radius: 16px;
        /* Suaviza a sombra no mobile para evitar clipping e linhas bruscas */
        box-shadow:
            0 4px 10px rgba(0, 0, 0, 0.03),
            0 12px 24px rgba(0, 0, 0, 0.05);
    }

    .ma-input-pill.collapsed {
        width: 48px;
        height: 48px;
    }
}




/* ======================================
   BLOCO 3 — FEATURE SPLIT (FUNDO CLARO)
   ====================================== */

/* Transição suave do dark para o light */
.feature-split-section {
    width: 100%;
    padding: 60px 8vw;
    position: relative;
    overflow: hidden;
    background-color: #F5F0EB;
}

/* Bloco isolado com mais respiro para não mostrar fundo escuro e rosa ao mesmo tempo */
.feature-split-section.isolated-feature-split {
    padding: 120px 8vw;
}

/* Remove o gap e a transição quando um bloco de feature segue outro */
.feature-split-section+.feature-split-section {
    padding-top: 0;
    margin-top: -20px;
    /* Reduzido de -40px para dar mais respiro */
}

.feature-split-section+.feature-split-section::before {
    display: none;
}

/* Degradê de transição dark → light no topo — mais suave e alongado */
.feature-split-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, #000000 0%, #0a0a0a 30%, #F5F0EB 100%);
    pointer-events: none;
    z-index: 1;
}

/* Glow roxo/rosa suave de ambientação */
.feature-split-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 55%;
    height: 100%;
    background:
        radial-gradient(ellipse 50% 60% at 80% 20%, rgba(188, 133, 248, 0.07) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 20% 80%, rgba(226, 123, 183, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.feature-split-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.feature-split-container.reverse {
    grid-template-columns: 1fr 1.2fr;
}

/* ---- COLUNA ESQUERDA: Texto ---- */
.feature-split-text {
    display: flex;
    flex-direction: column;
    gap: 0;
    background-color: #FFFFFF;
    padding: 52px 56px;
    border-radius: 28px;
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

/* Linha de reflexo sutil no topo do card */
.feature-split-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(188, 133, 248, 0.15) 30%,
            rgba(188, 133, 248, 0.25) 50%,
            rgba(188, 133, 248, 0.15) 70%,
            transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* Badge de categoria — glass premium */
.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 16px;
    border-radius: 100px;
    background: linear-gradient(135deg, #bc85f8 0%, #e27bb7 100%);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: capitalize;
    width: fit-content;
    margin-bottom: 28px;
    box-shadow:
        0 2px 8px rgba(188, 133, 248, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.feature-badge svg {
    flex-shrink: 0;
    opacity: 0.9;
    stroke: #FFFFFF;
}

/* Título principal — escuro no fundo claro */
.feature-split-title {
    font-family: var(--font-poppins), sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1.2px;
    color: #1a1a2e;
    margin-bottom: 18px;
}

/* Descrição */
.feature-split-desc {
    font-size: 0.95rem;
    font-weight: 400;
    color: #6b6b88;
    line-height: 1.75;
    margin-bottom: 32px;
}

/* Lista de pills — com check icon e hover premium */
.feature-pill-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 100px;
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    background: rgba(245, 240, 235, 0.5);
    color: #2d2d4e;
    font-size: 0.85rem;
    font-weight: 500;
    width: fit-content;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: default;
    position: relative;
}

/* Checkmark icon antes de cada pill */
.feature-pill::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #bc85f8 0%, #e27bb7 100%);
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 1px 4px rgba(188, 133, 248, 0.3);
}

/* Check mark via CSS */
.feature-pill::after {
    content: '';
    position: absolute;
    left: 25px;
    width: 5px;
    height: 8px;
    border: solid #FFFFFF;
    border-width: 0 1.5px 1.5px 0;
    transform: rotate(45deg);
    pointer-events: none;
}

.feature-pill:hover {
    border-color: rgba(188, 133, 248, 0.35);
    background: rgba(188, 133, 248, 0.06);
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(188, 133, 248, 0.1);
}

.feature-image-wrapper {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: none;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.feature-image-wrapper:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: none;
}

.feature-image-wrapper img {
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.feature-image-wrapper:hover img {
    transform: scale(1.05);
}

/* ---- COLUNA DIREITA: Mídia ---- */
.feature-split-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-media-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 24px;
    border: 1.5px dashed rgba(188, 133, 248, 0.3);
    background: rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #bc85f8;
    transition: border-color 0.3s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: none;
}

/* Glow rosa suave dentro do placeholder */
.feature-media-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(226, 123, 183, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.feature-media-placeholder svg {
    opacity: 0.35;
}

.feature-media-placeholder span {
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.45;
    letter-spacing: 0.02em;
}

/* ======================================
   ANIMAÇÃO CELULARES — BLOCO 4
   ====================================== */
.phones-floating-container {
    position: relative;
    width: 100%;
    max-width: 440px;
    height: 600px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    /* Garante que a sombra não seja cortada */
}

.phones-floating-container img {
    position: absolute;
    height: auto;
    will-change: transform;
}

.phone-back {
    width: 180px;
    /* Celular 2 - ainda menor */
    right: 35px;
    /* Afastado um pouco mais da borda central */
    top: 90px;
    /* Mais para cima */
    z-index: 1;
    animation: floatZeroGravityBack 7s ease-in-out infinite;
    filter: drop-shadow(0 10px 12px rgba(0, 0, 0, 0.25));
}

.phone-front {
    width: 280px;
    /* Celular 1 */
    left: 25px;
    /* Afastado um pouco mais da borda central */
    bottom: 60px;
    /* Mais alto para não cortar o topo */
    z-index: 2;
    animation: floatZeroGravityFront 9s ease-in-out infinite;
    filter: drop-shadow(0 12px 15px rgba(0, 0, 0, 0.3));
}

@keyframes floatZeroGravityBack {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-12px) rotate(1.5deg);
    }

    66% {
        transform: translateY(8px) rotate(-1deg);
    }
}

@keyframes floatZeroGravityFront {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-15px) rotate(-1.5deg);
    }

    66% {
        transform: translateY(12px) rotate(1deg);
    }
}

/* Versões mais leves para mobile */
@keyframes floatZeroGravityBackMobile {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-6px) rotate(0.8deg);
    }

    66% {
        transform: translateY(4px) rotate(-0.5deg);
    }
}

@keyframes floatZeroGravityFrontMobile {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-8px) rotate(-0.8deg);
    }

    66% {
        transform: translateY(6px) rotate(0.5deg);
    }
}

@media (max-width: 768px) {
    .phones-floating-container {
        max-width: 320px;
        height: 480px;
        /* Aumentado para o celular caber inteiro sem subir demais */
    }

    .phone-back {
        width: 140px;
        bottom: -20px;
        right: 15px;
        animation: floatZeroGravityBackMobile 6s ease-in-out infinite;
        /* Mais leve e um pouco mais rápido */
    }

    .phone-front {
        width: 200px;
        bottom: 25px;
        /* Reduzido para compensar a altura menor do container */
        left: 15px;
        animation: floatZeroGravityFrontMobile 8s ease-in-out infinite;
        /* Mais leve */
    }
}

/* Mobile — Feature Split */
@media (max-width: 768px) {
    .feature-split-section {
        padding: 30px 5vw 32px;
        /* Restaurado para 32px como estava antes */
    }

    .feature-split-section.isolated-feature-split {
        padding: 60px 5vw 64px;
    }

    .feature-split-section+.feature-split-section {
        padding-top: 0;
    }

    .feature-split-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-split-container.reverse {
        grid-template-columns: 1fr;
    }

    .feature-split-container.reverse .feature-split-text {
        order: -1;
    }

    .feature-split-title {
        font-size: 1.7rem;
        letter-spacing: -0.8px;
    }

    .feature-split-desc {
        font-size: 0.9rem;
        margin-bottom: 24px;
    }

    .feature-media-placeholder {
        aspect-ratio: 16 / 10;
        border-radius: 18px;
    }

    .feature-split-text {
        padding: 36px 28px;
        /* Restaurado o padding original */
        border-radius: 22px;
    }

    .feature-pill {
        font-size: 0.8rem;
        padding: 9px 16px;
    }

    .feature-pill::after {
        left: 21px;
    }


    .phones-section {
        padding-top: 0 !important;
        margin-top: 0 !important;
        /* Removida a margem negativa para não "roubar" os 32px de respiro */
    }

    .phones-section .feature-split-container {
        gap: 20px;
    }

    .phones-section .phones-floating-container {
        height: 400px;
        margin-top: 0;
    }
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
    .site-header {
        width: calc(100% - 24px);
        top: 10px;
        height: 56px;
    }

    .header-container {
        justify-content: center;
        padding: 0 16px;
    }

    .desktop-nav {
        display: none;
    }

    .header-login-btn {
        display: inline-flex;
        position: absolute;
        right: 16px;
        padding: 4px 12px;
        font-size: 0.75rem;
    }

    .header-login-btn svg {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        position: absolute;
        left: 16px;
        gap: 4px;
        padding: 8px;
    }

    .mobile-menu-btn span {
        width: 18px;
        height: 2px;
    }

    .logo img {
        height: 26px;
    }

    .hero {
        background-image: url('images/banner hero titto mobile.webp');
        background-position: top center;
        background-size: 100% auto;
        align-items: flex-start;
        aspect-ratio: 991 / 1418;
        /* Proporção exata da imagem no celular */
        min-height: 0;
        /* Remove a altura fixa para grudar o letreiro */
        padding-top: 14vh;
        padding-bottom: 6vh;
    }

    .hero-content {
        position: static;
        top: auto;
        transform: none;
        min-height: auto;
        display: block;
        text-align: center;
        padding: 0 5%;
    }

    .text-column {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .headline {
        font-size: 1.5rem;
        line-height: 1.15;
        margin-bottom: 12px;
    }

    .subheadline {
        font-size: 0.72rem;
        margin-top: -4px;
        margin-bottom: 0;
    }

    .button-container {
        position: absolute;
        top: calc(126vw - 23px);
        width: 100%;
        display: flex;
        justify-content: center;
        left: 0;
        margin-top: 15px;
    }

    .cta-button {
        width: 100%;
        max-width: 185px;
        padding: 6px 0;
        font-size: 0.75rem;
        font-weight: 400;
        border-radius: 12px;
    }

    .marquee-section {
        padding: 10px 0;
    }

    .marquee-content {
        gap: 40px;
        padding-left: 40px;
    }

    .marquee-item {
        font-size: 0.8rem;
        gap: 8px;
    }

    .marquee-item svg {
        width: 14px;
        height: 14px;
    }

    /* ORBIT MOBILE - NEURAL CONSTELLATION */
    .orbit-section {
        padding: 60px 0 20px;
        /* Reduzido de 80px para 20px */
        background-image: radial-gradient(circle at center, rgba(193, 131, 251, 0.08) 0%, transparent 70%);
        overflow-x: hidden;
    }

    .orbit-title {
        padding: 0 5vw;
        margin-bottom: 10px;
        /* Ajustado de 25px para 10px para um equilíbrio melhor */
    }

    .orbit-title h2 {
        font-size: 1.65rem;
        line-height: 1.3;
    }

    .orbit-title p {
        font-size: 0.95rem;
    }

    .orbit-wrapper {
        width: 100%;
        height: 115vw;
        /* Reduzido de 130vw para 115vw */
        min-height: 440px;
        /* Reduzido de 480px para 440px */
        max-height: 600px;
        /* Reduzido de 650px para 600px */
        border: none;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 30px;
    }

    .center-whatsapp {
        position: absolute;
        top: 47%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 65px;
        height: 65px;
        z-index: 10;
        margin: 0;
    }

    .center-whatsapp svg {
        width: 32px;
        height: 32px;
    }

    .orbit-item {
        position: absolute;
        top: 50%;
        left: 50%;
        height: 0;
        width: var(--mobile-radius);
        transform: translateY(-50%) rotate(var(--mobile-angle));
        z-index: 1;
    }

    .orbit-card {
        position: absolute;
        left: 100%;
        top: 50%;
        width: 80px;
        /* Extremamente compacto, ajustado para uma palavra por linha */
        flex-direction: column;
        gap: 4px;
        /* Menos gap para ficar menorzinho */
        padding: 8px 4px;
        /* Menos padding */
        text-align: center;
        justify-content: center;
        border-radius: 12px;
        word-break: break-word;
        /* Garante que palavras muito longas não vazem */
        /* Substituímos o !important por uma animação dedicada mobile */
        animation: card-float-mobile 4s ease-in-out infinite;
    }

    /* Delays independentes por posição — flutuação orgânica mobile */
    .orbit-item:nth-child(2) .orbit-card {
        animation-delay: 0s;
        animation-duration: 3.8s;
    }

    .orbit-item:nth-child(3) .orbit-card {
        animation-delay: -1.2s;
        animation-duration: 4.3s;
    }

    .orbit-item:nth-child(4) .orbit-card {
        animation-delay: -2.5s;
        animation-duration: 3.6s;
    }

    .orbit-item:nth-child(5) .orbit-card {
        animation-delay: -0.7s;
        animation-duration: 4.8s;
    }

    .orbit-item:nth-child(6) .orbit-card {
        animation-delay: -3.1s;
        animation-duration: 4.1s;
    }

    .orbit-item:nth-child(7) .orbit-card {
        animation-delay: -1.8s;
        animation-duration: 3.9s;
    }

    .orbit-item:nth-child(8) .orbit-card {
        animation-delay: -0.4s;
        animation-duration: 4.5s;
    }

    @keyframes card-float-mobile {
        0% {
            transform: translate(-50%, -50%) rotate(calc(-1 * var(--mobile-angle))) translateY(0px);
        }

        50% {
            transform: translate(-50%, -50%) rotate(calc(-1 * var(--mobile-angle))) translateY(-5px);
        }

        100% {
            transform: translate(-50%, -50%) rotate(calc(-1 * var(--mobile-angle))) translateY(0px);
        }
    }

    .card-icon {
        width: 28px;
        height: 28px;
        margin: 0 auto;
    }

    .card-icon svg {
        width: 14px;
        height: 14px;
    }

    .card-text {
        font-size: 0.65rem;
        line-height: 1.25;
    }

    .card-arrow {
        display: none;
    }

    /* Constellation Map Positions - 360 Harmonioso (Elipse) */
    .orbit-item:nth-child(2) {
        --mobile-angle: -90deg;
        /* Topo */
        --mobile-radius: 46vw;
    }

    .orbit-item:nth-child(3) {
        --mobile-angle: -38.6deg;
        /* Topo Direita */
        --mobile-radius: 40vw;
    }

    .orbit-item:nth-child(4) {
        --mobile-angle: 12.8deg;
        /* Direita */
        --mobile-radius: 32vw;
    }

    .orbit-item:nth-child(5) {
        --mobile-angle: 64.3deg;
        /* Baixo Direita */
        --mobile-radius: 40vw;
    }

    .orbit-item:nth-child(6) {
        --mobile-angle: 115.7deg;
        /* Baixo Esquerda */
        --mobile-radius: 40vw;
    }

    .orbit-item:nth-child(7) {
        --mobile-angle: 167.1deg;
        /* Esquerda */
        --mobile-radius: 32vw;
    }

    .orbit-item:nth-child(8) {
        --mobile-angle: 218.6deg;
        /* Topo Esquerda */
        --mobile-radius: 40vw;
    }
}

/* =========================================================================
   BLOCO INTEGRAÇÕES
   ========================================================================= */

.integrations-section {
    width: 100%;
    padding: 100px 8vw 40px;
    /* Reduced bottom padding */
    position: relative;
    color: #ffffff;
}

.integrations-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    gap: 60px;
}

.integrations-text {
    flex: 1;
    max-width: 520px;
}

.open-finance-badge {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.open-finance-badge svg {
    stroke: #000000;
}

.integrations-title {
    font-family: var(--font-poppins), sans-serif;
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.8px;
    color: #ffffff;
}

.integrations-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 300;
}

.integrations-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 40px;
}

.int-btn-outline {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.int-btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.12);
}

.int-btn-solid {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 500;
    color: #000000;
    text-decoration: none;
    border-radius: 14px;
    background-color: #d6f578;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(214, 245, 120, 0.15);
}

.int-btn-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 245, 120, 0.3);
    background-color: #dcf787;
}

/* Informação dos 114 bancos integrados */
.of-banks-proof {
    display: flex;
    align-items: center;
    gap: 12px;
}

.of-proof-avatars {
    display: flex;
    align-items: center;
}

.of-proof-avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #000000;
    margin-left: -10px;
    object-fit: cover;
    background: #111;
}

.of-proof-avatars img:first-child {
    margin-left: 0;
}

.of-proof-more {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #000000;
    margin-left: -10px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 600;
    color: #fff;
    z-index: 1;
}

.of-proof-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.of-proof-text strong {
    color: #ffffff;
    font-weight: 500;
}

.integrations-media {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.integrations-img-ref {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

@media (max-width: 992px) {
    .integrations-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .integrations-text {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .integrations-title {
        font-size: 2.2rem;
    }

    .integrations-desc br {
        display: none;
    }

    .integrations-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .int-btn-outline,
    .int-btn-solid {
        width: 100%;
        max-width: 220px;
        padding: 10px 24px;
        font-size: 0.9rem;
        border-radius: 12px;
    }

    .integrations-media {
        justify-content: center;
        width: 100%;
    }

    .of-banks-proof {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* =========================================================================
   OPEN FINANCE ANIMATION
   ========================================================================= */

.of-animation-canvas {
    width: 100%;
    max-width: 520px;
    min-width: 0;
    min-height: 520px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
}

/* ── Cenas (base) ── */
.of-scene {
    grid-area: 1 / 1;
    width: 100%;
    height: 100%;
    min-width: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.96);
    padding: 20px;
}

.of-scene.active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

/* ─── CENA 1: BARRA GLASS CONVITE ─── */
.of-invite-bar {
    width: 400px;
    max-width: 92%;
    height: 100px;
    background: transparent;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: none;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    position: relative;
    opacity: 0;
    transition: opacity 0.3s ease, background 0.6s ease, box-shadow 0.4s ease;
}

.of-invite-bar.visible {
    opacity: 1;
}

.of-invite-bar.filled {
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.of-invite-bar.hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 0 20px 2px rgba(255, 255, 255, 0.04);
}

/* SVG border-draw overlay */
.of-border-draw {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.of-border-draw rect {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.of-border-draw.drawing rect {
    stroke-dashoffset: 0;
}

.of-invite-logo {
    height: 26px;
    width: auto;
    flex-shrink: 0;
    margin-left: 12px;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.of-invite-logo.reveal {
    opacity: 0.9;
    transform: translateX(0);
}

.of-invite-btn {
    background: transparent;
    border: 1px solid transparent;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0);
    font-family: var(--font-poppins), sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    padding: 10px 22px;
    cursor: pointer;
    transition: color 0.4s ease, border-color 0.4s ease, background 0.3s ease, transform 0.12s ease;
    white-space: nowrap;
    letter-spacing: 0.2px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.of-invite-btn.reveal {
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

.of-invite-btn.hover {
    border-color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.06);
}

.of-invite-btn.clicked {
    transform: scale(0.94);
    border-color: rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.1);
}

/* Cursor animado — posicionado no canvas, não na cena */
.of-cursor {
    position: absolute;
    opacity: 0;
    transition: left 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), top 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.3s ease, transform 0.1s ease;
    z-index: 50;
    pointer-events: none;
}

/* ─── CENA 2-4: BANCOS ─── */
.of-scene-banks {
    justify-content: center;
    padding: 12px;
    overflow: hidden;
}

.of-banks-header {
    width: 100%;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 400;
    flex-shrink: 0;
}

.of-banks-header-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
}

.of-bank-list {
    width: 100%;
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-shrink: 0;
}

.of-bank-row {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s ease, background 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.of-bank-row.visible {
    opacity: 1;
    transform: translateY(0);
}

.of-bank-row.connected {
    background: rgba(34, 197, 94, 0.06);
    border-color: rgba(34, 197, 94, 0.2);
}

.of-bank-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.of-bank-logo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.of-bank-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.of-bank-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: #ffffff;
}

.of-bank-features {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
}

.of-bank-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.of-bank-status {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.3s ease;
}

.of-bank-row.connected .of-bank-status {
    color: #22c55e;
}

/* Toggle */
.of-toggle {
    width: 38px;
    height: 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    position: relative;
    cursor: pointer;
    transition: background 0.4s ease;
    flex-shrink: 0;
}

.of-toggle.active {
    background: #22c55e;
}

.of-toggle-knob {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffffff;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.of-toggle.active .of-toggle-knob {
    transform: translateX(18px);
}

/* Sparks */
.of-sparks {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 40px;
    pointer-events: none;
}

.of-spark {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    opacity: 0;
}

@keyframes of-spark-burst {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* ─── PAINEL DE RESULTADOS ─── */
.of-results-panel {
    width: calc(100% - 24px);
    margin: 4px 12px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease, margin 0.6s ease;
}

.of-results-panel.active {
    max-height: 300px;
    opacity: 1;
}

.of-results-header {
    padding: 10px 14px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-weight: 500;
}

.of-results-body {
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.of-result-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.of-result-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.of-result-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

.of-result-value {
    font-size: 0.75rem;
    font-weight: 600;
    color: #22c55e;
}

.of-result-bar-wrap {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: hidden;
    max-width: 80px;
}

.of-result-bar {
    height: 100%;
    border-radius: 4px;
    width: 0%;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── CENA 5: DASHBOARD REAL ─── */
.of-scene-advisor {
    justify-content: center;
    padding: 12px;
}

.of-dash-card {
    width: 100%;
    max-width: 480px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.of-dash-card.visible {
    opacity: 1;
    transform: scale(1);
}

/* Header */
.of-dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.of-dash-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.of-dash-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.of-dash-title {
    font-family: var(--font-poppins), sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.3px;
}

.of-dash-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(241, 115, 184, 0.15);
    border: 1px solid rgba(241, 115, 184, 0.3);
    border-radius: 16px;
    padding: 4px 12px;
    font-size: 0.68rem;
    font-weight: 500;
    color: #f173b8;
    white-space: nowrap;
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
}

.of-dash-badge.visible {
    opacity: 1;
    transform: scale(1);
}

/* Barra de limite */
.of-dash-limit {
    margin-bottom: 16px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.of-dash-limit.visible {
    opacity: 1;
}

.of-dash-limit-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.of-dash-limit-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
}

.of-dash-limit-pct {
    font-size: 0.82rem;
    font-weight: 600;
    color: #ffffff;
}

.of-dash-bar-track {
    width: 100%;
    height: 8px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.of-dash-bar-fill {
    height: 100%;
    border-radius: 6px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    width: 0%;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Três colunas de valores */
.of-dash-values {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 14px;
}

.of-dash-val-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.of-dash-val-col.visible {
    opacity: 1;
    transform: translateY(0);
}

.of-dash-val-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.45);
}

.of-dash-val-amount {
    font-size: 0.82rem;
    font-weight: 600;
}

/* Fechamento / Vencimento */
.of-dash-dates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 14px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.of-dash-dates.visible {
    opacity: 1;
}

.of-dash-date-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.of-dash-date-head {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.45);
}

.of-dash-date-val {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
}

/* Info box */
.of-dash-info {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.of-dash-info.visible {
    opacity: 1;
    transform: translateY(0);
}

.of-dash-info-head {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.of-dash-info-text {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
    margin: 0;
}

/* Botões de ação */
.of-dash-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.of-dash-actions.visible {
    opacity: 1;
    transform: translateY(0);
}

.of-dash-btn-primary {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-poppins), sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.of-dash-btn-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

/* ─── CENA CONFIRMAÇÃO ─── */
.of-scene-confirm {
    gap: 0;
}

/* Estado: Verificação step-by-step */
.of-verify {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 360px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.of-verify.visible {
    opacity: 1;
}

.of-verify.hidden {
    opacity: 0;
    pointer-events: none;
    position: absolute;
}

.of-verify-shield {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.of-verify-shield.visible {
    opacity: 1;
    transform: scale(1);
}

.of-verify-title {
    font-family: var(--font-poppins), sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.of-verify-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.of-verify-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease, color 0.4s ease;
}

.of-verify-step:last-child {
    border-bottom: none;
}

.of-verify-step.active {
    opacity: 1;
    transform: translateX(0);
    color: rgba(255, 255, 255, 0.7);
}

.of-verify-step.done {
    opacity: 1;
    transform: translateX(0);
    color: rgba(255, 255, 255, 0.5);
}

/* Step icon container */
.of-step-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.of-step-spinner {
    display: block;
}

.of-step-check {
    display: none;
}

@keyframes of-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.of-verify-step.active .of-step-spinner {
    display: block;
    animation: of-spin 1s linear infinite;
}

.of-verify-step.active .of-step-check {
    display: none;
}

.of-verify-step.done .of-step-spinner {
    display: none;
}

.of-verify-step.done .of-step-check {
    display: block;
}

/* Spinner nos steps que ainda não estão ativos */
.of-verify-step:not(.active):not(.done) .of-step-spinner {
    display: none;
}

.of-verify-step:not(.active):not(.done) .of-step-check {
    display: none;
}

.of-confirm-badge {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Estado: Sucesso */
.of-confirm-success {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.of-confirm-success.visible {
    display: flex;
    opacity: 1;
    transform: scale(1);
}

.of-confirm-check {
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.of-confirm-check.visible {
    opacity: 1;
    transform: scale(1);
}

.of-confirm-title {
    font-family: var(--font-poppins), sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
}

.of-confirm-sub {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    line-height: 1.6;
    max-width: 380px;
    margin: 0;
}

.of-confirm-badge {
    padding: 8px 18px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 20px;
    font-size: 0.75rem;
    color: #22c55e;
}

/* ─── RESPONSIVO ─── */
@media (max-width: 992px) {
    .of-animation-canvas {
        max-width: 100%;
        min-height: 460px;
    }
}

@media (max-width: 768px) {
    .of-animation-canvas {
        min-height: 420px;
    }

    .of-invite-bar {
        padding: 0 16px;
        height: 80px;
        width: 100%;
    }

    .of-invite-logo {
        height: 22px;
        margin-left: 0;
    }

    .of-invite-btn {
        padding: 8px 14px;
        font-size: 0.75rem;
    }

    .of-invite-block {
        padding: 30px 24px;
    }

    .of-invite-text {
        font-size: 0.95rem;
    }

    .of-advisor-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .of-adv-card {
        padding: 10px 12px;
    }

    .of-adv-value {
        font-size: 0.85rem;
    }
}

/* =========================================================================
   CTA BLOCK / RESPIRO
   ========================================================================= */

.cta-block-section {
    width: 100%;
    padding: 105px 8vw 120px;
    /* Reduced for better balance */
    display: flex;
    justify-content: center;
    position: relative;
    background-color: #F5F0EB;
    z-index: 10;
    margin-top: -1px;
    /* Remove 1px rendering gap between sections */
}

.cta-block-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
}

.cta-block-container {
    width: 1200px;
    max-width: 100%;
    background-color: #0A0A0E;
    background-image:
        radial-gradient(ellipse 55% 85% at -5% 40%, rgba(193, 131, 251, 0.28) 0%, transparent 75%),
        radial-gradient(ellipse 55% 85% at 105% 70%, rgba(241, 115, 184, 0.28) 0%, transparent 75%);
    border-top: 1px solid rgba(193, 131, 251, 0.3);
    border-left: 1px solid rgba(193, 131, 251, 0.15);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding: 0 91px 0 100px;
    position: relative;
    margin: 0;
    min-height: 200px;
}

/* Subtle inner glow/pattern texture on the right to match reference feeling */
.cta-block-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    background: radial-gradient(ellipse at center right, rgba(193, 131, 251, 0.15) 0%, transparent 70%);
    border-radius: 0 32px 32px 0;
    pointer-events: none;
    z-index: 1;
}

.cta-block-content {
    flex: 1;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.cta-block-title {
    font-family: var(--font-poppins), sans-serif;
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.cta-block-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 0;
}

.cta-block-btn-wrap {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 2;
    padding: 40px 20px 40px 0;
    /* Reduced right padding to move button slightly right */
}

.cta-block-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 48px;
    /* Reduced from 72px to decrease width */
    font-size: 1rem;
    font-weight: 400;
    color: #000000;
    /* Black text */
    text-decoration: none;
    border-radius: 20px;
    background: #ffffff;
    /* White background */
    border: 1px solid #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.cta-block-btn:hover {
    transform: translateY(-2px);
    /* Only a subtle movement, no color change */
}

.cta-block-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    justify-content: center;
}

.cta-phone-img {
    position: relative;
    bottom: -1px;
    /* Nudged down to avoid gap */
    width: 360px;
    /* Increased from 320px */
    height: auto;
    object-fit: contain;
    object-position: bottom;
    display: block;
}

/* =========================================================================
   RESPONSIVE: CTA BLOCK
   ========================================================================= */

@media (max-width: 992px) {
    .cta-block-container {
        flex-direction: column;
        padding: 40px 20px 0 20px;
        /* Aumentado top para descer o titulo, mas ajustado para reduzir altura */
        text-align: center;
        min-height: auto;
        width: 100%;
        overflow: hidden;
        border-bottom: none;
        /* Remove contorno inferior no mobile */
        /* To ensure the image doesn't break the border-radius at the bottom if it's flush */
    }

    .cta-block-content {
        padding: 0;
        max-width: 100%;
        align-items: center;
        order: 1;
    }

    .cta-block-desc {
        display: none;
    }

    .cta-block-btn-wrap {
        padding: 28px 0 30px;
        /* Top de 16px para 28px para mais respiro; bottom reduzido para diminuir altura */
        justify-content: center;
        width: 100%;
        order: 2;
    }

    .cta-block-title {
        font-size: 2.1rem;
        margin-bottom: 0;
    }

    .cta-block-image {
        width: calc(100% + 40px);
        margin: 0 -20px;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        position: static;
        transform: none;
        height: auto;
        flex: auto;
        order: 3;
    }

    .cta-phone-img {
        position: relative;
        bottom: 0;
        transform: translateY(4px);
        /* Puxa a imagem para baixo para cobrir a extremidade */
        left: auto;
        width: 100%;
        max-width: 380px;
        height: auto;
        object-position: bottom;
        display: block;
        margin-bottom: 0;
    }

    .cta-block-section {
        padding: 0 5vw 60px;
        /* Zerado o respiro superior para manter apenas os 32px do bloco anterior */
    }
}

/* =========================================================================
   BLOCO 8: CARDS FEATURES (Controle absoluto)
   ========================================================================= */

.cards-features-section {
    width: 100%;
    padding: 40px 8vw 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.cards-features-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
}


.cards-features-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cards-features-headline {
    font-family: var(--font-poppins), sans-serif;
    font-size: 2.8rem;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
    letter-spacing: -0.5px;
    margin: 0;
    line-height: 1.15;
}

.cards-features-subheadline {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
    max-width: 620px;
    margin: 0;
    line-height: 1.6;
    font-weight: 300;
}


.cards-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.feature-card {
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        filter 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.8s ease,
        border-color 0.8s ease,
        box-shadow 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    color: #ffffff;
    position: relative;
}

/* Glow radial sutil no topo do card */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    z-index: 1;
}

.feature-card:hover {
    /* Basic hover is now handled by the JS adding .is-focused, but we keep a subtle transition just in case JS fails */
    border-color: rgba(193, 131, 251, 0.2);
}

.feature-card.is-focused {
    transform: scale(1.05) translateY(-10px);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.feature-card.is-blurred {
    transform: scale(0.95);
    opacity: 0.8;
    filter: blur(1.5px);
    pointer-events: none;
}

.cf-global-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: transparent;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 997;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.cf-global-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
    /* allows the overlay to catch clicks to unfocus if we want to add that later */
}

.card-visual {
    height: 210px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-bg-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
}

.feature-card.is-focused .card-bg-image {
    transform: scale(1.05);
}

/* CSS Mockup for Card 1 (Fluxo de Caixa) */
.cf-chart-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
}

.cf-chart-mockup {
    width: 100%;
    height: 186px;
    box-sizing: border-box;
    background: transparent;
    border: none;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: none;
    position: relative;
}

.cf-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.cf-title-val {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cf-label {
    font-family: var(--font-poppins), sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cf-value-wrap {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-top: -6px;
}

.cf-currency {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-poppins), sans-serif;
}

.cf-value {
    font-family: var(--font-poppins), sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.cf-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 2px;
}

.cf-toggle-btn {
    padding: 3px 8px;
    font-size: 0.6rem;
    font-family: var(--font-poppins), sans-serif;
    color: rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    cursor: default;
    transition: all 0.3s ease;
}

.cf-toggle-btn.active {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-weight: 500;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.cf-graph-container {
    position: relative;
    width: 100%;
    flex: 1;
    margin-top: 8px;
}

.cf-graph-container svg {
    position: absolute;
    bottom: 20px;
    left: 35px;
    width: calc(100% - 35px);
    height: calc(100% - 20px);
    overflow: visible;
}

.cf-line {
    filter: drop-shadow(0 -4px 10px rgba(193, 131, 251, 0.5));
}

.cf-y-axis {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.25);
    font-family: var(--font-poppins), sans-serif;
}

.cf-x-axis {
    position: absolute;
    bottom: 0;
    left: 35px;
    right: 0;
    display: flex;
    justify-content: space-between;
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.25);
    font-family: var(--font-poppins), sans-serif;
}

.cv-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.cv-label {
    font-family: var(--font-poppins), sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

.cv-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 14px;
    font-family: var(--font-poppins), sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
}

.cv-disabled {
    background: transparent;
}

.cv-skeleton {
    width: 50px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.cv-chevron {
    width: 6px;
    height: 6px;
    border-right: 2px solid rgba(255, 255, 255, 0.4);
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    transform: rotate(45deg);
    display: inline-block;
    margin-bottom: 2px;
}

.cv-tag {
    background: rgba(193, 131, 251, 0.15);
    padding: 8px 12px;
    border-radius: 6px;
    font-family: var(--font-poppins), sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: #c183fb;
    border: 1px solid rgba(193, 131, 251, 0.3);
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.cv-tag-muted {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* ── Separador visual entre ilustração e conteúdo ── */
.card-content {
    flex: 1;
    padding: 24px 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0;
    position: relative;
}

.card-content-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-content h3 {
    font-family: var(--font-poppins), sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.3px;
    color: #ffffff;
}

.card-content p {
    font-size: 0.82rem;
    line-height: 1.55;
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

/* ── Footer dot indicators ── */
.card-footer-indicator {
    display: flex;
    gap: 6px;
    align-items: center;
    padding-top: 16px;
}

.cfi-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
}

.cfi-dot--active {
    width: 20px;
    border-radius: 100px;
    background: rgba(193, 131, 251, 0.6);
}

.card-dot {
    display: none;
}


/* CSS Mockup for Card 3 (Identificação de Lançamentos) */
.id-lan-mockup {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    width: 100%;
}

.il-form-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    height: 186px;
    box-sizing: border-box;
    background: transparent;
    border: none;
    padding: 16px;
    border-radius: 16px;
    position: relative;
    box-shadow: none;
    justify-content: center;
}

.il-input-row {
    display: flex;
    gap: 12px;
}

.il-input-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 14px;
    font-family: var(--font-poppins), sans-serif;
    font-size: 0.75rem;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.il-flex-1 {
    flex: 1;
}

.il-flex-2 {
    flex: 1.5;
}

.il-check-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.15);
}

.il-check-btn svg {
    width: 18px;
    height: 18px;
}

/* Responsiveness for new block */
@media (max-width: 992px) {
    .cards-features-section {
        padding: 40px 5vw 80px;
    }

    .cards-features-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }

    .cards-features-headline {
        font-size: 2rem;
    }

    .cards-features-subheadline {
        font-size: 0.95rem;
        max-width: 100%;
    }

    /* Mobile Focus Logic */
    .feature-card {
        transform: scale(0.85);
        opacity: 0.75;
    }

    .feature-card.is-focused {
        transform: scale(1);
        opacity: 1;
        /* No translateY on mobile so it stays properly centered */
    }

    .feature-card.is-blurred {
        transform: scale(0.82);
        opacity: 0.75;
        filter: blur(1.5px);
    }
}

/* ===================================
   DEEP DIVE MODAL — STRIPE WHITE THEME
   =================================== */
#card-modal.has-custom-layout {
    --modal-bg: #ffffff;
    padding: 0;
    max-width: 860px;
    border: 1px solid #e3e8ee;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.08);
}

#card-modal.has-custom-layout::after {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}

#card-modal.has-custom-layout::before {
    display: none;
}

#card-modal.has-custom-layout .modal-close {
    top: 20px;
    right: 20px;
    background: #f6f9fc;
    border: 1px solid #e3e8ee;
    color: #697386;
    box-shadow: none;
    z-index: 100;
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
}

#card-modal.has-custom-layout .modal-close:hover {
    background: #edf0f4;
    color: #1a1f36;
}

/* ── Container ── */
.dd-container {
    font-family: var(--font-poppins), -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a1f36;
}

/* ── Header ── */
.dd-header {
    text-align: left;
    padding: 48px 48px 36px;
    background: #fff;
    border-bottom: 1px solid #e3e8ee;
}

.dd-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: #1a1f36;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.dd-header p {
    font-size: 0.95rem;
    color: #697386;
    max-width: 520px;
    margin: 0;
    font-weight: 400;
    line-height: 1.5;
}

/* ── Blocks ── */
.dd-block {
    display: flex;
    align-items: center;
    padding: 48px;
    gap: 48px;
    border-bottom: 1px solid #e3e8ee;
}

.dd-block:last-of-type {
    border-bottom: none;
}

.dd-block.reverse {
    flex-direction: row-reverse;
    background: #f6f9fc;
}

.dd-text {
    flex: 1;
}

.dd-step {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #635bff;
    margin-bottom: 10px;
    background: rgba(99, 91, 255, 0.08);
    padding: 3px 10px;
    border-radius: 20px;
}

.dd-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1f36;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.dd-text p {
    font-size: 0.88rem;
    line-height: 1.65;
    color: #697386;
    margin: 0;
}

.dd-visual {
    flex: 1.1;
    display: flex;
    justify-content: center;
}

/* ══════════════════════════════════════
   WHATSAPP REALISTA
   ══════════════════════════════════════ */
.dd-mockup-whatsapp-clean {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: transparent;
    padding: 10px 0;
}

.dd-bot-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
}

.dd-bot-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.dd-bot-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dd-mockup-whatsapp-clean .dd-msg {
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.85rem;
    line-height: 1.4;
    max-width: 80%;
    position: relative;
}

.dd-mockup-whatsapp-clean .dd-msg-time {
    font-size: 0.7rem;
    color: #8696a0;
    text-align: right;
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
}

.dd-mockup-whatsapp-clean .dd-msg.user {
    background: #d9fdd3;
    color: #111b21;
    align-self: flex-end;
    border-top-right-radius: 4px;
    font-weight: 400;
    box-shadow: none;
}

.dd-mockup-whatsapp-clean .dd-msg.bot {
    background: #ffffff;
    color: #111b21;
    align-self: flex-start;
    border-top-left-radius: 4px;
    border: none;
    box-shadow: none;
}

.dd-mockup-whatsapp-clean .dd-msg-author {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    color: #1a1f36;
    margin-bottom: 8px;
}

/* ══════════════════════════════════════
   GOOGLE CALENDAR REALISTA
   ══════════════════════════════════════ */
.dd-mockup-calendar {
    width: 100%;
    max-width: 360px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #dadce0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10), 0 1px 3px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.dd-gcal-topbar {
    background: #fff;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #dadce0;
}

.dd-gcal-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dd-gcal-logo svg {
    flex-shrink: 0;
}

.dd-gcal-logo span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #3c4043;
}

.dd-gcal-topbar-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dd-gcal-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #1a73e8;
    font-size: 0.65rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dd-gcal-month-bar {
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #dadce0;
}

.dd-gcal-month-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: #3c4043;
}

.dd-gcal-nav {
    display: flex;
    gap: 4px;
}

.dd-gcal-nav-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5f6368;
    transition: background 0.15s;
}

.dd-gcal-nav-btn:hover {
    background: #f1f3f4;
}

.dd-gcal-week-row {
    display: grid;
    grid-template-columns: 50px repeat(5, 1fr);
    border-bottom: 1px solid #dadce0;
}

.dd-gcal-day-hdr {
    text-align: center;
    padding: 8px 4px;
    border-left: 1px solid #dadce0;
}

.dd-gcal-day-hdr:first-child {
    border-left: none;
}

.dd-gcal-day-name {
    display: block;
    font-size: 0.6rem;
    font-weight: 500;
    color: #70757a;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.dd-gcal-day-num {
    display: flex;
    width: 26px;
    height: 26px;
    margin: 2px auto 0;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 500;
    color: #3c4043;
}

.dd-gcal-day-hdr.today .dd-gcal-day-num {
    background: #1a73e8;
    color: #fff;
}

.dd-gcal-day-hdr.today .dd-gcal-day-name {
    color: #1a73e8;
}

.dd-gcal-corner {
    padding: 8px 4px;
}

/* Timeline */
.dd-gcal-timeline {
    display: grid;
    grid-template-columns: 50px 1fr;
    position: relative;
}

.dd-gcal-time-col {
    display: flex;
    flex-direction: column;
}

.dd-gcal-time-slot {
    height: 48px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding-right: 8px;
    font-size: 0.62rem;
    color: #70757a;
    font-weight: 400;
    border-top: 1px solid #dadce0;
    position: relative;
}

.dd-gcal-events-col {
    position: relative;
    border-left: 1px solid #dadce0;
}

.dd-gcal-hour-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: #dadce0;
}

.dd-gcal-event {
    position: absolute;
    left: 4px;
    right: 4px;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 0.72rem;
    line-height: 1.3;
    overflow: hidden;
    cursor: default;
}

.dd-gcal-event-title {
    font-weight: 500;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dd-gcal-event-time {
    font-size: 0.62rem;
    opacity: 0.85;
}

.dd-gcal-ev-blue {
    background: #d2e3fc;
    color: #1a73e8;
    border-left: 3px solid #1a73e8;
}

.dd-gcal-ev-green {
    background: #ceead6;
    color: #137333;
    border-left: 3px solid #137333;
}

.dd-gcal-ev-purple {
    background: #e8d0f5;
    color: #7627bb;
    border-left: 3px solid #7627bb;
}

.dd-gcal-ev-red {
    background: #fce8e6;
    color: #c5221f;
    border-left: 3px solid #c5221f;
}

.dd-gcal-sync-badge {
    margin: 12px 16px;
    padding: 8px 12px;
    background: #e8f5e9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: #137333;
    font-weight: 500;
}

/* ══════════════════════════════════════
   CARD / REPORT / PUBLIC MOCKUPS (white)
   ══════════════════════════════════════ */
.dd-mockup-card,
.dd-mockup-report,
.dd-mockup-public {
    width: 100%;
    max-width: 360px;
    background: #fff;
    border: 1px solid #e3e8ee;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.dd-mockup-card {
    padding: 24px;
}

.dd-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1f36;
    margin-bottom: 16px;
    border-bottom: 1px solid #e3e8ee;
    padding-bottom: 14px;
}

.dd-card-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dd-card-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #3c4257;
    background: #f6f9fc;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #e3e8ee;
}

.dd-mockup-report {
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.dd-pdf-icon {
    width: 44px;
    height: 44px;
    background: rgba(99, 91, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dd-mockup-report .dd-msg.bot {
    background: #f6f9fc;
    color: #3c4257;
    border: 1px solid #e3e8ee;
    box-shadow: none;
}

.dd-mockup-public {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dd-link-btn {
    background: #f6f9fc;
    border: 1px solid #e3e8ee;
    padding: 14px;
    border-radius: 8px;
    text-align: center;
    font-size: 0.85rem;
    color: #635bff;
    font-family: 'SF Mono', monospace;
}

.dd-notification {
    background: #f6f9fc;
    padding: 14px;
    border-radius: 8px;
    border-left: 3px solid #635bff;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.dd-notification strong {
    display: block;
    font-size: 0.82rem;
    color: #1a1f36;
    margin-bottom: 2px;
}

.dd-notification span {
    font-size: 0.78rem;
    color: #697386;
}

/* ── Footer CTA ── */
.dd-footer {
    padding: 32px 48px;
    text-align: center;
    border-top: 1px solid #e3e8ee;
    background: #f6f9fc;
    border-radius: 0 0 24px 24px;
}

.dd-cta {
    background: #635bff;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(99, 91, 255, 0.25);
}

.dd-cta:hover {
    background: #5146e6;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(99, 91, 255, 0.35);
}

@media (max-width: 768px) {

    .dd-block,
    .dd-block.reverse {
        flex-direction: column;
        padding: 32px 20px;
        gap: 28px;
    }

    .dd-header {
        padding: 32px 20px 24px;
    }

    .dd-footer {
        padding: 24px 20px;
    }
}

/* ======================================
   BLOCO 9 — CONTA COMPARTILHADA
   ====================================== */

.btn-dark-outline {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--font-poppins), sans-serif;
    color: #1a1a2e;
    background-color: transparent;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #1a1a2e;
    cursor: pointer;
}

.btn-dark-outline:hover {
    background-color: rgba(26, 26, 46, 0.05);
    transform: translateY(-2px);
}

/* Orbit wrapper para a ilustração de conta compartilhada */
.sa-orbit-wrapper {
    position: relative;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    border-radius: 50%;
    border: 1px dashed rgba(26, 26, 46, 0.08);
    transform: translateX(-29px);
}

#sa-neural-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.sa-center-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(245, 240, 235, 0.95);
    border: 1px solid rgba(26, 26, 46, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.sa-hub-img {
    width: 38px;
    height: auto;
    opacity: 0.8;
}

.sa-orbit-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140px;
    height: 0;
    transform-origin: 0 50%;
    transform: translateY(-50%) rotate(var(--sa-angle));
    z-index: 1;
}

.sa-orbit-card {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(calc(-1 * var(--sa-angle)));
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(26, 26, 46, 0.1);
    white-space: nowrap;
    color: #1a1a2e;
    font-family: var(--font-poppins), -apple-system, sans-serif;
    animation: sa-card-float 4s ease-in-out infinite;
}

.sa-orbit-item:nth-child(3) .sa-orbit-card {
    animation-delay: 0s;
    animation-duration: 3.8s;
}

.sa-orbit-item:nth-child(4) .sa-orbit-card {
    animation-delay: -1.2s;
    animation-duration: 4.3s;
}

.sa-orbit-item:nth-child(5) .sa-orbit-card {
    animation-delay: -2.5s;
    animation-duration: 3.6s;
}

.sa-orbit-item:nth-child(6) .sa-orbit-card {
    animation-delay: -0.7s;
    animation-duration: 4.8s;
}

.sa-orbit-item:nth-child(7) .sa-orbit-card {
    animation-delay: -3.1s;
    animation-duration: 4.1s;
}

@keyframes sa-card-float {

    0%,
    100% {
        transform: translate(-50%, -50%) rotate(calc(-1 * var(--sa-angle))) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) rotate(calc(-1 * var(--sa-angle))) translateY(-6px);
    }
}

.sa-orbit-card svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0.5;
    stroke: #1a1a2e;
}

.sa-card-text {
    font-size: 0.82rem;
    font-weight: 600;
    color: #1a1a2e;
    opacity: 0.8;
}

.sa-card-role {
    font-weight: 400;
    opacity: 0.5;
    display: block;
    font-size: 0.72rem;
}

/* CARDS MINIMALISTAS - CONTA COMPARTILHADA */
.sa-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.sa-grid-card {
    background: #EDE8E3;
    border-radius: 20px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.07);
}

.sa-card-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0;
}

.sa-grid-icon {
    margin-bottom: 12px;
    opacity: 0.9;
    flex-shrink: 0;
}

.sa-grid-title {
    font-family: var(--font-poppins), -apple-system, sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.sa-grid-desc {
    font-family: var(--font-poppins), -apple-system, sans-serif;
    font-size: 0.85rem;
    line-height: 1.35;
    color: #1a1a2e;
    opacity: 0.65;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .btn-dark-outline {
        width: 100%;
        max-width: 220px;
        padding: 10px 24px;
        font-size: 0.9rem;
        border-radius: 12px;
    }

    .sa-orbit-wrapper {
        max-width: 340px;
        margin-top: 20px;
        transform: none;
    }

    .sa-orbit-item {
        width: 130px;
    }

    .sa-orbit-card {
        padding: 7px 12px;
        gap: 6px;
        border-radius: 10px;
    }

    .sa-orbit-card svg {
        width: 14px;
        height: 14px;
    }

    .sa-card-text {
        font-size: 0.72rem;
    }

    .sa-center-hub {
        width: 55px;
        height: 55px;
    }

    .sa-hub-img {
        width: 30px;
    }

    .sa-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 32px;
    }

    .sa-grid-card {
        padding: 16px 20px;
        border-radius: 16px;
    }

    .sa-grid-title {
        font-size: 1rem;
        margin-bottom: 0;
        line-height: 1.2;
    }

    .sa-card-header {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
    }

    .sa-grid-icon {
        margin-bottom: 0;
    }
}

/* ======================================
   BLOCO 10 — GERENTE DE PROJETOS
   ====================================== */

.gp-section {
    padding-top: 40px;
    padding-bottom: 120px;
}

.gp-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gp-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
}

.gp-header h2 {
    font-size: 2.8rem;
    color: #1a1f36;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
}

.gp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    margin-bottom: 60px;
    position: relative;
}

/* Conectores / Linhas de rede sutis */
.gp-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(193, 131, 251, 0.3), transparent);
    z-index: 0;
    pointer-events: none;
}

.gp-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(227, 232, 238, 0.6);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

.gp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(193, 131, 251, 0.15), 0 4px 10px rgba(0, 0, 0, 0.03);
    border-color: rgba(193, 131, 251, 0.3);
}

.gp-card-content {
    padding: 36px 30px;
    flex-grow: 1;
}

.gp-icon-wrapper {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(193, 131, 251, 0.15) 0%, rgba(241, 115, 184, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #c183fb;
    position: relative;
}

.gp-icon-secondary {
    position: absolute;
    bottom: 8px;
    right: 8px;
    color: #e27bb7;
    opacity: 0.8;
}

.gp-card h3 {
    font-size: 1.3rem;
    color: #1a1f36;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
}

.gp-subtitle {
    font-size: 0.9rem;
    color: #8792a2;
    font-weight: 400;
    display: block;
    margin-top: 4px;
}

.gp-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gp-bullets li {
    font-size: 0.95rem;
    color: #4a5568;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gp-bullets li svg {
    width: 16px;
    height: 16px;
    color: #c183fb;
    flex-shrink: 0;
}

/* Glassmorphism Mockups Overlay */
.gp-mockup {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 1);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.03);
    padding: 24px;
    margin-top: auto;
    position: relative;
}

.gp-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(193, 131, 251, 0.5), transparent);
}

/* Mockup Chat / Atas */
.gp-mockup-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1f36;
}

.gp-meet-logo {
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.gp-task-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gp-task {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: #4a5568;
    background: #f8f9fa;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #e3e8ee;
    cursor: pointer;
}

.gp-checkbox {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid #c183fb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.gp-checkbox.checked {
    background: #c183fb;
}

.gp-checkbox svg {
    width: 12px;
    height: 12px;
}

.gp-task-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gp-tag-red {
    font-size: 0.7rem;
    font-weight: 600;
    color: #e53e3e;
    background: #fff5f5;
    padding: 2px 6px;
    border-radius: 4px;
    width: fit-content;
}

/* Mockup Audio / Insights */
.gp-audio-msg {
    background: #f0f2f5;
    border-radius: 12px 12px 12px 2px;
    padding: 12px;
    margin-bottom: 16px;
    position: relative;
}

.gp-audio-bubble {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    color: #8792a2;
}

.gp-audio-wave {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 16px;
}

.gp-audio-wave span {
    width: 3px;
    background: #c183fb;
    border-radius: 2px;
    height: 4px;
    animation: wave 1.5s infinite ease-in-out;
}

.gp-audio-wave span:nth-child(2) {
    height: 8px;
    animation-delay: 0.1s;
}

.gp-audio-wave span:nth-child(3) {
    height: 12px;
    animation-delay: 0.2s;
}

.gp-audio-wave span:nth-child(4) {
    height: 6px;
    animation-delay: 0.3s;
}

.gp-audio-wave span:nth-child(5) {
    height: 10px;
    animation-delay: 0.4s;
}

.gp-audio-wave span:nth-child(6) {
    height: 14px;
    animation-delay: 0.5s;
}

.gp-audio-wave span:nth-child(7) {
    height: 8px;
    animation-delay: 0.6s;
}

.gp-audio-wave span:nth-child(8) {
    height: 12px;
    animation-delay: 0.7s;
}

.gp-audio-wave span:nth-child(9) {
    height: 6px;
    animation-delay: 0.8s;
}

.gp-audio-wave span:nth-child(10) {
    height: 10px;
    animation-delay: 0.9s;
}

.gp-audio-wave span:nth-child(11) {
    height: 14px;
    animation-delay: 1.0s;
}

.gp-audio-wave span:nth-child(12) {
    height: 6px;
    animation-delay: 1.1s;
}

@keyframes wave {

    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(0.4);
    }
}

.gp-audio-time {
    font-size: 0.7rem;
    font-weight: 500;
}

.gp-audio-transcription {
    font-size: 0.85rem;
    color: #4a5568;
    font-style: italic;
    display: block;
}

.gp-ai-reply {
    background: #fff;
    border: 1px solid #e3e8ee;
    border-radius: 12px 12px 2px 12px;
    padding: 14px;
}

.gp-reply-content {
    font-size: 0.85rem;
    color: #1a1f36;
    margin-bottom: 10px;
}

.gp-reply-content ul {
    margin: 4px 0 0 16px;
    padding: 0;
    color: #4a5568;
}

.gp-tag-folder {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #2b6cb0;
    background: #ebf8ff;
    padding: 4px 8px;
    border-radius: 6px;
}

/* Mockup WhatsApp Web / Gestão */
.gp-wapp-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.gp-wapp-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #c183fb, #e27bb7);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
}

.gp-wapp-info {
    display: flex;
    flex-direction: column;
}

.gp-wapp-info strong {
    font-size: 0.85rem;
    color: #1a1f36;
    display: flex;
    align-items: center;
    gap: 4px;
}

.gp-tag-cob {
    font-size: 0.7rem;
    color: #dd6b20;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
}

.gp-dot-orange {
    width: 6px;
    height: 6px;
    background: #dd6b20;
    border-radius: 50%;
}

.gp-wapp-bubble {
    background: #d9fdd3;
    color: #1a1f36;
    padding: 12px 14px;
    border-radius: 0 12px 12px 12px;
    font-size: 0.85rem;
    line-height: 1.4;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.gp-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.gp-wapp-icon-btn {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.gp-wapp-icon-btn:hover {
    transform: scale(1.1) rotate(5deg);
}

@media (max-width: 992px) {
    .gp-grid {
        grid-template-columns: 1fr;
    }

    .gp-grid::before {
        display: none;
    }

    .gp-header h2 {
        font-size: 2.2rem;
    }
}

/* ==========================================================================
   BLOCO PRODUTIVIDADE IMPLACÁVEL (BENTO GRID)
   ========================================================================== */
.productivity-section {
    background-color: #e27bb7;
    background-image: linear-gradient(to bottom, rgba(88, 28, 135, 0.4) 0%, transparent 45%);
    padding: 120px 24px 100px;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.productivity-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.productivity-header {
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

.productivity-headline {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-top: 12px;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.productivity-subheadline {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 800px;
    font-weight: 400;
    opacity: 0.9;
}

.productivity-badge {
    background: #ffffff;
    color: #000000;
    border: none;
    box-shadow: none;
    mix-blend-mode: screen;
}

.productivity-badge svg {
    stroke: #000000;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 540px 540px;
    gap: 20px;
    width: 100%;
}

.bento-card {
    background: linear-gradient(to bottom, #f4f5f7 0%, #ffffff 55%);
    border: none;
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 20px 40px rgba(188, 133, 248, 0.15), 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(188, 133, 248, 0.2), 0 1px 3px rgba(0, 0, 0, 0.05);
}

.bento-expand-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background-color: #fdf2f8;
    /* Rosa bem suave */
    color: #e27bb7;
    /* Rosa da identidade */
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    padding: 0;
}

.bento-expand-btn:hover {
    background-color: #fce7f3;
    /* Hover um pouco mais forte */
    transform: scale(1.05);
    color: #db2777;
}

.bento-content {
    position: relative;
    z-index: 2;
    margin-bottom: auto;
    padding-right: 48px;
}

.bento-content h3 {
    font-size: 1.45rem;
    font-weight: 600;
    color: #1a1f36;
    margin-bottom: 12px;
    line-height: 1.2;
}

.bento-content p {
    font-size: 0.85rem;
    color: #4a5568;
    line-height: 1.5;
}

@media (min-width: 993px) {
    .bento-content p {
        max-width: 460px;
    }

    .bento-large .bento-content p {
        max-width: 380px;
    }
}

/* Card Sizes */
.bento-large {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.bento-large .bento-content {
    flex: 0 0 auto;
    margin-bottom: 0;
    padding-bottom: 4px;
}

.bento-top-right {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.bento-top-right .bento-visual {
    align-items: flex-end;
}

.bento-bottom-1 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.bento-bottom-2 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.bento-bottom-3 {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

/* Visual Layers */
.bento-visual {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.bento-large .bento-visual {
    position: relative;
    flex: 1;
    width: 100%;
    height: auto;
    border-radius: 0 0 12px 12px;
}

/* ==========================================
   CARD 1: ANIMATED DASHBOARD MOCKUP
   ========================================== */
.proj-anim-stage {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
}

.proj-scene {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(16px) scale(0.97);
    transition: opacity 0.5s ease, transform 0.5s ease, filter 0.5s ease;
    pointer-events: none;
    padding: 0;
}

.proj-scene.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.proj-scene.exiting {
    opacity: 0;
    transform: translateY(-12px) scale(0.97);
    filter: blur(2px);
    pointer-events: none;
    transition: opacity 0.45s ease, transform 0.45s ease, filter 0.45s ease;
}

/* --- Scene 1: Form --- */
.proj-form {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    padding: 20px;
    width: 100%;
    max-width: 380px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

/* Floating variant - no background box */
.proj-form-floating {
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 8px;
}

.proj-form-floating .proj-form-head {
    border-bottom: none;
    padding-bottom: 6px;
}

.proj-form-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f1f1;
}

.proj-form-icon-wrap {
    width: 32px;
    height: 32px;
    background: #ede9fe;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.proj-form-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1f36;
}

.proj-form-sub {
    font-size: 0.65rem;
    color: #9ca3af;
}

.proj-form-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.proj-form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.proj-form-group label {
    font-size: 0.6rem;
    font-weight: 700;
    color: #6b7280;
    letter-spacing: 0.05em;
}

.proj-form-input {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 0.75rem;
    color: #1a1f36;
    min-height: 32px;
    display: flex;
    align-items: center;
}

.proj-form-filled {
    opacity: 0;
}

.proj-scene.active .proj-form-filled {
    animation: proj-fade-in 0.4s ease forwards;
}

.proj-scene.active .proj-form-row .proj-half:last-child .proj-form-filled {
    animation-delay: 2.6s;
}

/* Date field swap animation */
.proj-date-field {
    position: relative;
    overflow: hidden;
}

.proj-date-placeholder {
    color: #9ca3af;
    font-size: 0.7rem;
}

.proj-date-value {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    color: #1a1f36;
    font-size: 0.75rem;
}

.proj-scene.active .proj-date-placeholder {
    animation: proj-cat-out 0.3s ease 2.6s forwards;
}

.proj-scene.active .proj-date-value {
    animation: proj-cat-in 0.3s ease 2.6s forwards;
}

.proj-cat-field {
    position: relative;
    overflow: hidden;
}

.proj-cat-placeholder {
    color: #9ca3af;
    font-size: 0.7rem;
}

.proj-cat-value {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    color: #1a1f36;
    font-size: 0.75rem;
}

.proj-scene.active .proj-cat-placeholder {
    animation: proj-cat-out 0.3s ease 2.2s forwards;
}

.proj-scene.active .proj-cat-value {
    animation: proj-cat-in 0.3s ease 2.2s forwards;
}

@keyframes proj-cat-out {
    to {
        opacity: 0;
        transform: translateY(-6px);
    }
}

@keyframes proj-cat-in {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}

.proj-form-row {
    display: flex;
    gap: 8px;
}

.proj-half {
    flex: 1;
}

.proj-typing {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    max-width: 0;
    border-right: 2px solid #6366f1;
}

.proj-scene.active .proj-typing {
    animation: proj-type 1.8s steps(22) 0.8s forwards, proj-blink 0.6s step-end infinite;
}

@keyframes proj-type {
    from {
        max-width: 0;
    }

    to {
        max-width: 220px;
    }
}

@keyframes proj-blink {
    50% {
        border-color: transparent;
    }
}

@keyframes proj-fade-in {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.proj-form-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 4px;
    position: relative;
}

.proj-save-btn {
    background: #ede9fe;
    color: #6366f1;
    border: none;
    border-radius: 10px;
    padding: 8px 16px;
    font-size: 0.72rem;
    font-weight: 600;
    cursor: pointer;
}

.proj-scene.active .proj-save-btn {
    animation: proj-btn-click 0.25s ease 3.9s;
}

@keyframes proj-btn-click {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.93);
        background: #ddd6fe;
    }

    100% {
        transform: scale(1);
    }
}

/* Mouse cursor — pousa sobre o botão Salvar */
.proj-cursor {
    position: absolute;
    bottom: -4px;
    right: 10px;
    opacity: 0;
    z-index: 10;
    pointer-events: none;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.15));
}

.proj-scene.active .proj-cursor {
    animation: proj-cursor-move 1.8s ease 2.8s forwards;
}

@keyframes proj-cursor-move {
    0% {
        opacity: 0;
        transform: translate(60px, 40px);
    }

    15% {
        opacity: 1;
        transform: translate(60px, 40px);
    }

    60% {
        opacity: 1;
        transform: translate(0px, 0px);
    }

    68% {
        opacity: 1;
        transform: translate(0px, -2px);
    }

    73% {
        opacity: 1;
        transform: translate(0px, 0px);
    }

    90% {
        opacity: 1;
        transform: translate(0px, 0px);
    }

    100% {
        opacity: 0;
        transform: translate(0px, 0px);
    }
}

/* --- Scene 2: Dashboard --- */
.proj-scene-dash {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 0;
    width: 100%;
}

.proj-dash-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.proj-dash-top strong {
    font-size: 0.9rem;
    color: #1a1f36;
}

.proj-new-badge {
    background: #ede9fe;
    color: #6366f1;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 8px;
}

.proj-dash-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.proj-card-mini {
    background: #fff;
    border-radius: 14px;
    padding: 14px;
    border: 1px solid #f1f1f1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    opacity: 0;
    transform: translateY(8px);
}

.proj-scene.active .proj-card-new {
    animation: proj-fade-in 0.5s ease 0.3s forwards;
}

.proj-scene.active .proj-card-delayed {
    animation: proj-fade-in 0.5s ease 0.6s forwards;
}

.proj-cm-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.proj-cm-icon {
    width: 28px;
    height: 28px;
    background: #ede9fe;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.proj-cm-name {
    font-size: 0.72rem;
    font-weight: 700;
    color: #1a1f36;
}

.proj-cm-cat {
    font-size: 0.58rem;
    color: #9ca3af;
}

.proj-cm-prog {
    display: flex;
    justify-content: space-between;
    font-size: 0.6rem;
    color: #6b7280;
    font-weight: 600;
    margin-bottom: 4px;
}

.proj-cm-bar {
    height: 5px;
    background: #f3f4f6;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 10px;
}

.proj-cm-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #6366f1, #a78bfa);
    border-radius: 3px;
    width: 0%;
    transition: width 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.proj-cm-stats {
    display: flex;
    gap: 4px;
}

.pms {
    flex: 1;
    text-align: center;
    padding: 4px 2px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.pms small {
    font-size: 0.45rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pms-pend {
    background: #f9fafb;
    color: #374151;
}

.pms-pend small {
    color: #6b7280;
}

.pms-do {
    background: #ede9fe;
    color: #4f46e5;
}

.pms-do small {
    color: #6366f1;
}

.pms-late {
    background: #fef2f2;
    color: #ef4444;
}

.pms-late small {
    color: #ef4444;
}

.pms-ok {
    background: #ecfdf5;
    color: #10b981;
}

.pms-ok small {
    color: #10b981;
}

/* Alert notification */
.proj-alert-notif {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    color: #4b5563;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 8px;
    text-align: center;
    opacity: 0;
    transform: translateY(-6px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.proj-alert-icon {
    color: #ef4444;
    font-size: 0.8rem;
}

.proj-scene.active .proj-alert-notif {
    animation: proj-alert-slide 0.5s ease 2s forwards;
}

@keyframes proj-alert-slide {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Scene 3: Chart --- */
.proj-scene-chart {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 20px 24px;
}

.proj-chart-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a1f36;
}

.proj-chart-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.proj-chart-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.proj-chart-label {
    font-size: 0.7rem;
    color: #6b7280;
    font-weight: 500;
    width: 70px;
    text-align: right;
    flex-shrink: 0;
}

.proj-chart-track {
    flex: 1;
    height: 22px;
    background: #f3f4f6;
    border-radius: 6px;
    overflow: hidden;
}

.proj-chart-fill {
    height: 100%;
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding-left: 8px;
    font-size: 0.6rem;
    font-weight: 700;
    color: white;
    width: 0%;
    transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.proj-chart-num {
    font-size: 0.58rem;
    font-weight: 700;
    white-space: nowrap;
}

/* Gradiente roxo→rosa das tags */
.pcf-1,
.pcf-2,
.pcf-3,
.pcf-4 {
    background: linear-gradient(90deg, #bc85f8, #e27bb7);
}

/* Barras agora controladas por JS — removidas as regras .active .pcf */

/* Responsividade para expandir animação de projetos no desktop */
@media (min-width: 993px) {
    .proj-anim-stage {
        margin-top: 24px;
    }

    .proj-form {
        max-width: 440px;
        padding: 24px;
        border-radius: 20px;
    }

    .proj-form-head {
        margin-bottom: 20px;
        padding-bottom: 16px;
    }

    .proj-form-icon-wrap {
        width: 36px;
        height: 36px;
    }

    .proj-form-icon-wrap svg {
        width: 18px;
        height: 18px;
    }

    .proj-form-title {
        font-size: 1rem;
    }

    .proj-form-sub {
        font-size: 0.75rem;
    }

    .proj-form-body {
        gap: 14px;
    }

    .proj-form-group label {
        font-size: 0.65rem;
    }

    .proj-form-input {
        min-height: 40px;
        font-size: 0.8rem;
        padding: 8px 12px;
    }

    .proj-save-btn {
        padding: 10px 18px;
        font-size: 0.8rem;
    }

    .proj-scene-dash {
        padding: 30px 0;
        gap: 20px;
        justify-content: center;
        width: 100%;
    }

    .proj-dash-top {
        margin-bottom: 12px;
    }

    .proj-dash-top strong {
        font-size: 1.05rem;
    }

    .proj-new-badge {
        font-size: 0.75rem;
        padding: 6px 10px;
    }

    .proj-dash-grid {
        gap: 20px;
    }

    .proj-card-mini {
        padding: 20px;
        border-radius: 16px;
    }

    .proj-cm-head {
        margin-bottom: 14px;
        gap: 10px;
    }

    .proj-cm-icon {
        width: 32px;
        height: 32px;
    }

    .proj-cm-icon svg {
        width: 16px;
        height: 16px;
    }

    .proj-cm-name {
        font-size: 0.85rem;
    }

    .proj-cm-cat {
        font-size: 0.7rem;
    }

    .proj-cm-prog {
        font-size: 0.7rem;
        margin-bottom: 8px;
    }

    .proj-cm-bar {
        height: 6px;
        margin-bottom: 16px;
    }

    .proj-cm-stats {
        gap: 6px;
    }

    .pms {
        padding: 6px 4px;
        font-size: 0.8rem;
    }

    .pms small {
        font-size: 0.5rem;
    }

    .proj-scene-chart {
        padding: 30px 40px;
        gap: 20px;
        justify-content: center;
    }

    .proj-chart-title {
        font-size: 1rem;
    }

    .proj-chart-label {
        width: 100px;
        font-size: 0.8rem;
    }

    .proj-chart-track {
        height: 28px;
    }

    .proj-chart-fill {
        font-size: 0.7rem;
        padding-left: 10px;
    }

    .proj-chart-num {
        font-size: 0.7rem;
    }
}

/* Card 2: Task Animation Stage (3 Cenas) */
.task-anim-stage {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 240px;
}

.task-scene {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(16px) scale(0.97);
    transition: opacity 0.5s ease, transform 0.5s ease, filter 0.5s ease;
    pointer-events: none;
    padding: 16px;
}

.task-scene.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.task-scene.exiting {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
    filter: blur(1px);
    pointer-events: none;
    transition: opacity 0.3s ease-out, transform 0.3s ease-out, filter 0.3s ease-out;
}

/* --- Cena 1: Áudio + Status Combo --- */
.task-audio-combo {
    width: 100%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: -14px;
}

/* Priority Picker (Cena 1 — mockup) */
.task-pri-picker {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
    opacity: 0;
}

.task-scene-audio.active .task-pri-picker {
    animation: task-fade-up 0.5s ease 0.9s forwards;
}

.task-pri-picker-label {
    font-size: 0.56rem;
    font-weight: 700;
    color: #6b7280;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 1px;
}

.task-pri-select-skel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 7px;
    padding: 3px 10px;
    margin-bottom: 2px;
}

.task-pri-skel-bar {
    height: 6px;
    width: 55%;
    background: #d1d5db;
    border-radius: 3px;
}

/* --- Options List com cursor --- */
.task-pri-opts-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: relative;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    margin-top: 2px;
}

/* Cursor fake — lado direito */
.tpo-cursor {
    position: absolute;
    right: 12px;
    left: auto;
    top: 0;
    pointer-events: none;
    z-index: 10;
    opacity: 0;
    transform-origin: top left;
    animation: tpo-cursor-move 6.5s ease-in-out infinite;
    animation-delay: 1.6s;
}

@keyframes tpo-cursor-move {
    0% {
        opacity: 0;
        transform: translateY(16px);
    }

    3% {
        opacity: 1;
        transform: translateY(16px);
    }

    22% {
        opacity: 1;
        transform: translateY(16px);
    }

    32% {
        opacity: 1;
        transform: translateY(41px);
    }

    52% {
        opacity: 1;
        transform: translateY(41px);
    }

    62% {
        opacity: 1;
        transform: translateY(78px);
    }

    85% {
        opacity: 1;
        transform: translateY(78px);
    }

    86% {
        opacity: 1;
        transform: translateY(78px) scale(0.7);
    }

    97% {
        opacity: 1;
        transform: translateY(78px) scale(0.7);
    }

    98% {
        opacity: 0;
        transform: translateY(78px) scale(0.7);
    }

    100% {
        opacity: 0;
        transform: translateY(16px);
    }
}

/* --- Buttons: gray by default, animate to color on cursor pass --- */
.tpo-card {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 5px;
    border: 1px solid transparent;
    font-size: 0.68rem;
    font-weight: 500;
    background: transparent;
    color: #4b5563;
    transition: background 0.3s ease, color 0.3s ease;
}

/* Cycle animations start after the picker fades in (delay 1.6s) */
.task-scene-audio.active .tpo-card-low {
    animation: tpo-low-cycle 6.5s ease-in-out infinite 1.6s;
}

.task-scene-audio.active .tpo-card-high {
    animation: tpo-high-cycle 6.5s ease-in-out infinite 1.6s;
}

.task-scene-audio.active .tpo-card-urgent {
    animation: tpo-urgent-cycle 6.5s ease-in-out infinite 1.6s;
}

@keyframes tpo-low-cycle {

    0%,
    2% {
        background: transparent;
        color: #4b5563;
        transform: scale(1);
    }

    5%,
    21% {
        background: #f0fdf4;
        color: #059669;
        transform: scale(1);
    }

    24%,
    100% {
        background: transparent;
        color: #4b5563;
        transform: scale(1);
    }
}

@keyframes tpo-high-cycle {

    0%,
    30% {
        background: transparent;
        color: #4b5563;
        transform: scale(1);
    }

    33%,
    51% {
        background: #fffbeb;
        color: #b45309;
        transform: scale(1);
    }

    54%,
    100% {
        background: transparent;
        color: #4b5563;
        transform: scale(1);
    }
}

@keyframes tpo-urgent-cycle {

    0%,
    60% {
        background: transparent;
        color: #4b5563;
        transform: scale(1);
    }

    63%,
    85% {
        background: #fef2f2;
        color: #dc2626;
        transform: scale(1);
    }

    86%,
    97% {
        background: #fef2f2;
        color: #dc2626;
        transform: scale(0.96);
    }

    /* Pressiona o botão */
    98%,
    100% {
        background: transparent;
        color: #4b5563;
        transform: scale(1);
    }
}

.tpo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    background: #d4d4d8;
}

/* Dots also cycle with cursor */
.task-scene-audio.active .tpo-card-low .tpo-dot {
    animation: tpo-dot-low-cycle 6.5s ease-in-out infinite 1.6s;
}

.task-scene-audio.active .tpo-card-high .tpo-dot {
    animation: tpo-dot-high-cycle 6.5s ease-in-out infinite 1.6s;
}

.task-scene-audio.active .tpo-card-urgent .tpo-dot {
    animation: tpo-dot-urgent-cycle 6.5s ease-in-out infinite 1.6s;
}

@keyframes tpo-dot-low-cycle {

    0%,
    2% {
        background: #d4d4d8;
    }

    5%,
    21% {
        background: #10b981;
    }

    24%,
    100% {
        background: #d4d4d8;
    }
}

@keyframes tpo-dot-high-cycle {

    0%,
    30% {
        background: #d4d4d8;
    }

    33%,
    51% {
        background: #f59e0b;
    }

    54%,
    100% {
        background: #d4d4d8;
    }
}

@keyframes tpo-dot-urgent-cycle {

    0%,
    60% {
        background: #d4d4d8;
    }

    63%,
    97% {
        background: #ef4444;
    }

    98%,
    100% {
        background: #d4d4d8;
    }
}

.task-audio-bubble {
    background: #f0f2f5;
    border-radius: 16px 16px 16px 4px;
    padding: 14px 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.task-audio-player {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.task-play-icon {
    flex-shrink: 0;
}

.task-wave-bars {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    height: 20px;
}

.task-wave-bars span {
    display: block;
    width: 3px;
    background: #c183fb;
    border-radius: 2px;
    height: 4px;
    animation: task-wave 1.4s infinite ease-in-out;
}

.task-wave-bars span:nth-child(1) {
    height: 6px;
}

.task-wave-bars span:nth-child(2) {
    height: 14px;
    animation-delay: 0.08s;
}

.task-wave-bars span:nth-child(3) {
    height: 10px;
    animation-delay: 0.16s;
}

.task-wave-bars span:nth-child(4) {
    height: 18px;
    animation-delay: 0.24s;
}

.task-wave-bars span:nth-child(5) {
    height: 8px;
    animation-delay: 0.32s;
}

.task-wave-bars span:nth-child(6) {
    height: 14px;
    animation-delay: 0.40s;
}

.task-wave-bars span:nth-child(7) {
    height: 6px;
    animation-delay: 0.48s;
}

.task-wave-bars span:nth-child(8) {
    height: 12px;
    animation-delay: 0.56s;
}

.task-wave-bars span:nth-child(9) {
    height: 16px;
    animation-delay: 0.64s;
}

.task-wave-bars span:nth-child(10) {
    height: 8px;
    animation-delay: 0.72s;
}

.task-wave-bars span:nth-child(11) {
    height: 10px;
    animation-delay: 0.80s;
}

.task-wave-bars span:nth-child(12) {
    height: 4px;
    animation-delay: 0.88s;
}

@keyframes task-wave {

    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(0.35);
    }
}

.task-audio-dur {
    font-size: 0.7rem;
    color: #6b7280;
    font-weight: 500;
    flex-shrink: 0;
}

.task-audio-transcript {
    font-size: 0.82rem;
    color: #4a5568;
    line-height: 1.4;
    margin: 0;
}

.task-scene-audio.active .task-audio-bubble {
    animation: task-bubble-in 0.6s ease forwards;
}

@keyframes task-bubble-in {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* --- Cena 2: Lista de Tarefas --- */
.task-list-mockup {
    width: 100%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: -14px;
}

.task-list-item {
    display: flex;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #f1f1f1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    opacity: 0;
    transform: translateY(8px);
}

.task-scene-list.active .task-item-new {
    animation: task-fade-up 0.5s ease 0.3s forwards;
}

.task-scene-list.active .task-item-done {
    animation: task-fade-up 0.5s ease 0.5s forwards;
}

@keyframes task-fade-up {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.task-list-border {
    width: 5px;
    flex-shrink: 0;
}

.tl-border-pending {
    background: #e5e7eb;
}

.tl-border-active {
    background: #10b981;
}

.tl-border-urgent {
    background: #ef4444;
}

/* Badge urgente na cena 2 */
.task-urgent-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 0.55rem;
    font-weight: 700;
    color: #ef4444;
    background: transparent;
    border: none;
    padding: 1px 0;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.task-list-meta-row {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.task-list-body {
    flex: 1;
    padding: 6px 10px;
}

.task-list-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.task-cb-empty {
    width: 16px;
    height: 16px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 1px;
}

.task-cb-checked {
    width: 16px;
    height: 16px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.task-list-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.task-list-info strong {
    font-size: 0.68rem;
    font-weight: 700;
    color: #1a1f36;
    line-height: 1.3;
}

.task-text-done {
    text-decoration: line-through;
    color: #9ca3af !important;
    font-weight: 500 !important;
}

.task-list-meta {
    font-size: 0.6rem;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 3px;
}

.task-list-divider {
    height: 1px;
    background: #f3f4f6;
    margin: 6px 0 3px;
}

.task-list-actions {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
}

.tla-edit {
    font-size: 0.65rem;
    color: #6b7280;
    font-weight: 500;
}

.tla-delete {
    font-size: 0.65rem;
    color: #ef4444;
    font-weight: 600;
}

.task-section-done-label,
.task-section-late-label,
.task-section-pending-label {
    font-size: 0.68rem;
    font-weight: 700;
    margin-top: 2px;
    opacity: 0;
}

.task-section-done-label {
    color: #10b981;
}

.task-section-late-label {
    color: #ef4444;
}

.task-section-pending-label {
    color: #9ca3af;
}

.task-scene-list.active .task-section-pending-label {
    animation: task-fade-up 0.4s ease 0.2s forwards;
}

.task-scene-list.active .task-section-done-label {
    animation: task-fade-up 0.4s ease 0.4s forwards;
}

/* Responsividade para animação de tarefas no desktop — apenas refinamentos sutis */
@media (min-width: 993px) {
    .task-list-mockup {
        max-width: 300px;
        gap: 6px;
    }

    .task-list-body {
        padding: 10px 12px;
    }

    .task-list-divider {
        margin: 10px 0 6px;
    }
}

/* --- Cena 3: Organização & Status / Prioridades --- */
.task-priority-mockup {
    width: 100%;
    max-width: 300px;
}

.task-pri-header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.65rem;
    font-weight: 700;
    color: #374151;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}

.task-pri-dot {
    width: 7px;
    height: 7px;
    background: #3b82f6;
    border-radius: 50%;
}

.task-pri-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.task-pri-top-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.task-pri-icon-wrap {
    width: 28px;
    height: 28px;
    background: #ecfdf5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.task-pri-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: #1a1f36;
}

.task-pri-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.task-pri-field label {
    font-size: 0.55rem;
    font-weight: 700;
    color: #6b7280;
    letter-spacing: 0.05em;
}

.task-pri-select {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 7px 10px;
    font-size: 0.72rem;
    color: #1a1f36;
    font-weight: 500;
}

.task-pri-options {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Dropdown visual: valor selecionado + lista aberta abaixo */
.task-pri-select-closed {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: 1px dashed #e5e7eb;
    background: #f9fafb;
    font-size: 0.72rem;
    color: #059669;
    font-weight: 600;
}

.task-pri-dropdown-open {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border: 1px solid #e5e7eb;
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 4px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.task-pri-opt {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    border: 1px solid transparent;
    opacity: 0;
    transform: translateX(-8px);
}

.task-scene-priority.active .tpo-low {
    animation: task-opt-in 0.4s ease 0.3s forwards;
}

.task-scene-priority.active .tpo-high {
    animation: task-opt-in 0.4s ease 0.5s forwards;
}

.task-scene-priority.active .tpo-urgent {
    animation: task-opt-in 0.4s ease 0.7s forwards, task-opt-pulse 2s ease 1.6s infinite;
}

@keyframes task-opt-in {
    from {
        opacity: 0;
        transform: translateX(-8px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes task-opt-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }

    50% {
        box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
    }
}

.tpo-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.tpo-ind-low {
    background: #10b981;
}

.tpo-ind-high {
    background: #f59e0b;
}

.tpo-ind-urgent {
    background: #ef4444;
}

.tpo-low {
    background: #f0fdf4;
    color: #059669;
    border-color: #bbf7d0;
}

.tpo-selected {
    background: #f0fdf4 !important;
    color: #059669 !important;
    border-color: #6ee7b7 !important;
    font-weight: 700 !important;
}

.tpo-high {
    background: #fffbeb;
    color: #b45309;
    border-color: #fde68a;
}

.tpo-urgent {
    background: #fef2f2;
    color: #dc2626;
    border-color: #fecaca;
}

/* Card 3: Delegation Scene – Assessor → Pessoa (Lembrete) */
.bento-del-scene {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 0 12px 16px;
}

/* Reminder notification bubble – white rounded */
.bento-del-reminder {
    background: #ffffff;
    border: 1px solid rgba(193, 131, 251, 0.4);
    border-radius: 16px;
    padding: 13px 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    animation: del-reminder-in 0.6s ease 0.2s both;
    white-space: nowrap;
    width: 80%;
    max-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

@keyframes del-reminder-in {
    from {
        opacity: 0;
        transform: translateY(6px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.bento-del-reminder-header {
    display: flex;
    align-items: center;
    gap: 6px;
}

.bento-del-reminder-header svg {
    flex-shrink: 0;
}

.bento-del-reminder-header span {
    font-size: 0.6rem;
    font-weight: 800;
    color: #c183fb;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.bento-del-reminder-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.bento-del-reminder-body strong {
    font-size: 0.8rem;
    font-weight: 800;
    color: #1a1f36;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 5px;
}

.bento-del-reminder-body .bento-del-reminder-time {
    font-size: 0.65rem;
    color: #6b7280;
    font-weight: 500;
}

/* Flow: Bot → WhatsApp → Person */
.bento-del-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
    max-width: 280px;
}

/* Assessor (bot) avatar – emits purple energy */
.bento-del-bot {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, #7c3aed, #c183fb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 18px rgba(124, 58, 237, 0.25);
    animation: del-bot-emit 3s linear infinite;
}

.bento-del-bot svg {
    width: 20px;
    height: 20px;
}

@keyframes del-bot-emit {

    0%,
    100% {
        box-shadow: 0 4px 18px rgba(124, 58, 237, 0.25);
    }

    0% {
        box-shadow: 0 4px 18px rgba(124, 58, 237, 0.25);
    }

    10% {
        box-shadow: 0 0 22px 7px rgba(193, 131, 251, 0.55);
    }

    28% {
        box-shadow: 0 4px 18px rgba(124, 58, 237, 0.25);
    }
}

/* Connector line */
.bento-del-connector {
    position: relative;
    flex: 1;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bento-del-conn-svg {
    width: 100%;
    height: 100%;
}

.bento-del-conn-flow {
    stroke-dasharray: 160;
    stroke-dashoffset: 160;
    animation: del-conn-dash 3s linear infinite;
}

@keyframes del-conn-dash {
    0% {
        stroke-dashoffset: 160;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    70% {
        stroke-dashoffset: 0;
        opacity: 1;
    }

    85% {
        stroke-dashoffset: 0;
        opacity: 0;
    }

    100% {
        stroke-dashoffset: 160;
        opacity: 0;
    }
}

/* WhatsApp icon badge – pulses green when energy passes */
.bento-del-whats-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.15);
    z-index: 6;
    animation: del-whats-pulse 3s linear infinite;
}

@keyframes del-whats-pulse {

    0%,
    28% {
        box-shadow: 0 2px 8px rgba(37, 211, 102, 0.15);
    }

    40% {
        box-shadow: 0 0 18px 6px rgba(37, 211, 102, 0.5);
    }

    56%,
    100% {
        box-shadow: 0 2px 8px rgba(37, 211, 102, 0.15);
    }
}

.bento-del-whats-icon svg {
    width: 14px;
    height: 14px;
}

/* Person avatar – glows green when energy arrives */
.bento-del-person {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border: 2px solid white;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    animation: del-person-glow 3s linear infinite;
}

@keyframes del-person-glow {

    0%,
    58% {
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        border-color: white;
    }

    70% {
        box-shadow: 0 0 20px 6px rgba(37, 211, 102, 0.45);
        border-color: rgba(37, 211, 102, 0.4);
    }

    86%,
    100% {
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        border-color: white;
    }
}

.bento-del-person svg {
    width: 20px;
    height: 20px;
}



/* Card 4: Meet e Ata Scene */
.bento-meet-scene {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 0 12px 16px;
}

/* Reminder notification bubble – white rounded */
.bento-meet-reminder {
    background: #ffffff;
    border: 1px solid rgba(193, 131, 251, 0.4);
    border-radius: 16px;
    padding: 13px 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    animation: del-reminder-in 0.6s ease 0.2s both;
    white-space: nowrap;
    width: 80%;
    max-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bento-meet-reminder-header {
    display: flex;
    align-items: center;
    gap: 6px;
}

.bento-meet-reminder-header svg {
    flex-shrink: 0;
}

.bento-meet-reminder-header span {
    font-size: 0.6rem;
    font-weight: 800;
    color: #c183fb;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.bento-meet-reminder-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.bento-meet-reminder-body strong {
    font-size: 0.8rem;
    font-weight: 800;
    color: #1a1f36;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 5px;
}

.bento-meet-reminder-body .bento-meet-reminder-time {
    font-size: 0.65rem;
    color: #6b7280;
    font-weight: 500;
}

/* Flow: Bot → Meet → Documento */
.bento-meet-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
    max-width: 280px;
}

/* Connector line */
.bento-meet-connector {
    position: relative;
    flex: 1;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bento-meet-conn-svg {
    width: 100%;
    height: 100%;
}

.bento-meet-conn-flow {
    stroke-dasharray: 160;
    stroke-dashoffset: 160;
    animation: meet-conn-dash 3s linear infinite;
}

@keyframes meet-conn-dash {
    0% {
        stroke-dashoffset: 160;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    70% {
        stroke-dashoffset: 0;
        opacity: 1;
    }

    85% {
        stroke-dashoffset: 0;
        opacity: 0;
    }

    100% {
        stroke-dashoffset: 160;
        opacity: 0;
    }
}

/* Meet icon badge – pulses blue when energy passes */
.bento-meet-icon-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(11, 87, 208, 0.15);
    z-index: 6;
    animation: meet-badge-pulse 3s linear infinite;
}

@keyframes meet-badge-pulse {

    0%,
    28% {
        box-shadow: 0 2px 8px rgba(11, 87, 208, 0.15);
    }

    40% {
        box-shadow: 0 0 18px 6px rgba(11, 87, 208, 0.4);
    }

    56%,
    100% {
        box-shadow: 0 2px 8px rgba(11, 87, 208, 0.15);
    }
}

/* Document avatar – glows blue/purple when energy arrives */
.bento-meet-doc {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border: 2px solid white;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    animation: meet-doc-glow 3s linear infinite;
}

@keyframes meet-doc-glow {

    0%,
    58% {
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        border-color: white;
    }

    70% {
        box-shadow: 0 0 20px 6px rgba(193, 131, 251, 0.4);
        border-color: rgba(193, 131, 251, 0.3);
    }

    86%,
    100% {
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        border-color: white;
    }
}

/* Card 5: Visual layout */
.bento-visual-5 {
    height: 60%;
}

.notes-mockup-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50px) scale(1.15);
}

.notes-audio-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-65%, -70%);
    width: 160px;
    min-height: 126px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 18px 14px;
    z-index: 1;
}

.notes-audio-player {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f9fafb;
    border-radius: 8px;
    padding: 10px 8px;
    margin-bottom: 14px;
}

.notes-play-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.notes-wave-bars {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
}

.notes-wave-bars span {
    display: inline-block;
    width: 2px;
    background: #c183fb;
    border-radius: 1px;
}

.notes-audio-dur {
    font-size: 10px;
    font-weight: 600;
    color: #6b7280;
}

.notes-audio-transcript {
    font-size: 10px;
    color: #4b5563;
    line-height: 1.45;
    margin: 0;
    text-align: center;
}

.notes-doc-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-65px, 15px);
    width: 150px;
    min-height: 103px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 14px;
    z-index: 3;
}

.notes-doc-head {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f3f4f6;
}

.notes-doc-title {
    font-size: 10px;
    font-weight: 600;
    color: #4b5563;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.notes-doc-body {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.notes-doc-line {
    height: 5px;
    background: #f3f4f6;
    border-radius: 3px;
}

.notes-ai-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(55px, 1px);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #c183fb;
    border: 1px solid rgba(193, 131, 251, 0.4);
    box-shadow: 0 0 16px 4px rgba(193, 131, 251, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    color: #ffffff;
}

.notes-connection-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(38px, -64px);
    z-index: 0;
}

/* Card 3: Delegate Illustration */
.bento-visual-3 {
    height: 60%;
}

.delegate-mockup-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50px) scale(1.15);
}

.delegate-setup-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-65%, -70%);
    width: 160px;
    min-height: 126px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 14px;
    z-index: 1;
}

.delegate-setup-head {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.delegate-setup-title {
    font-size: 10px;
    font-weight: 600;
    color: #4b5563;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.delegate-setup-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.delegate-setup-target {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f9fafb;
    padding: 6px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 500;
    color: #6b7280;
}

.dst-avatar {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
}

.delegate-setup-action {
    font-size: 10px;
    color: #4b5563;
    background: #f3f4f6;
    padding: 6px 8px;
    border-radius: 6px;
    font-weight: 500;
}

.delegate-action-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-65px, 15px);
    width: 150px;
    min-height: 103px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 14px;
    z-index: 3;
}

.delegate-action-head {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f3f4f6;
}

.delegate-action-title {
    font-size: 10px;
    font-weight: 600;
    color: #4b5563;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.delegate-action-body {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.delegate-action-bubble {
    background: #f3f4f6;
    padding: 8px;
    border-radius: 8px 8px 8px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dab-line {
    height: 5px;
    background: #e5e7eb;
    border-radius: 3px;
}

.dab-meta {
    font-size: 8px;
    color: #9ca3af;
    align-self: flex-end;
    margin-top: 2px;
    font-weight: 500;
}

.delegate-ai-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(55px, 1px);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #c183fb;
    border: 1px solid rgba(193, 131, 251, 0.4);
    box-shadow: 0 0 16px 4px rgba(193, 131, 251, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    color: #ffffff;
}

.delegate-connection-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(38px, -64px);
    z-index: 0;
}

/* Card 4: Meet & AI Summary Illustration */
.bento-visual-4 {
    height: 60%;
}

.meet-mockup-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50px) scale(1.15);
}

.meet-video-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-65%, -70%);
    width: 156px;
    min-height: 126px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 10px;
    z-index: 1;
}

.meet-video-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    padding: 0 2px;
}

.meet-logo-mini {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 600;
    color: #4b5563;
}

.meet-logo-mini svg {
    color: #9ca3af;
}

.meet-time-mini {
    font-size: 9px;
    font-weight: 500;
    color: #9ca3af;
}

.meet-avatar-grid {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}

.meet-avatar-item {
    flex: 1;
    height: 54px;
    background: #f9fafb;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.meet-avatar-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #e5e7eb;
}

.meet-name-tag {
    position: absolute;
    bottom: 4px;
    left: 4px;
    font-size: 7.5px;
    font-weight: 600;
    color: #6b7280;
    background: rgba(255, 255, 255, 0.85);
    padding: 2px 4px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.meet-name-tag::before {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    background: #10b981;
    border-radius: 50%;
}


.meet-controls {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.meet-ctrl-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
}

.meet-end-btn {
    background: #fee2e2;
    color: #ef4444;
    width: 34px;
    border-radius: 12px;
}

.meet-summary-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-65px, 15px);
    width: 150px;
    min-height: 103px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 14px;
    z-index: 3;
}

.meet-sum-head {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f3f4f6;
}

.meet-sum-title {
    font-size: 10px;
    font-weight: 600;
    color: #4b5563;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.meet-sum-body {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.meet-sum-line {
    height: 5px;
    background: #f3f4f6;
    border-radius: 3px;
}

.meet-ai-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(55px, 1px);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #c183fb;
    border: 1px solid rgba(193, 131, 251, 0.4);
    box-shadow: 0 0 16px 4px rgba(193, 131, 251, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    color: #ffffff;
}

.meet-connection-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(38px, -64px);
    z-index: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .bento-large {
        grid-column: 1 / 3;
        grid-row: auto;
        min-height: 500px;
    }

    .bento-large .bento-content {
        margin-bottom: 0;
    }

    .bento-large .bento-visual {
        flex: 1;
    }

    .proj-dash-grid {
        grid-template-columns: 1fr;
    }

    .bento-top-right {
        grid-column: 1 / 3;
        grid-row: auto;
        min-height: 380px;
    }

    .bento-bottom-1 {
        grid-column: 1 / 2;
        grid-row: auto;
        min-height: 300px;
    }

    .bento-bottom-2 {
        grid-column: 2 / 3;
        grid-row: auto;
        min-height: 300px;
    }

    .bento-bottom-3 {
        grid-column: 1 / 3;
        grid-row: auto;
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-large,
    .bento-top-right,
    .bento-bottom-1,
    .bento-bottom-2,
    .bento-bottom-3 {
        grid-column: 1 / 2;
    }

    .bento-large .bento-visual {
        margin-left: -16px;
        margin-right: -16px;
        width: calc(100% + 32px);
    }

    .proj-anim-stage {
        min-height: 450px;
    }

    .bento-large .bento-content {
        margin-bottom: 24px;
    }

    /* Card 2: animação relativa no mobile para não sobrepor o texto */
    .bento-top-right {
        min-height: auto;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .bento-top-right .bento-content {
        flex: 0 0 auto;
        margin-bottom: 0;
        padding-bottom: 16px;
    }

    .bento-top-right .bento-visual {
        position: relative;
        height: auto;
        flex: 1;
        min-height: 420px;
    }

    .bento-top-right .task-anim-stage {
        min-height: 400px;
    }

    .bento-top-right .task-audio-combo,
    .bento-top-right .task-list-mockup {
        max-width: 100%;
    }

    .bento-urgency-tag {
        right: 0;
        bottom: 20px;
    }

    .bento-whats-snippet {
        margin-right: 0;
        max-width: 100%;
    }

    .bento-checklist-anim {
        margin-left: 0;
        width: 100%;
    }

    /* Cards inferiores: layout responsivo com respiro para ilustrações */
    .bento-bottom-1,
    .bento-bottom-2,
    .bento-bottom-3 {
        min-height: auto;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .bento-bottom-1 .bento-content,
    .bento-bottom-2 .bento-content,
    .bento-bottom-3 .bento-content {
        flex: 0 0 auto;
        margin-bottom: 0;
        padding-bottom: 16px;
    }

    .bento-bottom-1 .bento-visual,
    .bento-bottom-2 .bento-visual,
    .bento-bottom-3 .bento-visual {
        position: relative;
        height: auto;
        flex: 1;
        min-height: 320px;
    }

    .delegate-mockup-container,
    .meet-mockup-container,
    .notes-mockup-container {
        transform: translateY(-20px) scale(1.05);
    }
}

/* ======================================
   BLOCO DRIVE INTELIGENTE — FUNDO BEGE
   ====================================== */

.drive-section {
    width: 100%;
    padding: 120px 8vw 100px;
    position: relative;
    overflow: hidden;
    background-color: #F5F0EB;
}

/* Transição rosa → bege no topo */
.drive-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, #e27bb7 0%, #e9a0cc 40%, #F5F0EB 100%);
    pointer-events: none;
    z-index: 1;
}

/* Glow sutil de ambientação */
.drive-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 55%;
    height: 100%;
    background:
        radial-gradient(ellipse 50% 60% at 80% 20%, rgba(188, 133, 248, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 20% 80%, rgba(226, 123, 183, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.drive-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

/* ---- Coluna de texto ---- */
.drive-text-col {
    display: flex;
    flex-direction: column;
}

/* ---- Coluna de mídia / ilustração ---- */
.drive-media-col {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.drive-illustration {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    width: 100%;
    max-width: 380px;
    height: 100%;
}

/* ============ CHAT MOCKUP ============ */
.drive-chat-mockup {
    width: 100%;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.drive-chat-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.drive-chat-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, #c183fb 0%, #e27bb7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.drive-chat-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.drive-chat-name {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.drive-chat-name strong {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1a1a2e;
}

.drive-chat-name span {
    font-size: 0.65rem;
    color: #25D366;
    font-weight: 500;
}

.drive-chat-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #f0ede8;
}

/* ---- Mensagens ---- */
.drive-msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.78rem;
    line-height: 1.5;
    color: #1a1a2e;
}

.drive-msg p {
    margin: 0;
}

.drive-msg-user {
    align-self: flex-end;
    background: #d9fdd3;
    border-bottom-right-radius: 4px;
}

.drive-msg-bot {
    align-self: flex-start;
    background: #ffffff;
    border-bottom-left-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.drive-msg-file {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 8px;
    margin-bottom: 6px;
}

.drive-msg-file span {
    font-size: 0.72rem;
    font-weight: 500;
    color: #4a5568;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ============ CONECTOR TRACEJADO ============ */
.drive-connector {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
}

/* ============ SEARCH MOCKUP ============ */
.drive-search-mockup {
    width: 100%;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.drive-search-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.drive-search-text {
    font-size: 0.78rem;
    color: #6b7280;
    font-style: italic;
    font-weight: 400;
}

.drive-results-list {
    display: flex;
    flex-direction: column;
}

.drive-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: background 0.2s ease;
}

.drive-result-item:last-child {
    border-bottom: none;
}

.drive-result-item:hover {
    background: rgba(188, 133, 248, 0.04);
}

.drive-result-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.drive-result-pdf {
    background: rgba(234, 67, 53, 0.1);
    color: #EA4335;
}

.drive-result-img {
    background: rgba(66, 133, 244, 0.1);
    color: #4285F4;
}

.drive-result-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.drive-result-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: #1a1a2e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.drive-result-path {
    font-size: 0.68rem;
    color: #9ca3af;
    font-weight: 400;
}

.drive-result-match {
    font-size: 0.72rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #c183fb 0%, #e27bb7 100%);
    padding: 3px 10px;
    border-radius: 100px;
    flex-shrink: 0;
    line-height: 1.3;
}

/* ============ STEP LABELS ============ */
.drive-step-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    margin-top: 4px;
}

.drive-step-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c183fb 0%, #e27bb7 100%);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.drive-step-label>span:last-child {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b6b88;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* ============ DRIVE PANEL MOCKUP (TEMA CLARO) ============ */
.drive-panel-mockup {
    width: 100%;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.drive-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: #f8f9fa;
}

.drive-panel-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.drive-panel-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: #1a1a2e;
}

.drive-panel-header-right {
    display: flex;
    align-items: center;
}

.drive-panel-section-label {
    font-size: 0.6rem;
    font-weight: 700;
    color: #9ca3af;
    letter-spacing: 0.1em;
    padding: 10px 16px 4px;
}

.drive-panel-folders {
    display: flex;
    gap: 8px;
    padding: 4px 16px 12px;
}

.drive-panel-folder {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 10px;
    background: #f3f0ec;
    flex: 1;
    min-width: 0;
}

.drive-panel-folder span {
    font-size: 0.7rem;
    font-weight: 500;
    color: #1a1a2e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.drive-panel-files {
    padding: 0 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.drive-panel-file {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    transition: background 0.2s ease;
}

.drive-panel-file:hover {
    background: rgba(188, 133, 248, 0.04);
}

.drive-panel-file-highlight {
    background: rgba(188, 133, 248, 0.06);
    border: 1px solid rgba(188, 133, 248, 0.15);
}

.drive-panel-file-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.drive-panel-file-pdf {
    background: rgba(234, 67, 53, 0.1);
    color: #EA4335;
}

.drive-panel-file-img {
    background: rgba(66, 133, 244, 0.1);
    color: #4285F4;
}

.drive-panel-file-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.drive-panel-file-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: #1a1a2e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.drive-panel-file-meta {
    font-size: 0.65rem;
    color: #9ca3af;
    font-weight: 400;
}

.drive-panel-file-new {
    font-size: 0.6rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #c183fb 0%, #e27bb7 100%);
    padding: 2px 8px;
    border-radius: 100px;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ============ MSG META (tamanho/pasta no WhatsApp) ============ */
.drive-msg-meta {
    font-size: 0.68rem;
    color: #9ca3af;
    margin-top: 4px;
}

/* ============ ANIMAÇÕES DE APARECIMENTO ============ */
.drive-msg-anim-1 {
    opacity: 0;
    transform: translateY(12px);
    animation: drive-fade-in 0.6s ease forwards 0.3s;
}

.drive-msg-anim-2 {
    opacity: 0;
    transform: translateY(12px);
    animation: drive-fade-in 0.6s ease forwards 0.9s;
}

.drive-msg-anim-3 {
    opacity: 0;
    transform: translateY(12px);
    animation: drive-fade-in 0.6s ease forwards 0.3s;
}

.drive-msg-anim-4 {
    opacity: 0;
    transform: translateY(12px);
    animation: drive-fade-in 0.6s ease forwards 0.9s;
}

.drive-msg-anim-5 {
    opacity: 0;
    transform: translateY(12px);
    animation: drive-fade-in 0.6s ease forwards 1.4s;
}

@keyframes drive-fade-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes drive-slide-in {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============ CARDS DE DESTAQUE ============ */
.drive-highlights-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.drive-highlight-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 22px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.drive-highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.drive-highlight-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.drive-highlight-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: -0.02em;
}

.drive-highlight-desc {
    font-size: 0.85rem;
    font-weight: 400;
    color: #6b6b88;
    line-height: 1.65;
}

/* ============ RESPONSIVO ============ */
@media (max-width: 768px) {
    .drive-section {
        padding: 80px 6vw 60px;
    }

    .drive-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .drive-illustration {
        max-width: 100%;
    }

    .drive-highlights-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 32px;
    }

    .drive-highlight-card {
        padding: 24px 22px;
    }

    .drive-panel-folders {
        flex-wrap: wrap;
    }

    .drive-panel-folder {
        flex: 0 0 auto;
    }
}

/* ══════════════════════════════════════════
   SEÇÃO PROVA SOCIAL
   ══════════════════════════════════════════ */

.dark-theme-wrapper {
    background-color: transparent;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.social-proof-section {
    width: 100%;
    padding: 120px 8vw 100px;
    position: relative;
}

.sp-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.sp-glow-left {
    width: 600px;
    height: 600px;
    top: -100px;
    left: -200px;
    background: radial-gradient(circle, rgba(193, 131, 251, 0.18) 0%, transparent 70%);
}

.sp-glow-right {
    width: 500px;
    height: 500px;
    bottom: -80px;
    right: -150px;
    background: radial-gradient(circle, rgba(226, 123, 183, 0.15) 0%, transparent 70%);
}

.sp-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.sp-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.sp-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 18px;
    border-radius: 100px;
    background: rgba(193, 131, 251, 0.12);
    border: 1px solid rgba(193, 131, 251, 0.25);
    color: #c183fb;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.sp-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin: 0;
}

.sp-highlight {
    background: linear-gradient(135deg, #c183fb 0%, #e27bb7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sp-subheadline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    max-width: 480px;
    margin: 0;
}

.sp-metrics {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 32px 40px;
    backdrop-filter: blur(10px);
}

.sp-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
}

.sp-metric-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.04em;
}

.sp-metric-plus,
.sp-metric-pct {
    font-size: 1.4rem;
    background: linear-gradient(135deg, #c183fb 0%, #e27bb7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.sp-metric-star {
    font-size: 1.6rem;
    background: linear-gradient(135deg, #f9c74f 0%, #f8961e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sp-metric-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
    text-align: center;
}

.sp-metric-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
    margin: 0 8px;
}

.sp-testimonials-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

.sp-card-featured {
    grid-row: span 2;
}

.sp-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    backdrop-filter: blur(12px);
    transition: border-color 0.3s ease, background 0.3s ease;
}

.sp-card:hover {
    border-color: rgba(193, 131, 251, 0.25);
    background: rgba(193, 131, 251, 0.06);
}

.sp-card.sp-card-featured {
    background: rgba(193, 131, 251, 0.07);
    border-color: rgba(193, 131, 251, 0.2);
    padding: 36px 32px 28px;
}

.sp-card.sp-card-featured:hover {
    border-color: rgba(193, 131, 251, 0.4);
    background: rgba(193, 131, 251, 0.1);
}

.sp-card-quote {
    margin-bottom: 4px;
}

.sp-card-text {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.sp-card-featured .sp-card-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
}

.sp-card-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sp-author-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
}

.sp-avatar-1 {
    background: linear-gradient(135deg, #c183fb 0%, #e27bb7 100%);
}

.sp-avatar-2 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.sp-avatar-3 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.sp-avatar-4 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.sp-avatar-5 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.sp-author-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.sp-author-info strong {
    font-size: 0.82rem;
    font-weight: 700;
    color: #ffffff;
}

.sp-author-info span {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
}

.sp-stars {
    color: #f9c74f;
    font-size: 0.72rem;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.sp-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sp-trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.sp-trust-badge:hover {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .social-proof-section {
        padding: 80px 6vw 60px;
    }

    .sp-container {
        gap: 48px;
    }

    .sp-metrics {
        flex-wrap: wrap;
        gap: 24px;
        padding: 24px 20px;
    }

    .sp-metric-divider {
        display: none;
    }

    .sp-metric {
        flex: 0 0 45%;
    }

    .sp-testimonials-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .sp-card-featured {
        grid-row: span 1;
    }

    .sp-trust-row {
        gap: 20px;
        justify-content: flex-start;
    }
}

/* ══════════════════════════════════════════
   CARROSSEL DE DEPOIMENTOS
   ══════════════════════════════════════════ */

.sp-carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    width: 100%;
}

/* ── Faixa de avatares ── */
.sp-avatars-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
    height: 180px;
    position: relative;
}

.sp-avatar-item {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.45s cubic-bezier(0.34, 1.3, 0.64, 1);
}

/* Posições por diff (i - active) */
/* diff = -2 */
.sp-avatar-item[data-diff="-2"] {
    left: calc(50% - 260px);
    width: 64px;
    height: 64px;
    opacity: 0.35;
    transform: translateY(20px);
    z-index: 1;
}

/* diff = -1 */
.sp-avatar-item[data-diff="-1"] {
    left: calc(50% - 180px);
    width: 90px;
    height: 90px;
    opacity: 0.6;
    transform: translateY(10px);
    z-index: 2;
}

/* diff = 0  (active) */
.sp-avatar-item.sp-avatar-active,
.sp-avatar-item[data-diff="0"] {
    left: 50%;
    transform: translateX(-50%) translateY(0);
    width: 148px;
    height: 148px;
    opacity: 1;
    z-index: 5;
}

/* diff = 1 */
.sp-avatar-item[data-diff="1"] {
    left: calc(50% + 90px);
    width: 90px;
    height: 90px;
    opacity: 0.6;
    transform: translateY(10px);
    z-index: 2;
}

/* diff = 2 */
.sp-avatar-item[data-diff="2"] {
    left: calc(50% + 196px);
    width: 64px;
    height: 64px;
    opacity: 0.35;
    transform: translateY(20px);
    z-index: 1;
}

/* Halo de glow no avatar ativo */
.sp-av-halo {
    position: absolute;
    inset: -18px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(193, 131, 251, 0.22) 0%, transparent 70%);
    animation: sp-halo-pulse 2.8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes sp-halo-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* Círculo do avatar */
.sp-av-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    font-size: clamp(0.75rem, 2vw, 1.4rem);
    letter-spacing: 0.02em;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: box-shadow 0.4s ease;
    overflow: hidden;
    background: linear-gradient(135deg, #c183fb 0%, #e27bb7 100%);
}

.sp-av-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.sp-avatar-item.sp-avatar-active .sp-av-circle {
    box-shadow: 0 0 0 4px rgba(193, 131, 251, 0.4), 0 12px 40px rgba(0, 0, 0, 0.5);
}

/* ── Área de depoimento ── */
.sp-quote-area {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 600px;
}

.sp-quote-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    transition: opacity 0.2s ease;
}

.sp-quote-role {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
    transition: opacity 0.2s ease;
}

.sp-quote-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.75;
    margin: 8px 0 0;
    transition: opacity 0.2s ease;
}

.sp-quote-stars {
    color: #f9c74f;
    font-size: 1rem;
    letter-spacing: 2px;
}

/* ── Navegação ── */
.sp-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sp-nav-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.sp-nav-btn:hover {
    background: rgba(193, 131, 251, 0.15);
    border-color: rgba(193, 131, 251, 0.4);
    color: #c183fb;
}

.sp-dots {
    display: flex;
    align-items: center;
    gap: 6px;
}

.sp-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.sp-dot.sp-dot-active {
    width: 20px;
    border-radius: 3px;
    background: linear-gradient(90deg, #c183fb 0%, #e27bb7 100%);
}

/* ── Responsivo ── */
@media (max-width: 768px) {
    .sp-avatars-row {
        height: 140px;
    }

    .sp-avatar-item[data-diff="-2"] {
        left: calc(50% - 189px);
        width: 44px;
        height: 44px;
    }

    .sp-avatar-item[data-diff="-1"] {
        left: calc(50% - 133px);
        width: 66px;
        height: 66px;
    }

    .sp-avatar-item.sp-avatar-active,
    .sp-avatar-item[data-diff="0"] {
        width: 110px;
        height: 110px;
    }

    .sp-avatar-item[data-diff="1"] {
        left: calc(50% + 67px);
        width: 66px;
        height: 66px;
    }

    .sp-avatar-item[data-diff="2"] {
        left: calc(50% + 145px);
        width: 44px;
        height: 44px;
    }

    .sp-quote-text {
        font-size: 0.9rem;
    }
}

/* ══════════════════════════════════════════
   SEÇÃO DE OFERTA / PRICING
   ══════════════════════════════════════════ */

.pricing-section {
    width: 100%;
    padding: 0 8vw 120px;
    position: relative;
}

/* ── Glows ── */
.pricing-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.pricing-glow-left {
    width: 500px;
    height: 500px;
    bottom: -80px;
    left: -180px;
    background: radial-gradient(circle, rgba(193, 131, 251, 0.12) 0%, transparent 70%);
}

.pricing-glow-right {
    width: 450px;
    height: 450px;
    top: 40%;
    right: -150px;
    background: radial-gradient(circle, rgba(226, 123, 183, 0.10) 0%, transparent 70%);
}

.pricing-glow-center {
    width: 700px;
    height: 700px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(193, 131, 251, 0.06) 0%, transparent 65%);
}

/* ── Partículas flutuantes ── */
.pricing-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.pricing-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(193, 131, 251, 0.4);
    animation: pricing-float 8s ease-in-out infinite;
}

@keyframes pricing-float {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-30px) scale(1.5);
        opacity: 0.7;
    }
}

/* ── Container ── */
.pricing-container {
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
}

/* ── Cabeçalho ── */
.pricing-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 18px;
    border-radius: 100px;
    background: rgba(193, 131, 251, 0.12);
    border: 1px solid rgba(193, 131, 251, 0.25);
    color: #c183fb;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 4px;
}

.pricing-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin: 0;
}

.pricing-highlight {
    background: linear-gradient(135deg, #c183fb 0%, #e27bb7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-subheadline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    max-width: 480px;
    margin: 0;
}

/* ── Grid de Cards ── */
.pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    width: 100%;
    align-items: stretch;
}

.pricing-cards.pricing-cards-single {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
}

/* ── Card Solo (single plan) ── */
.pricing-card-solo {
    width: 100%;
}

/* ── Trust Badges dentro do card ── */
.pricing-trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 18px;
    margin-bottom: 0;
}

.pricing-trust-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.82rem;
    font-weight: 500;
}

.pricing-trust-badge-item svg {
    flex-shrink: 0;
    opacity: 0.8;
}

/* ── Card base ── */
.pricing-card {
    position: relative;
    border-radius: 24px;
    padding: 2px;
    transition: transform 0.4s cubic-bezier(0.34, 1.3, 0.64, 1), box-shadow 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
}

.pricing-card-inner {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 22px;
    padding: 32px 32px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: border-color 0.3s ease, background 0.3s ease;
}

.pricing-card:hover .pricing-card-inner {
    border-color: rgba(193, 131, 251, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

/* ── Card Featured (Anual) ── */
.pricing-card-featured {
    background: linear-gradient(135deg, #c183fb, #e27bb7, #c183fb);
    background-size: 200% 200%;
    animation: pricing-border-shimmer 4s ease infinite;
}

.pricing-card-featured .pricing-card-inner {
    background: rgba(13, 11, 20, 0.92);
    border: none;
}

.pricing-card-featured:hover .pricing-card-inner {
    background: rgba(13, 11, 20, 0.88);
}

@keyframes pricing-border-shimmer {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ── Discount Tag (inline) ── */
.pricing-discount-tag {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    padding: 7px 20px;
    border-radius: 100px;
    background: linear-gradient(135deg, #c183fb 0%, #e27bb7 100%);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(193, 131, 251, 0.3);
}

/* ── Ribbon ── */
.pricing-ribbon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #c183fb 0%, #e27bb7 100%);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 8px 28px;
    border-radius: 0 0 14px 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 3;
    box-shadow: 0 4px 16px rgba(193, 131, 251, 0.35);
}

/* ── Card Head ── */
.pricing-card-head {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 24px;
}

.pricing-card-featured .pricing-card-head {
    margin-top: 8px;
}

.pricing-plan-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.pricing-plan-icon-monthly {
    background: rgba(193, 131, 251, 0.1);
    color: #c183fb;
}

.pricing-plan-icon-annual {
    background: linear-gradient(135deg, rgba(193, 131, 251, 0.2) 0%, rgba(226, 123, 183, 0.2) 100%);
    color: #e27bb7;
}

.pricing-plan-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.02em;
}

.pricing-plan-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
    font-weight: 400;
}

/* ── Discount Badge ── */
.pricing-discount-badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 8px;
}

.pricing-discount-amount {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 14px;
    border-radius: 100px;
    background: linear-gradient(135deg, rgba(193, 131, 251, 0.2) 0%, rgba(226, 123, 183, 0.2) 100%);
    border: 1px solid rgba(193, 131, 251, 0.3);
    color: #c183fb;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    animation: pricing-badge-pulse 2s ease-in-out infinite;
}

@keyframes pricing-badge-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(193, 131, 251, 0.2);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(193, 131, 251, 0);
    }
}

/* ── Área de preço ── */
.pricing-price-area {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 24px;
}

.pricing-price-old {
    margin-bottom: 4px;
}

.pricing-price-old span {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    font-weight: 500;
}

.pricing-price-row {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    line-height: 1;
}

.pricing-currency {
    font-size: 1.3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 6px;
}

.pricing-amount {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.04em;
    line-height: 0.9;
}

.pricing-card-featured .pricing-amount {
    background: linear-gradient(135deg, #ffffff 0%, #e8d0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-cents {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.pricing-period {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    margin-left: 4px;
    margin-bottom: 6px;
}

.pricing-billing-note {
    font-size: 0.8rem;
    color: rgba(193, 131, 251, 0.7);
    font-weight: 500;
    margin-top: 6px;
}

/* ── Divider ── */
.pricing-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin-bottom: 22px;
}

.pricing-card-featured .pricing-divider {
    background: linear-gradient(90deg, transparent 0%, rgba(193, 131, 251, 0.2) 50%, transparent 100%);
}

/* ── Features List ── */
.pricing-features {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    line-height: 1.4;
}

.pricing-features li strong {
    color: #ffffff;
    font-weight: 600;
}

.pricing-features li svg {
    flex-shrink: 0;
}

/* ── Botões ── */
.pricing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px 28px;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.34, 1.3, 0.64, 1);
    text-align: center;
    letter-spacing: 0.01em;
}

.pricing-btn-outline {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.pricing-btn-outline:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(193, 131, 251, 0.4);
    color: #c183fb;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(193, 131, 251, 0.12);
}

.pricing-btn-primary {
    background: linear-gradient(135deg, #c183fb 0%, #e27bb7 100%);
    border: none;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(193, 131, 251, 0.3);
    position: relative;
    overflow: hidden;
}

.pricing-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(193, 131, 251, 0.45);
}

.pricing-btn-primary:hover::before {
    opacity: 1;
}

/* ── Trust Row ── */
.pricing-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.pricing-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.82rem;
    font-weight: 500;
    transition: color 0.25s ease;
}

.pricing-trust-item:hover {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-trust-item svg {
    opacity: 0.5;
    transition: opacity 0.25s ease;
}

.pricing-trust-item:hover svg {
    opacity: 0.8;
}

/* ── Responsivo ── */
@media (max-width: 768px) {
    .pricing-section {
        padding: 0 6vw 80px;
    }

    .pricing-container {
        gap: 40px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 420px;
        margin: 0 auto;
    }

    .pricing-card-inner {
        padding: 32px 24px;
    }

    .pricing-amount {
        font-size: 3.2rem;
    }

    .pricing-trust-row {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
}

/* ── Pricing revamp ── */
.pricing-section {
    padding: 12px 8vw 104px;
}

.pricing-container {
    max-width: 960px;
    gap: 34px;
}

.pricing-header {
    gap: 12px;
}

.pricing-badge {
    padding: 7px 14px;
    background: rgba(226, 123, 183, 0.12);
    border-color: rgba(226, 123, 183, 0.28);
    color: #f18ac9;
    text-transform: uppercase;
    letter-spacing: 0;
}

.pricing-headline {
    max-width: 680px;
    font-size: 2.55rem;
    letter-spacing: 0;
}

.pricing-subheadline {
    max-width: 540px;
    color: rgba(255, 255, 255, 0.66);
}

.pricing-cards.pricing-cards-single {
    max-width: 680px;
}

.pricing-card {
    border-radius: 24px;
    padding: 1px;
}

.pricing-card-featured {
    background:
        linear-gradient(135deg, rgba(193, 131, 251, 0.34), rgba(226, 123, 183, 0.38), rgba(255, 255, 255, 0.08)),
        rgba(255, 255, 255, 0.04);
    box-shadow: 0 20px 62px rgba(0, 0, 0, 0.24), 0 0 34px rgba(226, 123, 183, 0.1);
    animation: none;
}

.pricing-card-inner.pricing-card-inner-pro {
    padding: 0;
    overflow: hidden;
    border-radius: 23px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
        radial-gradient(circle at 18% 0%, rgba(193, 131, 251, 0.14), transparent 34%),
        rgba(12, 13, 21, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-card-featured:hover .pricing-card-inner {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.03)),
        radial-gradient(circle at 18% 0%, rgba(193, 131, 251, 0.16), transparent 34%),
        rgba(12, 13, 21, 0.94);
}

.pricing-hero-panel {
    position: relative;
    padding: 30px 34px 28px;
    background:
        radial-gradient(circle at 15% 0%, rgba(120, 120, 255, 0.28), transparent 42%),
        radial-gradient(circle at 92% 10%, rgba(226, 123, 183, 0.28), transparent 45%),
        linear-gradient(135deg, rgba(77, 78, 132, 0.52), rgba(73, 23, 58, 0.48));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-hero-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.08) 48%, transparent 62%);
    opacity: 0.42;
    pointer-events: none;
}

.pricing-topline,
.pricing-price-layout {
    position: relative;
    z-index: 1;
}

.pricing-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.pricing-plan-pill,
.pricing-discount-tag {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.pricing-plan-pill {
    gap: 8px;
    padding: 6px 13px;
    color: #ff4fb0;
    background: rgba(226, 123, 183, 0.12);
    border: 1px solid rgba(226, 123, 183, 0.42);
}

.pricing-plan-pill span {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #ff188c;
    box-shadow: 0 0 14px rgba(255, 24, 140, 0.72);
}

.pricing-discount-tag {
    align-self: auto;
    margin: 0;
    padding: 6px 13px;
    color: #33ff98;
    background: rgba(30, 255, 145, 0.11);
    border: 1px solid rgba(54, 255, 157, 0.32);
    box-shadow: none;
}

.pricing-price-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 190px;
    align-items: end;
    gap: 20px;
}

.pricing-price-area {
    margin: 0;
    gap: 8px;
}

.pricing-price-label {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.84rem;
    font-weight: 700;
}

.pricing-price-old {
    margin: 0;
}

.pricing-price-old span {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.88rem;
}

.pricing-price-row {
    align-items: flex-end;
    gap: 5px;
}

.pricing-currency {
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 2.35rem;
    font-weight: 900;
    line-height: 0.9;
}

.pricing-amount {
    font-size: 4.75rem;
    line-height: 0.86;
    letter-spacing: 0;
}

.pricing-card-featured .pricing-amount {
    background: none;
    -webkit-text-fill-color: #ffffff;
    color: #ffffff;
}

.pricing-cents {
    margin-bottom: 9px;
    color: #ffffff;
    font-size: 2.35rem;
    font-weight: 900;
}

.pricing-period {
    margin-bottom: 12px;
    margin-left: 5px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.98rem;
    font-weight: 700;
}

.pricing-billing-note {
    margin-top: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.86rem;
    font-weight: 600;
}

.pricing-savings-callout {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 13px 14px;
    border-radius: 14px;
    background: rgba(7, 10, 17, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-savings-callout strong {
    color: #35ff98;
    font-size: 0.92rem;
}

.pricing-savings-callout span {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.78rem;
    line-height: 1.45;
}

.pricing-included,
.pricing-bonus-section,
.pricing-guarantee-box,
.pricing-card-inner-pro .pricing-btn,
.pricing-card-inner-pro .pricing-trust-badges {
    margin-left: 34px;
    margin-right: 34px;
}

.pricing-included {
    padding-top: 28px;
}

.pricing-section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.pricing-features.pricing-features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
    margin-bottom: 24px;
}

.pricing-features.pricing-features-grid li {
    gap: 10px;
    min-width: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.88rem;
    font-weight: 600;
}

.pricing-features.pricing-features-grid li svg {
    width: 23px;
    height: 23px;
    padding: 5px;
    border-radius: 999px;
    color: #ff2a9a;
    background: rgba(226, 123, 183, 0.16);
}

.pricing-bonus-section {
    padding: 22px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-bonus-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.035);
}

.pricing-bonus-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 14px;
    text-align: center;
}

.pricing-bonus-item + .pricing-bonus-item {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-bonus-item strong {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 800;
}

.pricing-bonus-item span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.8rem;
    line-height: 1.45;
}

.pricing-guarantee-box {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
    margin-top: 22px;
    margin-bottom: 22px;
    padding: 17px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(226, 123, 183, 0.1), rgba(193, 131, 251, 0.045));
    border: 1px solid rgba(226, 123, 183, 0.24);
}

.pricing-guarantee-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 13px;
    color: #ff2a9a;
    background: rgba(226, 123, 183, 0.16);
}

.pricing-guarantee-box h3 {
    margin: 0 0 6px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
}

.pricing-guarantee-box p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.86rem;
    line-height: 1.5;
}

.pricing-card-inner-pro .pricing-btn {
    width: auto;
}

.pricing-btn-primary {
    min-height: 58px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f11190 0%, #c91f78 100%);
    color: #ffffff;
    font-size: 1.02rem;
    font-weight: 700;
    box-shadow: 0 18px 50px rgba(226, 24, 141, 0.34);
}

.pricing-btn-primary:hover {
    box-shadow: 0 22px 62px rgba(226, 24, 141, 0.46);
}

.pricing-card-inner-pro .pricing-trust-badges {
    justify-content: center;
    gap: 14px 18px;
    flex-wrap: wrap;
    padding: 16px 0 24px;
}

.pricing-trust-badge-item {
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.78rem;
}

.pricing-trust-badge-item svg {
    color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 980px) {
    .pricing-section {
        padding-left: 6vw;
        padding-right: 6vw;
    }

    .pricing-headline {
        font-size: 2.15rem;
    }

    .pricing-price-layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pricing-savings-callout {
        max-width: 360px;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding-top: 8px;
    }

    .pricing-container {
        gap: 28px;
    }

    .pricing-headline {
        font-size: 1.9rem;
    }

    .pricing-subheadline {
        font-size: 0.9rem;
    }

    .pricing-card {
        border-radius: 24px;
    }

    .pricing-card-inner.pricing-card-inner-pro {
        border-radius: 23px;
    }

    .pricing-hero-panel {
        padding: 26px 18px 24px;
    }

    .pricing-topline {
        justify-content: flex-start;
        margin-bottom: 18px;
    }

    .pricing-plan-pill,
    .pricing-discount-tag {
        min-height: 30px;
        font-size: 0.66rem;
        letter-spacing: 0;
    }

    .pricing-currency {
        margin-bottom: 7px;
        font-size: 2rem;
    }

    .pricing-amount {
        font-size: 3.65rem;
    }

    .pricing-cents {
        margin-bottom: 8px;
        font-size: 2rem;
    }

    .pricing-period {
        margin-bottom: 10px;
        margin-left: 5px;
        font-size: 0.9rem;
    }

    .pricing-billing-note {
        font-size: 0.82rem;
    }

    .pricing-included,
    .pricing-bonus-section,
    .pricing-guarantee-box,
    .pricing-card-inner-pro .pricing-btn,
    .pricing-card-inner-pro .pricing-trust-badges {
        margin-left: 18px;
        margin-right: 18px;
    }

    .pricing-included {
        padding-top: 24px;
    }

    .pricing-section-label {
        justify-content: flex-start;
        margin-bottom: 14px;
        font-size: 0.7rem;
        letter-spacing: 0;
    }

    .pricing-features.pricing-features-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 22px;
    }

    .pricing-features.pricing-features-grid li {
        font-size: 0.86rem;
    }

    .pricing-bonus-grid {
        grid-template-columns: 1fr;
    }

    .pricing-bonus-item + .pricing-bonus-item {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .pricing-guarantee-box {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px;
    }

    .pricing-guarantee-icon {
        width: 40px;
        height: 40px;
    }

    .pricing-guarantee-box h3 {
        font-size: 0.98rem;
    }

    .pricing-guarantee-box p {
        font-size: 0.84rem;
    }

    .pricing-btn-primary {
        min-height: 54px;
        padding: 14px 18px;
        font-size: 0.98rem;
    }

    .pricing-card-inner-pro .pricing-trust-badges {
        align-items: flex-start;
        justify-content: flex-start;
        gap: 12px 18px;
    }
}

@media (max-width: 390px) {
    .pricing-amount {
        font-size: 3.25rem;
    }

    .pricing-currency,
    .pricing-cents {
        font-size: 1.75rem;
    }

    .pricing-period {
        font-size: 0.82rem;
    }
}

/* ── Pricing compact card ── */
.pricing-section {
    padding: 0 8vw 84px;
}

.pricing-container {
    max-width: 860px;
    gap: 28px;
}

.pricing-headline {
    max-width: 600px;
    font-size: 2.2rem;
}

.pricing-subheadline {
    max-width: 480px;
    font-size: 0.94rem;
}

.pricing-cards.pricing-cards-single {
    max-width: 560px;
}

.pricing-card {
    border-radius: 22px;
}

.pricing-card:hover {
    transform: translateY(-3px);
}

.pricing-card-inner.pricing-card-inner-pro {
    border-radius: 21px;
}

.pricing-hero-panel {
    padding: 22px 24px 18px;
}

.pricing-topline {
    margin-bottom: 15px;
}

.pricing-plan-pill,
.pricing-discount-tag {
    min-height: 28px;
    padding: 5px 11px;
    font-size: 0.66rem;
}

.pricing-price-layout {
    grid-template-columns: minmax(0, 1fr) 154px;
    gap: 14px;
}

.pricing-price-area {
    gap: 5px;
}

.pricing-price-label,
.pricing-price-old span,
.pricing-billing-note {
    font-size: 0.78rem;
}

.pricing-currency {
    margin-bottom: 6px;
    font-size: 1.8rem;
}

.pricing-amount {
    font-size: 3.55rem;
}

.pricing-cents {
    margin-bottom: 7px;
    font-size: 1.75rem;
}

.pricing-period {
    margin-bottom: 8px;
    font-size: 0.82rem;
}

.pricing-savings-callout {
    padding: 10px 11px;
    border-radius: 12px;
}

.pricing-savings-callout strong {
    font-size: 0.78rem;
}

.pricing-savings-callout span {
    font-size: 0.7rem;
}

.pricing-hero-panel .pricing-btn {
    width: 100%;
    margin: 16px 0 0;
}

.pricing-btn-primary {
    min-height: 48px;
    border-radius: 12px;
    font-size: 0.95rem;
    box-shadow: 0 12px 34px rgba(226, 24, 141, 0.3);
}

.pricing-hero-panel .pricing-trust-badges {
    margin: 11px 0 0;
    padding: 0;
    gap: 8px 12px;
    justify-content: center;
}

.pricing-trust-badge-item {
    gap: 5px;
    font-size: 0.68rem;
}

.pricing-trust-badge-item svg {
    width: 13px;
    height: 13px;
}

.pricing-included {
    margin: 0;
    padding: 18px 24px 22px;
}

.pricing-section-label {
    justify-content: flex-start;
    margin-bottom: 12px;
    font-size: 0.68rem;
}

.pricing-features.pricing-features-grid {
    gap: 9px 12px;
    margin-bottom: 16px;
}

.pricing-features.pricing-features-grid li {
    gap: 8px;
    font-size: 0.78rem;
}

.pricing-features.pricing-features-grid li svg {
    width: 19px;
    height: 19px;
    padding: 4px;
}

.pricing-included .pricing-bonus-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border: 0;
    background: transparent;
    border-radius: 0;
}

.pricing-included .pricing-bonus-grid span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.74rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 0 6vw 72px;
    }

    .pricing-container {
        gap: 24px;
    }

    .pricing-headline {
        font-size: 1.82rem;
    }

    .pricing-hero-panel {
        padding: 20px 18px 16px;
    }

    .pricing-topline {
        gap: 8px;
        margin-bottom: 14px;
    }

    .pricing-price-layout {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .pricing-savings-callout {
        display: none;
    }

    .pricing-amount {
        font-size: 3.15rem;
    }

    .pricing-currency,
    .pricing-cents {
        font-size: 1.6rem;
    }

    .pricing-period {
        font-size: 0.78rem;
    }

    .pricing-hero-panel .pricing-trust-badges {
        justify-content: flex-start;
    }

    .pricing-included {
        padding: 16px 18px 20px;
    }

    .pricing-features.pricing-features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 9px 10px;
    }

    .pricing-features.pricing-features-grid li {
        font-size: 0.74rem;
    }
}

@media (max-width: 430px) {
    .pricing-features.pricing-features-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Pricing vertical plan card ── */
.pricing-cards.pricing-cards-single {
    max-width: 430px;
}

.pricing-card-solo {
    max-width: 430px;
    margin: 0 auto;
}

.pricing-card-inner.pricing-card-inner-pro {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.024)),
        rgba(12, 13, 21, 0.94);
}

.pricing-hero-panel {
    padding: 24px 24px 20px;
    text-align: center;
}

.pricing-topline {
    justify-content: center;
    margin-bottom: 18px;
}

.pricing-price-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.pricing-price-area {
    align-items: center;
    text-align: center;
}

.pricing-price-row {
    justify-content: center;
}

.pricing-price-label {
    font-size: 0.82rem;
}

.pricing-currency {
    margin-bottom: 6px;
    font-size: 1.7rem;
}

.pricing-amount {
    font-size: 3.4rem;
}

.pricing-cents {
    margin-bottom: 7px;
    font-size: 1.65rem;
}

.pricing-period {
    margin-bottom: 8px;
    font-size: 0.8rem;
}

.pricing-savings-callout {
    display: inline-flex;
    width: auto;
    max-width: none;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(30, 255, 145, 0.1);
    border-color: rgba(54, 255, 157, 0.28);
}

.pricing-savings-callout strong {
    color: #33ff98;
    font-size: 0.76rem;
}

.pricing-savings-callout span {
    display: none;
}

.pricing-hero-panel .pricing-btn {
    margin-top: 14px;
}

.pricing-hero-panel .pricing-trust-badges {
    margin-top: 10px;
    justify-content: center;
}

.pricing-included {
    padding: 15px 20px 18px;
}

.pricing-included-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.pricing-included-head .pricing-section-label {
    margin-bottom: 0;
}

.pricing-unlimited-pill {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(30, 255, 145, 0.1);
    border: 1px solid rgba(54, 255, 157, 0.22);
    color: #33ff98;
    font-size: 0.62rem;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-section-label {
    justify-content: center;
}

.pricing-features.pricing-features-grid {
    grid-template-columns: 1fr;
    gap: 10px;
}

.pricing-features.pricing-features-grid.pricing-features-rich {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 0;
}

.pricing-features.pricing-features-grid.pricing-features-rich li {
    align-items: flex-start;
    gap: 7px;
    min-height: 45px;
    padding: 7px 8px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.032);
    border: 1px solid rgba(255, 255, 255, 0.055);
}

.pricing-features-rich li > span {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 2px;
}

.pricing-features-rich strong {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1.25;
}

.pricing-features-rich small {
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.61rem;
    line-height: 1.25;
}

.pricing-features.pricing-features-grid.pricing-features-rich .pricing-feature-more {
    grid-column: 1 / -1;
    min-height: 34px;
    justify-content: center;
    background: rgba(193, 131, 251, 0.08);
    border-color: rgba(193, 131, 251, 0.14);
}

.pricing-included .pricing-bonus-grid {
    justify-content: center;
    padding-top: 2px;
}

@media (max-width: 768px) {
    .pricing-cards.pricing-cards-single,
    .pricing-card-solo {
        max-width: 420px;
    }

    .pricing-hero-panel {
        padding: 22px 18px 18px;
    }

    .pricing-savings-callout {
        display: inline-flex;
    }

    .pricing-hero-panel .pricing-trust-badges {
        justify-content: center;
    }

    .pricing-included-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .pricing-features.pricing-features-grid.pricing-features-rich {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 430px) {
    .pricing-features.pricing-features-grid.pricing-features-rich {
        grid-template-columns: 1fr;
    }

    .pricing-features.pricing-features-grid.pricing-features-rich .pricing-feature-more {
        grid-column: auto;
    }
}

/* ══════════════════════════════════════════
   SEÇÃO FAQ — PERGUNTAS FREQUENTES
   ══════════════════════════════════════════ */

.faq-section {
    width: 100%;
    padding: 40px 8vw 120px;
    position: relative;
}

.faq-container {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

/* ── Cabeçalho ── */
.faq-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 18px;
    border-radius: 100px;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    color: #000000;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    font-family: var(--font-poppins, 'Poppins', sans-serif);
}

.faq-badge svg {
    stroke: #000000;
}

.faq-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin: 0;
    font-family: var(--font-poppins, 'Poppins', sans-serif);
}

.faq-subheadline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    max-width: 500px;
    margin: 0;
    font-family: var(--font-poppins, 'Poppins', sans-serif);
}

/* ── Accordion Glass Cards ── */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.35s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(193, 131, 251, 0.2);
    box-shadow: 0 4px 24px rgba(193, 131, 251, 0.06);
}

.faq-item.faq-open {
    background: rgba(193, 131, 251, 0.06);
    border-color: rgba(193, 131, 251, 0.25);
    box-shadow:
        0 8px 32px rgba(193, 131, 251, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    font-family: var(--font-poppins, 'Poppins', sans-serif);
}

.faq-question span {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    transition: color 0.3s ease;
}

.faq-question:hover span {
    color: #ffffff;
}

.faq-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.34, 1.3, 0.64, 1);
    color: rgba(255, 255, 255, 0.45);
}

.faq-question:hover .faq-icon {
    background: rgba(193, 131, 251, 0.12);
    border-color: rgba(193, 131, 251, 0.3);
    color: #c183fb;
}

/* Estado aberto */
.faq-item.faq-open .faq-icon {
    background: linear-gradient(135deg, #c183fb 0%, #e27bb7 100%);
    border-color: transparent;
    color: #ffffff;
    transform: rotate(45deg);
    box-shadow: 0 4px 14px rgba(193, 131, 251, 0.35);
}

.faq-item.faq-open .faq-question span {
    color: #ffffff;
}

/* ── Resposta ── */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.34, 1, 0.64, 1);
}

.faq-answer-inner {
    padding: 0 24px 24px;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s;
}

.faq-item.faq-open .faq-answer-inner {
    opacity: 1;
    transform: translateY(0);
}

.faq-answer p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    margin: 0;
    font-family: var(--font-poppins, 'Poppins', sans-serif);
}

/* ── Responsivo ── */
@media (max-width: 768px) {
    .faq-section {
        padding: 40px 6vw 80px;
    }

    .faq-container {
        gap: 40px;
    }

    .faq-accordion {
        gap: 10px;
    }

    .faq-item {
        border-radius: 14px;
    }

    .faq-question {
        padding: 18px 18px;
        gap: 16px;
    }

    .faq-question span {
        font-size: 0.92rem;
    }

    .faq-icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
        border-radius: 8px;
    }

    .faq-icon svg {
        width: 14px;
        height: 14px;
    }

    .faq-answer-inner {
        padding: 0 18px 20px;
    }

    .faq-answer p {
        font-size: 0.85rem;
    }
}

/* ══════════════════════════════════════════
   SEÇÃO INSTITUCIONAL — TITTANIUM INC
   ══════════════════════════════════════════ */

.tittanium-section {
    width: 100%;
    padding: 40px 8vw 60px;
    position: relative;
}

.tittanium-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
}

/* ── Glass Card ── */
.tittanium-glass-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.tittanium-glass-card:hover {
    border-color: rgba(193, 131, 251, 0.2);
    box-shadow:
        0 12px 48px rgba(193, 131, 251, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.tittanium-card-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 48px 56px;
}

/* ── Logo ── */
.tittanium-logo-wrap {
    flex-shrink: 0;
    width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tittanium-logo-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.tittanium-glass-card:hover .tittanium-logo-img {
    opacity: 1;
}

/* ── Texto ── */
.tittanium-text {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.tittanium-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin: 0;
    font-family: var(--font-poppins, 'Poppins', sans-serif);
}

.tittanium-title strong {
    font-weight: 700;
    color: #ffffff;
}

.tittanium-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
    margin: 0;
    font-family: var(--font-poppins, 'Poppins', sans-serif);
}

.tittanium-desc strong {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.tittanium-desc-accent {
    color: rgba(255, 255, 255, 0.55);
}

/* ── Botão CTA Final ── */
.tittanium-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--font-poppins, 'Poppins', sans-serif);
    letter-spacing: -0.01em;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.35s ease;
}

.tittanium-cta-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(193, 131, 251, 0.3);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(193, 131, 251, 0.1);
}

.tittanium-cta-btn svg {
    transition: transform 0.35s ease;
    opacity: 0.6;
}

.tittanium-cta-btn:hover svg {
    transform: translateX(4px);
    opacity: 1;
}

/* ── Responsivo ── */
@media (max-width: 768px) {
    .tittanium-section {
        padding: 40px 6vw 60px;
    }

    .tittanium-container {
        gap: 40px;
    }

    .tittanium-card-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 36px 28px;
        gap: 28px;
    }

    .tittanium-logo-wrap {
        width: 130px;
    }

    .tittanium-title {
        font-size: 1.15rem;
    }

    .tittanium-desc {
        font-size: 0.85rem;
    }

    .tittanium-cta-btn {
        width: 100%;
        max-width: 380px;
        padding: 16px 40px;
        font-size: 1rem;
    }
}

/* ══════════════════════════════════════════
   RODAPÉ / POLÍTICA DE PRIVACIDADE
   ══════════════════════════════════════════ */
.site-footer {
    width: 100%;
    padding: 84px clamp(20px, 7vw, 96px) 36px;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 2;
    font-family: var(--font-poppins, 'Poppins', sans-serif);
    color: #ffffff;
}

.footer-container {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(260px, 1.35fr) minmax(140px, 0.65fr) minmax(150px, 0.7fr) minmax(260px, 1fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: start;
}

.footer-brand {
    max-width: 360px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    opacity: 0.92;
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.footer-logo svg {
    width: min(156px, 58vw);
    height: auto;
}

.footer-logo-mask {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #c183fb 0%, #e27bb7 100%);
    -webkit-mask-image: url('images/simbologia.png');
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url('images/simbologia.png');
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
}

.footer-brand-copy {
    margin: 0;
    max-width: 34ch;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.92rem;
    line-height: 1.75;
}

.footer-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-top: 22px;
}

.footer-trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 500;
}

.footer-trust-row span::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(135deg, #c183fb, #e27bb7);
    box-shadow: 0 0 12px rgba(193, 131, 251, 0.5);
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-column h2,
.footer-support-card h2 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0;
}

.footer-column a,
.footer-support-email {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.88rem;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-column a {
    padding: 3px 0;
}

.footer-column a:hover,
.footer-support-email:hover {
    color: #ffffff;
    transform: translateX(2px);
}

.footer-support-card {
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 8px;
    padding: 22px;
    background:
        linear-gradient(135deg, rgba(193, 131, 251, 0.12), rgba(226, 123, 183, 0.06)),
        rgba(255, 255, 255, 0.035);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.footer-support-eyebrow {
    display: block;
    margin-bottom: 10px;
    color: #c183fb;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-support-card p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.86rem;
    line-height: 1.7;
}

.footer-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    min-height: 44px;
    padding: 12px 16px;
    border-radius: 8px;
    background: #21c267;
    color: #04130a;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.footer-whatsapp-btn:hover {
    background: #33db7c;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(33, 194, 103, 0.22);
}

.footer-support-email {
    display: inline-flex;
    margin-top: 14px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-shrink: 0;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #c183fb 0%, #e27bb7 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(193, 131, 251, 0.3);
}

.footer-social a svg {
    width: 18px;
    height: 18px;
}

.footer-logo:focus-visible,
.footer-column a:focus-visible,
.footer-whatsapp-btn:focus-visible,
.footer-support-email:focus-visible,
.footer-social a:focus-visible {
    outline: 2px solid rgba(193, 131, 251, 0.85);
    outline-offset: 4px;
}

.footer-copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    max-width: 760px;
}

@media (max-width: 980px) {
    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-brand,
    .footer-support-card {
        grid-column: span 2;
    }

    .footer-brand {
        max-width: 560px;
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding: 58px 20px 30px;
    }

    .footer-container,
    .footer-brand,
    .footer-column,
    .footer-support-card,
    .footer-bottom {
        align-items: center;
        text-align: center;
    }

    .footer-container {
        max-width: 430px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px;
        justify-items: center;
        width: 100%;
    }

    .footer-brand,
    .footer-support-card {
        grid-column: 1 / -1;
        width: 100%;
        max-width: 390px;
    }

    .footer-column {
        width: 100%;
        gap: 8px;
        align-items: center;
    }

    .footer-column a,
    .footer-support-email {
        width: 100%;
        justify-content: center;
    }

    .footer-brand-copy {
        max-width: 32ch;
        margin: 0 auto;
    }

    .footer-trust-row {
        justify-content: center;
    }

    .footer-support-card {
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        gap: 18px;
    }

    .footer-social {
        justify-content: center;
        width: 100%;
    }

    .footer-copyright {
        font-size: 0.76rem;
        margin: 0 auto;
    }
}

@media (max-width: 380px) {
    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-brand,
    .footer-support-card {
        grid-column: auto;
    }
}

/* MOBILE SIDEBAR */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 280px;
    height: 100vh;
    background-color: #ffffff;
    z-index: 2000;
    transition: left 0.4s ease;
    display: flex;
    flex-direction: column;
    padding: 24px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
}

.mobile-sidebar.open {
    left: 0;
}

.mobile-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mobile-sidebar-header .sidebar-logo {
    height: 24px;
    width: auto;
}

.close-sidebar-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav-link {
    text-decoration: none;
    color: #000000;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #c183fb;
}

.mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(2px);
}

.mobile-sidebar-overlay.open {
    opacity: 1;
    pointer-events: auto;
}
