/* ==========================================
   LIQUID INTELLIGENCE CONCEPT (PRO 2024)
   ========================================== */
@keyframes gradient-flow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


/* ==========================================
   SHADOW ORBS: The Intelligent Aura
   ========================================== */
.hero-shadow-aura {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -10;
    overflow: hidden;
    /* SOFT PETAL LAVENDER: Degradê de fundo imersivo que combina com o logo */
    background: radial-gradient(circle at center, #ffffff 5%, #f7f5ff 100%);
}

.shadow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(220px);
    /* Suavização extrema: Blur de Seda */
    pointer-events: none;
    animation: aura-infinite-orbit 25s infinite ease-in-out;
}

/* Orb Superior: Luz Inteligente (Violeta Suave) - FOCO TOTAL NO TOPO ESQUERDO */
.shadow-orb-light {
    width: 50vmax;
    height: 50vmax;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.12), transparent 70%);
    top: -5%;
    left: -5%;
}

/* Orb Superior: Sombra Chumbo (Slate Profundo) - Também puxada para o topo esquerdo */
.shadow-orb-depth {
    width: 45vmax;
    height: 45vmax;
    background: radial-gradient(circle, rgba(51, 65, 85, 0.08), transparent 70%);
    top: 5%;
    left: 20%;
    animation-delay: -10s;
}

@keyframes aura-infinite-orbit {

    0%,
    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    33% {
        transform: translate(6%, 10%) scale(1.08) rotate(5deg);
    }

    66% {
        transform: translate(-8%, -5%) scale(0.92) rotate(-5deg);
    }
}

:root {
    --bg-color: #ffffff;
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --text-light: #9ca3af;

    --primary: #191919;
    --primary-hover: #333333;

    /* Pastel colors for cards */
    --pastel-mint: #a8f1d0;
    /* Verde mais claro */
    --pastel-purple: #d8c4ff;
    /* Roxo mais claro */
    --pastel-yellow: #fde08f;
    --pastel-pink: #ffc2ed;

    --color-sites-yellow: #F59E0B;
    --tag-border: #e5e7eb;

    --font-display: 'Outfit', sans-serif;
    --font-ui: 'Inter', sans-serif;

    /* Shadow tokens */
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    --shadow-floating: 0 20px 40px -15px rgba(0, 0, 0, 0.12);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
}

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

body {
    background-color: var(--bg-color);
    font-family: var(--font-ui);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
    min-height: 100vh;
}

.page-wrapper {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 2rem 4rem;
    min-height: 88vh;
    display: flex;
    flex-direction: column;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    margin-bottom: 4rem;
}

.navbar.bento-nav {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 88%;
    max-width: 1300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    z-index: 2000;
}

.nav-module {
    background: rgba(255, 255, 255, 0.8);
    /* Menos transparente para maior peso */
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 255, 255, 0.6);
    /* Borda mais encorpada */
    border-radius: 100px;
    padding: 0.5rem 1.4rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    /* Sombra mais densa */
    display: flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.nav-module:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
}

.nav-left {
    padding: 0.5rem 1.4rem;
    gap: 1rem;
}

.nav-left a {
    display: inline-block;
    padding: 0;
    margin: 0;
    line-height: 0;
}

.nav-center {
    gap: 1.5rem;
    list-style: none;
}

.nav-right {
    gap: 1rem;
    padding: 0.4rem 0.6rem 0.4rem 1.4rem;
}

.logo-img {
    height: 36px;
    width: auto;
    /* Obsidian Black */
    transition: filter 0.3s ease;
    object-fit: contain;
}

.hero-mobile-logo a {
    display: inline-block;
    padding: 0;
    margin: 0;
    line-height: 0;
}

.hero-mobile-logo img {
    margin-top: 1rem;
}

.logo-test {
    height: 28px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 0.2px rgba(0, 0, 0, 0.4));
}

.nav-divider {
    width: 1px;
    height: 18px;
    background: rgba(0, 0, 0, 0.1);
    margin: 0 0.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-item {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    /* Encorpado para maior autoridade */
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    padding: 0.5rem 1.1rem;
    border-radius: 50px;
    position: relative;
    display: flex;
    align-items: center;
}

/* Definição de cores individuais por item (Seguindo os Badges) */
.nav-center li.has-dropdown {
    position: relative;
}

.nav-link-dropdown {
    display: flex;
    align-items: center;
    gap: 4px;
}

.chevron-icon {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.has-dropdown:hover .chevron-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 24px;
    padding: 16px;
    min-width: 360px;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(0, 0, 0, 0.02);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.2, 1);
    z-index: 1000;
}

/* Seta discreta no topo do dropdown */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.9);
    border-left: 1px solid rgba(0, 0, 0, 0.04);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    list-style: none;
    margin-bottom: 6px;
}

.dropdown-menu li:last-child {
    margin-bottom: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: rgba(0, 0, 0, 0.03);
}

/* Icon Box Design */
.dropdown-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown-menu a:hover .dropdown-icon-box {
    transform: scale(1.1) rotate(5deg);
}

.wa-icon {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.ig-icon {
    background: rgba(225, 48, 108, 0.1);
    color: #e1306c;
}

.sites-icon {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.globe-icon {
    background: rgba(168, 85, 247, 0.1);
    color: #9333ea;
}

.dropdown-icon-box i,
.dropdown-icon-box svg {
    width: 22px;
    height: 22px;
}

/* Content Group */
.dropdown-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dropdown-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1b1e;
    transition: color 0.3s ease;
}

.dropdown-menu a:hover .dropdown-title {
    color: #4f46e5;
}

.dropdown-desc {
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.4;
    white-space: normal;
}

/* Ajustes Mobile Menu (Ajuste caso tenha Menu Lateral) */
@media (max-width: 900px) {
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        backdrop-filter: none;
        border: none;
        box-shadow: none;
        padding-left: 20px;
        display: none;
        /* Só exibir se clicar no mobile? Vamos deixar aberto por enquanto se for menu lateral */
    }
}

.nav-center li:nth-child(1) .nav-item:hover {
    color: #7000FF;
    background: rgba(112, 0, 255, 0.05);
    box-shadow: inset 0 0 0 1px rgba(112, 0, 255, 0.1);
}

.nav-center li:nth-child(2) .nav-item:hover {
    color: #008a5e;
    background: rgba(168, 241, 208, 0.1);
    box-shadow: inset 0 0 0 1px rgba(168, 241, 208, 0.2);
}

.nav-center li:nth-child(3) .nav-item:hover {
    color: #ca8a04;
    background: rgba(253, 224, 143, 0.15);
    box-shadow: inset 0 0 0 1px rgba(255, 194, 237, 0.2);
}

.nav-center li:nth-child(4) .nav-item:hover {
    color: #db2777;
    background: rgba(255, 194, 237, 0.1);
    box-shadow: inset 0 0 0 1px rgba(253, 224, 143, 0.2);
}

.nav-item:hover {
    transform: scale(1.05);
}

/* Bolinha magnética com cores correspondentes */
.nav-center li:nth-child(1) .nav-item:hover::after {
    background: #7000FF;
    width: 12px;
    opacity: 1;
}

.nav-center li:nth-child(2) .nav-item:hover::after {
    background: #70e6ad;
    width: 12px;
    opacity: 1;
}

.nav-center li:nth-child(3) .nav-item:hover::after {
    background: #fde08f;
    width: 12px;
    opacity: 1;
}

.nav-center li:nth-child(4) .nav-item:hover::after {
    background: #ffc2ed;
    width: 12px;
    opacity: 1;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 4px;
    border-radius: 10px;
    transition: all 0.4s ease;
    transform: translateX(-50%);
    opacity: 0;
}

.nav-item.active-nav::after {
    width: 20px;
    opacity: 1;
    background: #6a73d9;
}

.nav-item.active-nav {
    color: #6a73d9;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn {
    cursor: pointer;
    border: none;
    font-family: var(--font-ui);
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-lang {
    background: transparent;
    color: var(--text-primary);
    gap: 0.5rem;
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
}

.btn-lang:hover {
    background: rgba(0, 0, 0, 0.04);
}

.btn-primary {
    background: #6a73d9;
    color: white;
    padding: 0.75rem 1.6rem;
    border-radius: 100px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(106, 115, 217, 0.3);
}

.btn-primary:hover {
    background-color: #525bb3;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(106, 115, 217, 0.4);
}

/* Hero Section */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.hero-topo {
    flex: 1;
    padding-top: 6rem;
    /* Compensa a navbar fixa */
    position: relative;
    overflow: visible;
}


/* Scroll hint indicator */
.hero-scroll-hint {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: #989ee3;
    box-shadow: 0 4px 16px rgba(106, 115, 217, 0.35);
    color: #fff;
    text-decoration: none;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease, box-shadow 0.3s ease, background 0.3s ease;
    animation: hero-bounce 1.8s ease-in-out infinite;
}

.hero-scroll-hint:hover {
    background: #525bb3;
    box-shadow: 0 6px 20px rgba(106, 115, 217, 0.5);
    color: #fff;
}

.hero-scroll-hint.is-hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.hero-scroll-hint svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke-width: 2.5;
}

@keyframes hero-bounce {

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

    50% {
        transform: translateY(8px);
    }
}


.col--visuals {
    align-self: start;
    margin-top: -1rem;
}

/* Left Column */
.col--content {
    max-width: 580px;
}

.hero-mobile-logo {
    display: none;
}

.heading--hero {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 2.5rem;

    /* SEDA METÁLICA: Fluxo Suave e Hipnótico (Estilo Luxo) */
    background: linear-gradient(-45deg,
            #111111 0%,
            #222222 30%,
            #444444 50%,
            #666666 70%,
            #111111 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    animation:
        fade-in 1.2s cubic-bezier(0.25, 0.1, 0.25, 1) both,
        gradient-flow 18s ease-in-out infinite;
    /* Muito mais lento e suave */
}

.heading--section {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.title-wa {
    color: inherit;
    /* Segue o degrade do pai */
}

.title-sites {
    background: linear-gradient(90deg, #4facfe, #5f7cff, #8a5cff, #c471ed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.9;
}

.typewriter-stable {
    display: inline-block;
    min-width: 11ch;
    text-align: left;
}

.text-highlight {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    transition: background 0.5s ease;
}

/* Cores dinâmicas para cada palavra - usando background-image para não resetar o clip */
.text-highlight[data-word="0"] {
    background-image: linear-gradient(135deg, #007cf0, #00dfd8);
}

.text-highlight[data-word="1"] {
    background-image: linear-gradient(135deg, #6A73D9, #A855F7);
}

.text-highlight[data-word="2"] {
    background-image: linear-gradient(135deg, #13997e, #4dd5a5);
}

.text-highlight[data-word="3"] {
    background-image: linear-gradient(135deg, #f093fb, #f5576c);
}


/* Cursor piscante dinâmico que herda a cor da palavra */
.text-highlight::after {
    content: '|';
    display: inline-block;
    margin-left: 2px;
    animation: blink 0.8s infinite;
    font-weight: 400;
    transition: color 0.5s ease;
}

.text-highlight[data-word="0"]::after {
    color: #00dfd8;
    -webkit-text-fill-color: #00dfd8;
}

.text-highlight[data-word="1"]::after {
    color: #A855F7;
    -webkit-text-fill-color: #A855F7;
}

.text-highlight[data-word="2"]::after {
    color: #96c93d;
    -webkit-text-fill-color: #4dd5a5;
}

.text-highlight[data-word="3"]::after {
    color: #f5576c;
    -webkit-text-fill-color: #f5576c;
}


@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@keyframes gradient-flow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Efeito de Pulsar para o ícone de informação */
@keyframes pulse-info {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 var(--pulse-glow, rgba(106, 115, 217, 0.4));
    }

    70% {
        transform: scale(1.15);
        box-shadow: 0 0 0 10px var(--pulse-glow-end, rgba(106, 115, 217, 0));
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 var(--pulse-glow-end, rgba(106, 115, 217, 0));
    }
}

.tag-plus {
    position: relative;
    background: transparent !important;
    /* Managed by ::before */
    z-index: 1;
}

.tag-plus::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tag:hover+.tag-plus::before,
.tag.tag-active+.tag-plus::before,
.tag-plus:hover::before,
.card-float-icon:hover {
    animation: pulse-info 1.5s infinite cubic-bezier(0.66, 0, 0, 1);
    background: white;
}

/* Stop pulse when reading tooltip */
.tag-plus:has(.tag-tooltip.active)::before {
    animation: none !important;
    transform: scale(1) !important;
}

/* O ícone 'i' agora permanece constante e apenas pulsa no hover */
.tag-plus:hover .plus-symbol {
    visibility: visible;
    position: relative;
}

.scramble-char {
    display: none;
    /* Remove estilo antigo */
}

@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

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

.emoji-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #fdf3f8;
    border-radius: 50%;
    font-size: 1.8rem;
    vertical-align: middle;
    margin-left: 0.5rem;
}

.text-desc {
    font-size: 1.1rem;
    color: #777;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.text-desc--hero {
    font-size: 1.1rem;
    color: #444444;
    margin-bottom: 2rem;
    margin-left: 0;
    margin-right: 0;
    max-width: 85%;
    line-height: 1.6;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-cta-btn {
    padding: 1rem 2rem !important;
    font-size: 0.95rem !important;
    gap: 0.6rem;
    display: inline-flex;
    align-items: center;
}

.hero-cta-btn i,
.hero-cta-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.hero-cta-btn:hover i,
.hero-cta-btn:hover svg {
    transform: translateX(3px);
}

.hero-trust-strip {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-avatars {
    display: flex;
}

.hero-av {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: linear-gradient(135deg, var(--pastel-purple), var(--pastel-mint));
    margin-left: -8px;
    flex-shrink: 0;
}

.hero-av:first-child {
    margin-left: 0;
    background: linear-gradient(135deg, var(--pastel-mint), #6dd5a0);
}

.hero-av:last-child {
    background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-purple));
}

.hero-trust-text {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
}

/* Tags UI */
.tags-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem !important;
    /* Force space from the text description above */
}

.tags-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 1.5rem;
    border-radius: 100px;
    font-size: 0.9rem;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.7);
    /* Glass Capsule */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
}

.tag:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.tag-wa.tag-active {
    background: rgba(168, 241, 208, 0.5);
    /* Mint Glass */
    box-shadow: 0 10px 25px -5px rgba(168, 241, 208, 0.3);
    transform: translateY(-2px) scale(1.02);
    border: none;
}

.tag-insta.tag-active {
    background: rgba(255, 194, 237, 0.5);
    /* Pink Glass */
    box-shadow: 0 10px 20px -5px rgba(255, 194, 237, 0.3);
    transform: translateY(-2px) scale(1.02);
    border: none;
}

.tag-ia.tag-active {
    background: rgba(185, 154, 253, 0.5);
    /* Purple Glass */
    box-shadow: 0 10px 20px -5px rgba(185, 154, 253, 0.3);
    transform: translateY(-2px) scale(1.02);
    border: none;
}

.tag-sites.tag-active {
    background: rgba(253, 224, 143, 0.5);
    /* Yellow Glass */
    box-shadow: 0 10px 20px -5px rgba(253, 224, 143, 0.3);
    transform: translateY(-2px) scale(1.02);
    border: none;
}

.tag-lp.tag-active {
    background: rgba(186, 230, 253, 0.5);
    /* Blue Glass */
    box-shadow: 0 10px 20px -5px rgba(186, 230, 253, 0.3);
    transform: translateY(-2px) scale(1.02);
    border: none;
}

.tag-plus {
    position: relative;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.6);
    /* Glass Capsule i */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Cores específicas para o ícone (i) baseadas no badge */

/* WhatsApp - Verde */
.tag-wa:hover+.tag-plus,
.tag-wa.tag-active+.tag-plus,
.tag-wa+.tag-plus:hover {
    color: #008a5e;
    --pulse-glow: rgba(0, 138, 94, 0.4);
    --pulse-glow-end: rgba(0, 138, 94, 0);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 20px rgba(0, 138, 94, 0.25);
}

/* Instagram - Rosa */
.tag-insta:hover+.tag-plus,
.tag-insta.tag-active+.tag-plus,
.tag-insta+.tag-plus:hover {
    color: #db2777;
    --pulse-glow: rgba(219, 39, 119, 0.4);
    --pulse-glow-end: rgba(219, 39, 119, 0);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 20px rgba(219, 39, 119, 0.2);
}

/* IA - Roxo */
.tag-ia:hover+.tag-plus,
.tag-ia.tag-active+.tag-plus,
.tag-ia+.tag-plus:hover {
    color: #7000FF;
    --pulse-glow: rgba(112, 0, 255, 0.4);
    --pulse-glow-end: rgba(112, 0, 255, 0);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 20px rgba(112, 0, 255, 0.2);
}

/* Sites - Amarelo/Laranja */
.tag-sites:hover+.tag-plus,
.tag-sites.tag-active+.tag-plus,
.tag-sites+.tag-plus:hover {
    color: #b45309;
    --pulse-glow: rgba(180, 83, 9, 0.4);
    --pulse-glow-end: rgba(180, 83, 9, 0);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 20px rgba(180, 83, 9, 0.2);
}

/* Landing Pages - Azul */
.tag-lp:hover+.tag-plus,
.tag-lp.tag-active+.tag-plus,
.tag-lp+.tag-plus:hover {
    color: #0ea5e9;
    --pulse-glow: rgba(14, 165, 233, 0.4);
    --pulse-glow-end: rgba(14, 165, 233, 0);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.2);
}

.tag:hover+.tag-plus .plus-symbol,
.tag.tag-active+.tag-plus .plus-symbol,
.tag-plus:hover .plus-symbol {
    transform: none !important;
}

.plus-symbol {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tag-tooltip {
    position: absolute;
    bottom: calc(100% + 15px);
    left: 50%;
    background: rgba(15, 23, 42, 0.9);
    /* Deep Slate Glass */
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    color: white;
    padding: 1rem 1.2rem;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.5;
    width: 240px;
    text-align: center;
    z-index: 1000;
    pointer-events: none;

    /* PREMIUM TRANSITION: Popping Emergence */
    opacity: 0;
    visibility: hidden;
    transform-origin: bottom center;
    transform: translateX(-50%) translateY(20px) scale(0);
    filter: blur(10px);
    transition:
        opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1),
        transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
        filter 0.4s ease,
        visibility 0.4s ease;

    box-shadow:
        0 20px 40px -10px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tag-tooltip.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
    filter: blur(0);
}

.tag-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: rgba(15, 23, 42, 0.9) transparent transparent transparent;
}

/* Right Column - Visuals */
.visual-grid {
    position: relative;
    width: 100%;
    height: 560px;
}

.grid-card {
    position: absolute;
    overflow: visible;
    transition: transform 0.4s ease;
}

.grid-card:hover {
    transform: translateY(-4px);
}

.grid-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   CARD SHAPES — Using SVG clip-path from bloco1-4.svg
   Each card is clipped to the exact organic shape
   ============================================ */

/* Top Left: Woman on green (bloco1 shape) */
.shape-tl {
    background: var(--pastel-mint);
    clip-path: url(#clip-tl);
    top: 0;
    left: 0;
    width: 50%;
    height: 82%;
    z-index: 2;
}

/* Top Right: Analytics on purple (bloco3 shape) */
.shape-tr {
    top: 0;
    right: 0;
    /* Alinhado com o botão Get Started */
    width: 52%;
    height: 50%;
    clip-path: url(#clip-tr);
    background: var(--pastel-purple);
    padding: 2.5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 3;
}

/* Bottom Left: Social on pink (bloco2 shape) */
.shape-bl {
    background: var(--pastel-pink);
    clip-path: url(#clip-bl);
    top: 64%;
    left: 0;
    width: 50%;
    height: 45%;
    padding: 3.8rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    z-index: 4;
}

.social-card {
    overflow: visible !important;
}

/* Bottom Right: Man on yellow (bloco4 shape) */
.shape-br {
    bottom: 0;
    right: 0;
    /* Alinhado com o botão Get Started */
    width: 54%;
    height: 75%;
    top: 34%;
    clip-path: url(#clip-br);
    background: var(--pastel-yellow);
    z-index: 1;
}

/* Man overflows the yellow card top */
.man-card img {
    position: absolute;
    bottom: -5rem;
    /* Lowered from -3rem to pull the head into the card */
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 112%;
    /* Slightly reduced to give more vertical headroom */
    object-fit: cover;
    object-position: center top;
}

/* ============================================
   UI CARD INTERIORS
   ============================================ */
.analytics-card {
    color: white;
}

.analytics-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-display);
    font-weight: 600;
}

.month {
    font-size: 1.3rem;
}

.badge {
    background: white;
    ;
    color: #6a73d9;
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-right: 1rem;
    font-family: var(--font-ui);
}

.chart-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex: 1;
    gap: 6px;
    padding: 0.5rem 0.25rem 0;
}

.bar-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    flex: 1;
    height: 100%;
}

.bar {
    width: 100%;
    max-width: 28px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    transition: all 0.4s ease;
    margin-top: auto;
}

.active-bar {
    background: white;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.lbl {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

/* Social Card Interior */
.card-float-icon {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-primary);
    box-shadow: 0 0 0 6px white, 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.avatars-group {
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 3px solid white;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.av-2 {
    margin-left: -18px;
    z-index: 2;
}

.social-card .card-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: #2e2e2e;
    font-family: var(--font-display);
    text-align: center;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.bar-1 {
    height: 45%;
    animation: grow 1s ease-out forwards;
}

.bar-2 {
    height: 65%;
    animation: grow 1s ease-out 0.1s forwards;
}

.bar-3 {
    height: 85%;
    animation: grow 1s ease-out 0.2s forwards;
}

.bar-4 {
    height: 100%;
    animation: grow 1s ease-out 0.3s forwards;
}

.bar-5 {
    height: 72%;
    animation: grow 1s ease-out 0.4s forwards;
}

.bar-6 {
    height: 52%;
    animation: grow 1s ease-out 0.5s forwards;
}

@keyframes grow {
    from {
        height: 0;
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Each card floats gently on its own rhythm */
.floating {
    animation: float-gentle 6s ease-in-out infinite;
}

.delayed-1 {
    animation-delay: 0.8s;
}

.delayed-2 {
    animation-delay: 1.6s;
}

.delayed-3 {
    animation-delay: 2.4s;
}

@keyframes float-gentle {

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

    50% {
        transform: translateY(-8px);
    }
}

.shape-tl.floating {
    animation: float-gentle 6s ease-in-out infinite;
}

.shape-tr.floating {
    animation: float-gentle 7s ease-in-out infinite 0.8s;
}

.shape-bl.floating {
    animation: float-gentle 5.5s ease-in-out infinite 1.6s;
}

.shape-br.floating {
    animation: float-gentle 7s ease-in-out infinite 2.4s;
}

/* --- PREMIUM LEGAL PAGES STYLES (Thinking Outside the Box) --- */
.legal-hero {
    position: relative;
    padding: 180px 20px 140px;
    max-width: 1300px;
    margin: 0 auto;
    overflow: visible;
}

/* Background Blobs */
.legal-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.1;
    border-radius: 50%;
}

.blob--1 {
    top: 10%;
    left: -10%;
    background: #6a73d9;
    animation: float-gentle 15s infinite alternate;
}

.blob--2 {
    bottom: 20%;
    right: -5%;
    background: #a855f7;
    animation: float-gentle 12s infinite alternate-reverse;
}

.legal-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 80px;
    align-items: start;
}

/* Sidebar Styling */
.legal-sidebar {
    position: sticky;
    top: 120px;
}

.legal-tag {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(106, 115, 217, 0.08);
    color: #6a73d9;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.legal-doc-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #1a1b1e;
    letter-spacing: -0.02em;
}

.legal-doc-update {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 40px;
}

.legal-internal-nav ul {
    list-style: none;
    padding: 0;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.legal-internal-nav li {
    padding-left: 20px;
    margin-bottom: 15px;
    position: relative;
}

.legal-internal-nav li a {
    text-decoration: none;
    color: #94a3b8;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.legal-internal-nav li.active a,
.legal-internal-nav li:hover a {
    color: #6a73d9;
}

.legal-internal-nav li.active::before {
    content: '';
    position: absolute;
    left: -1px;
    top: 0;
    height: 100%;
    width: 2px;
    background: #6a73d9;
}

/* Main Content Area */
.legal-main-content {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 40px;
    padding: 80px;
    box-shadow:
        0 40px 100px -20px rgba(0, 0, 0, 0.03),
        0 10px 40px -10px rgba(106, 115, 217, 0.03);
}

.legal-section {
    position: relative;
    margin-bottom: 80px;
}

.section-num {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    color: #6a73d9;
    opacity: 0.4;
    margin-bottom: 10px;
}

.legal-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1b1e;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.legal-section p {
    font-size: 1.15rem;
    line-height: 1.85;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.legal-bullets {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.legal-bullets li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.6;
}

.legal-bullets li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #6a73d9;
    font-weight: 800;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
    .legal-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .legal-sidebar {
        position: static;
        text-align: left;
    }

    .legal-internal-nav {
        display: none;
    }

    .legal-doc-title {
        font-size: 2.8rem;
    }

    .legal-main-content {
        padding: 40px 30px;
        border-radius: 30px;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .page-wrapper {
        padding: 2rem;
    }

    .split-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

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

    .heading--hero {
        font-size: 3.5rem;
    }

    .text-desc--hero {
        max-width: 600px;
    }

    .tags-group {
        align-items: center;
    }

    .tags-row {
        justify-content: center;
    }

    .visual-grid {
        max-width: 550px;
        height: 500px;
        margin: 0 auto;
    }
}

/* Menu Mobile Básico - Hidden por padrão */
.menu-mobile-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.4rem;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.menu-mobile-btn:hover {
    transform: scale(1.05);
}

/* Glassmorphic Fullscreen Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 2rem;
}

.mobile-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
    transform: rotate(0deg);
    transition: transform 0.4s ease;
}

.mobile-menu-overlay.active .mobile-menu-close {
    transform: rotate(90deg);
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav-list a {
    text-decoration: none;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.mobile-cta {
    font-size: 1.1rem;
    padding: 1rem 3rem;
}

/* ==========================================
   MOBILE MEDIA QUERY
   ========================================== */
@media (max-width: 768px) {
    .page-wrapper {
        padding: 0;
        /* Tiramos o padding pra aproveitar a tela toda */
        overflow-x: hidden;
    }

    /* ----------------------------------------------------
       O PADRÃO OURO DE UX MOBILE-FIRST (Estilo Aplicativo Nativos)
       Top-Bar Sticky com Logo na esquerda e Hamburger na Direita.
       ---------------------------------------------------- */
    /* Elements Hidden for Clean UI */
    .btn-lang,
    .btn-primary.btn-round,
    .nav-center,
    .mobile-hidden {
        display: none !important;
    }

    /* ----------------------------------------------------
       DESIGN EXCLUSIVO: FLOATING BRANDED CAPSULE
       Identidade e Navegação em uma única pílula unificada.
       ---------------------------------------------------- */
    .navbar.bento-nav {
        position: fixed !important;
        top: 1.5rem !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 100% !important;
        height: auto !important;
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        z-index: 10000 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        pointer-events: none;
    }

    /* REMOÇÃO DO LOGO NO MOBILE (Apenas uma cápsula central) */
    .nav-left,
    .logo-img,
    .logo-test {
        display: none !important;
    }

    /* A ÚNICA CÁPSULA CENTRAL (Menu + Lang) */
    .nav-right {
        display: flex !important;
        pointer-events: all;
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(40px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(40px) saturate(180%) !important;
        border: 1px solid rgba(255, 255, 255, 0.8) !important;
        border-radius: 100px !important;
        height: 48px !important;
        padding: 0 1.2rem !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow:
            0 10px 30px rgba(0, 0, 0, 0.05),
            0 0 0 1px rgba(0, 0, 0, 0.02);
        transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        gap: 0.75rem;
    }

    .nav-right .lang-switcher {
        display: flex !important;
        align-items: center !important;
        gap: 0.15rem !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .nav-right .btn-lang {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        font-size: 0.8rem !important;
        padding: 0.2rem 0.4rem !important;
        color: #000000 !important;
        /* Total black para máxima visibilidade */
        font-weight: 800 !important;
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        min-width: 34px !important;
        text-transform: uppercase !important;
    }

    .nav-right .btn-lang.active {
        color: #6a73d9 !important;
        background: rgba(106, 115, 217, 0.08) !important;
        border-radius: 8px;
    }

    .nav-right .lang-divider {
        display: block !important;
        width: 1px !important;
        height: 10px !important;
        background: rgba(0, 0, 0, 0.2) !important;
        opacity: 1 !important;
    }

    /* Divider entre Lang e Menu */
    .menu-mobile-btn {
        display: flex !important;
        align-items: center !important;
        padding-left: 0.7rem !important;
        border-left: 1px solid rgba(0, 0, 0, 0.08) !important;
        margin-left: 0.5rem !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        width: auto !important;
        height: auto !important;
        color: var(--text-primary) !important;
        gap: 0.5rem;
    }

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

    .menu-mobile-btn::after {
        content: 'Menu';
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .nav-right:active {
        transform: scale(0.96);
    }

    /* Hero Flow Centralizado */
    .split-grid {
        display: flex !important;
        flex-direction: column !important;
        padding: 6rem 1.5rem 4rem 1.5rem;
        text-align: center;
        gap: 2.5rem;
        align-items: center;
    }

    .heading--hero {
        font-size: 2.8rem;
        /* Título gigante e premium */
        line-height: 1.05;
        letter-spacing: -1px;
        text-align: center;
        /* Centralização garantida */

        /* Seda Metálica no Mobile */
        background: linear-gradient(-45deg,
                #111111 0%,
                #222222 30%,
                #444444 50%,
                #666666 70%,
                #111111 100%);
        background-size: 200% 200%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: gradient-flow 18s ease-in-out infinite;
    }

    .hero-mobile-logo {
        display: block !important;
        margin: 0 auto 2rem auto;
        text-align: center;
        animation: fade-in 1s ease forwards;
    }

    .hero-mobile-logo img {
        height: 44px;
        width: auto;
    }

    .typewriter-stable {
        display: inline-block;
        text-align: center !important;
        /* Alinhamento central do Slack/Typewriter */
        min-width: 0 !important;
        /* Deixa fluir no mobile */
        width: 100%;
        /* Ocupa a linha toda para garantir centro */
    }

    .text-desc--hero {
        font-size: 1.05rem;
        margin: 1rem auto 2rem auto;
        /* Centraliza a caixa */
        max-width: 95%;
        text-align: center;
    }

    /* CTA Layout */
    .cta-group {
        width: 100%;
        flex-direction: column;
        gap: 1rem;
    }

    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 1rem;
        font-size: 1rem;
    }

    /* ESTEIRA DE BADGES "Swipeable" */
    .tags-group {
        width: 100%;
        margin-left: 0;
        padding-left: 0;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .tags-row {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .tags-row .tag {
        flex: 1 0 calc(100% - 50px);
        text-align: center;
    }

    /* O Truque Mestre: .tag-plus vira contents para o filho (tooltip) ser um flex item direto */
    .tag-plus {
        display: contents;
        background: none !important;
    }

    /* Desativa o pseudo-element de pulso no mobile */
    .tag-plus::before {
        display: none !important;
    }

    /* O estilo de botão foi transferido para o ícone no Mobile */
    .plus-symbol {
        width: 32px;
        height: 32px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: white;
        color: var(--text-primary);
        font-size: 1.2rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    }

    /* Pulso e Cores no ícone mobile: substitui o ::before que foi desativado */
    .tag.tag-active+.tag-plus .plus-symbol {
        animation: pulse-info 1.5s infinite cubic-bezier(0.66, 0, 0, 1);
    }

    /* Aplicar cores específicas para o ícone (i) no Mobile quando ativo */
    .tag-wa.tag-active+.tag-plus .plus-symbol {
        color: #008a5e !important;
        border-color: rgba(0, 138, 94, 0.3) !important;
    }

    .tag-insta.tag-active+.tag-plus .plus-symbol {
        color: #db2777 !important;
        border-color: rgba(219, 39, 119, 0.3) !important;
    }

    .tag-ia.tag-active+.tag-plus .plus-symbol {
        color: #7000FF !important;
        border-color: rgba(112, 0, 255, 0.3) !important;
    }

    .tag-sites.tag-active+.tag-plus .plus-symbol {
        color: #b45309 !important;
        border-color: rgba(180, 83, 9, 0.3) !important;
    }

    .tag-lp.tag-active+.tag-plus .plus-symbol {
        color: #0ea5e9 !important;
        border-color: rgba(14, 165, 233, 0.3) !important;
    }

    /* Para o pulso quando o tooltip está aberto */
    .tag-plus:has(.tag-tooltip.active) .plus-symbol {
        animation: none !important;
        transform: scale(1) !important;
    }

    .tag {
        width: auto;
        justify-content: center;
        margin: 0 !important;
    }

    /* Tooltip Acordeão (Block Box) - Agora Centralizado */
    .tag-tooltip {
        position: static !important;
        flex: 1 1 100%;
        /* Força quebra de linha no Flexbox */
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        max-height: 0;
        overflow: hidden;
        padding: 0 1rem !important;
        opacity: 0;
        visibility: hidden;
        background: rgba(245, 245, 245, 0.7);
        color: var(--text-primary);
        border: 1px solid rgba(0, 0, 0, 0.04);
        border-radius: 12px;
        box-shadow: none;
        backdrop-filter: blur(10px);
        transform: none !important;
        transition: all 0.4s ease;
        text-align: center;
    }

    .tag-tooltip.active {
        max-height: 180px;
        /* Altura segura para o texto expandir */
        opacity: 1;
        visibility: visible;
        padding: 1rem !important;
        margin-bottom: 0.5rem;
    }

    /* Remove a setinha visual do tooltip */
    .tag-tooltip::after {
        display: none !important;
    }

    /* Visual Grid: grid 2x2 no mobile, abaixo do conteúdo */
    .hero__visuals {
        position: relative;
        width: 100%;
        margin-top: 1.5rem;
        z-index: 0;
    }

    .visual-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 220px;
        gap: 12px;
        height: auto !important;
        transform: none;
        padding: 0 4px;
    }

    /* Todos os cards: resetar posição absoluta + remover clip-path orgânico */
    .shape-tl,
    .shape-tr,
    .shape-bl,
    .shape-br {
        display: flex !important;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 100% !important;
        height: 100% !important;
        transform: none !important;
        transform-origin: center !important;
        clip-path: none !important;
        border-radius: 20px !important;
        overflow: hidden !important;
    }

    /* Analytics card compacto */
    .analytics-header {
        margin-bottom: 0;
    }

    .month {
        font-size: 0.85rem;
    }

    .badge {
        padding: 0.2rem 0.5rem;
        font-size: 0.6rem;
    }

    .shape-tr {
        padding: 0.9rem 0.75rem;
    }

    .chart-container {
        gap: 3px;
        padding: 0.2rem 0 0;
    }

    .bar {
        max-width: 16px;
        border-radius: 5px;
    }

    .lbl {
        font-size: 0.5rem;
    }

    /* Man card: imagem responsiva dentro do grid */
    .man-card img {
        position: absolute;
        bottom: -1.5rem;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        height: 115%;
        object-fit: cover;
        object-position: center top;
    }

    /* Mobile Project Title Style */
    .project-card-title {
        text-align: center;
        font-size: 1.5rem;
        margin-bottom: 1rem;
        display: block;
    }

    /* Force visibility for selector on mobile */
    .project-selector {
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
    }
}

/* ==========================================
   LEAD CAPTURE MODAL (LIQUID CLEAN REBORN)
   ========================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100001;
    overflow-y: auto;
    padding: 2.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-liquid-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-liquid-bg {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(40px) saturate(150%) !important;
    -webkit-backdrop-filter: blur(40px) saturate(150%) !important;
    border: 1px solid rgba(255, 255, 255, 0.8);
    /* Organic Liquid Shape */
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    box-shadow: 0 40px 100px rgba(106, 115, 217, 0.15);
    z-index: -1;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.modal-overlay.active .modal-liquid-bg {
    transform: scale(1.15);
    border-radius: 40% 60% 50% 50% / 40% 40% 60% 60%;
}

.modal-content-clean {
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 10;
}

.modal-header-clean {
    margin-bottom: 2.5rem;
}

.modal-title-clean {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.04em;
    margin-bottom: 0.5rem;
}

.modal-subtitle-clean {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

.modal-form-clean {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group-clean input,
.form-group-clean select {
    width: 100%;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 1.1rem 1.5rem;
    border-radius: 24px;
    font-family: var(--font-ui);
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.form-group-clean input:focus,
.form-group-clean select:focus {
    outline: 2px solid #6a73d9;
    outline-offset: 2px;
    background: #ffffff;
    border-color: #6a73d9;
    box-shadow: 0 10px 30px rgba(106, 115, 217, 0.1);
}

.btn-submit-clean {
    margin-top: 1rem;
    padding: 1.2rem;
    font-size: 1rem;
    gap: 0.75rem;
    border-radius: 24px;
    width: 100%;
    justify-content: center;
}

.modal-close {
    position: absolute;
    top: -2rem;
    right: 0;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.modal-close:hover {
    transform: rotate(90deg);
    background: #000;
    color: #fff;
}

/* Floating context orbs inside modal */
.modal-float-orb {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    filter: blur(40px);
    opacity: 0.4;
}

.modal-orb-1 {
    width: 150px;
    height: 150px;
    background: var(--pastel-purple);
    top: -20px;
    right: -20px;
    animation: aura-infinite-orbit 10s infinite reverse;
}

.modal-orb-2 {
    width: 120px;
    height: 120px;
    background: var(--pastel-mint);
    bottom: -30px;
    left: -30px;
    animation: aura-infinite-orbit 15s infinite;
}

/* ==========================================
   ACESSIBILIDADE: Utilitários Globais
   ========================================== */

/* Classe para ocultar visualmente mas manter acessível a leitores de tela */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Link de pular navegação (skip-to-content) */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 9999;
    padding: 0.75rem 1.5rem;
    background: #191919;
    color: #ffffff;
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid #6a73d9;
    outline-offset: 2px;
}

/* Focus visível global para todos os elementos interativos */
:focus-visible {
    outline: 2px solid #6a73d9;
    outline-offset: 3px;
    border-radius: 4px;
}

/* Remover outline padrão apenas quando focus-visible é suportado */
:focus:not(:focus-visible) {
    outline: none;
}

@media (max-width: 600px) {
    .modal-liquid-container {
        padding: 2rem;
    }

    .modal-liquid-bg {
        border-radius: 30px !important;
        transform: scale(1) !important;
    }

    .modal-title-clean {
        font-size: 1.8rem;
    }
}

/* --- Language Switcher --- */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-right: 0.5rem;
}

.btn-lang {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-lang:hover {
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.03);
}

.btn-lang.active {
    color: #6a73d9;
    background: rgba(106, 115, 217, 0.05);
}

.lang-divider {
    width: 1px;
    height: 10px;
    background: rgba(0, 0, 0, 0.1);
}

/* --- High-Conversion Modal Refinements --- */
.modal-form-clean .form-group-clean {
    text-align: left;
}

.modal-form-clean label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #6a73d9;
    margin-bottom: 0.5rem;
    margin-left: 0.5rem;
    opacity: 0.9;
}

.modal-footer-clean {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.modal-trust-line {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    opacity: 0.8;
}

.modal-title-clean {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

.modal-subtitle-clean {
    margin-top: 0.75rem;
    opacity: 0.85;
}

/* --- Mobile Menu Lang Switcher --- */
.mobile-menu-content .lang-switcher {
    margin: 2rem 0;
    justify-content: center;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    width: fit-content;
    align-self: center;
}

.mobile-menu-content .btn-lang {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    color: var(--text-primary);
}

.mobile-menu-content .btn-lang.active {
    color: #6a73d9;
    background: transparent;
    font-weight: 800;
}

.mobile-menu-content .lang-divider {
    background: rgba(0, 0, 0, 0.1);
    height: 15px;
}

.modal-trust-line {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    opacity: 0.6;
    text-align: center;
    width: 100%;
}

/* --- Success State & Spinner --- */
.btn-submit-clean.loading {
    color: transparent !important;
    pointer-events: none;
}

.btn-submit-clean.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.modal-success-clean {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1.5rem;
    animation: successFadeIn 0.6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes successFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.success-icon-box {
    width: 80px;
    height: 80px;
    background: #6a73d9;
    background: linear-gradient(135deg, #6a73d9 0%, #a8afff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 15px 35px rgba(106, 115, 217, 0.3);
    position: relative;
    animation: iconPop 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s forwards;
    opacity: 0;
    transform: scale(0.5);
}

@keyframes iconPop {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon-box svg {
    color: white;
    width: 40px;
    height: 40px;
}

.modal-success-clean h3 {
    font-size: 1.6rem;
    font-family: var(--font-display);
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    font-weight: 800;
}

.modal-success-clean p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* --- SEÇÃO COMO FUNCIONA (SaaS Modern) --- */
.section-works {
    padding: 8rem 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.section-works .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.works-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.works-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.works-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.work-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 32px;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 10px 15px -3px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.work-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 20px 40px -10px rgba(106, 115, 217, 0.12),
        0 0 0 1px rgba(106, 115, 217, 0.05);
}

.work-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.work-card:hover .work-icon-box {
    transform: scale(1.1);
}

.work-icon-box svg {
    width: 28px;
    height: 28px;
}

/* Tipos de ícones coloridos */
.box-blue {
    background: #eef2ff;
    color: #4f46e5;
}

.box-purple {
    background: #f5f3ff;
    color: #7c3aed;
}

.box-pink {
    background: #fdf2f8;
    color: #db2777;
}

.work-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.work-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.works-cta {
    text-align: center;
}

/* Responsividade Mobile */
@media (max-width: 991px) {
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-works {
        padding: 5rem 0;
    }

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

    .works-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .work-card {
        padding: 2.5rem 2rem;
    }
}

/* --- Instagram Section Overrides (ZigZag) --- */
.section-instagram {
    padding-bottom: 10rem;
    background: transparent;
}

.visuals-left {
    order: -1;
}

.content-right {
    padding-left: 5rem;
    justify-content: flex-start !important;
    max-width: none !important;
    /* Allow full span to reach grid edge (navbar right edge) */
}

/* Instagram Refined Section Styling */
.section-instagram {
    position: relative;
    overflow: hidden;
}

.section-instagram .hero-title .text-highlight {
    background: linear-gradient(90deg, #833AB4, #C13584, #FD1D1D, #FCAF45);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding-bottom: 0.2em;
    margin-bottom: -0.2em;
}

.text-highlight-wa {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(90deg, #25D366, #128C7E, #075E54) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    display: inline-block;
    line-height: 1.1;
    padding-bottom: 0.1em;
    letter-spacing: -0.03em;
    margin-top: -0.2em;
    margin-bottom: 2.4rem;
}

@media (max-width: 768px) {

    .text-highlight-wa,
    .text-highlight-ig {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
    }
}

.text-highlight-ig {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(90deg, #833AB4, #C13584, #FD1D1D, #FCAF45) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    display: inline-block;
    line-height: 1.1;
    padding-bottom: 0.1em;
    letter-spacing: -0.03em;
    margin-top: -0.2em;
    margin-bottom: 2.4rem;
}

.section-instagram .hero-description {
    color: #777 !important;
}

.section-instagram .ig-main-desc {
    color: #777 !important;
}

.content-right .sol-text-content {
    max-width: 580px;
    /* Preserve text width */
}

/* Decorative Shape Adjusted for Refined Palette */
.bg-ig-pink {
    background:
        radial-gradient(circle at 20% 30%, rgba(131, 58, 180, 0.12), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(253, 29, 29, 0.10), transparent 40%),
        #F7F8FC !important;
    border-color: rgba(131, 58, 180, 0.1) !important;
    clip-path: url(#clip-ig) !important;
    left: auto !important;
    right: -8.1% !important;
    width: 108.1% !important;
}

/* WhatsApp high-conversion CTA button */
.btn-wa-cta {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: #FFFFFF !important;
    border: none !important;
    border-radius: 100px !important;
    padding: 12px 24px !important;
    font-size: 1rem;
    font-weight: 700 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
    z-index: 1;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.15);
    text-decoration: none;
    cursor: pointer;
}

.btn-success-wa {
    animation: pulse-visit 2s infinite;
    margin-top: 1.5rem;
}

.btn-wa-cta:hover {
    transform: scale(1.03) translateY(-3px);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%) !important;
    /* Inverted for energy */
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.3);
}

.btn-wa-cta:active {
    transform: scale(0.98) translateY(0);
}

/* Subtle sheen animation for WhatsApp premium feel */
.btn-wa-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    transition: none;
    pointer-events: none;
    z-index: 2;
}

.btn-wa-cta:hover::after {
    left: 140%;
    transition: all 0.8s ease-in-out;
}

.btn-wa-cta .wa-icon {
    width: 22px;
    height: 22px;
    stroke-width: 2.5;
    position: relative;
    z-index: 3;
}

/* Instagram section button style - Modern, High-Conversive Gradient */
.section-instagram .btn-primary {
    background: linear-gradient(135deg, #C026D3 0%, #EF4444 100%) !important;
    color: #FFFFFF !important;
    border: none !important;
    border-radius: 999px !important;
    padding: 0.9rem 2.4rem !important;
    font-size: 1rem;
    font-weight: 700 !important;
    letter-spacing: -0.01em;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(192, 38, 211, 0.25);
    text-decoration: none;
    cursor: pointer;
}

.section-instagram .btn-primary:hover {
    transform: scale(1.03) translateY(-3px);
    background: linear-gradient(135deg, #EF4444 0%, #C026D3 100%) !important;
    /* Inverted for energy */
    box-shadow: 0 15px 35px rgba(239, 68, 68, 0.35);
}

.section-instagram .btn-primary:active {
    transform: scale(0.98) translateY(0);
}

/* Subtle sheen animation for premium feel */
.section-instagram .btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    transition: none;
    pointer-events: none;
    z-index: 2;
}

.section-instagram .btn-primary:hover::after {
    left: 140%;
    transition: all 0.8s ease-in-out;
}

/* Feature Nodes IG-Specific Positioning */
.node-ig-1 {
    top: 25%;
    right: -40px;
}

.node-ig-2 {
    bottom: 30%;
    right: -60px;
}

/* IG Screen Transitions */
.ig-screen {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.ig-screen.active-screen {
    opacity: 1;
}

/* IG Mockup UI Styles */
.phone-ig {
    border-color: rgba(193, 53, 132, 0.2);
}

.ig-header {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ig-body {
    background: #fff;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
}

.ig-screen {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* IG Post Screen */
.ig-post-img-stage {
    width: 100%;
    aspect-ratio: 1;
    background: url('assets/publi.webp') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.ig-post-actions {
    padding: 12px;
    display: flex;
    gap: 15px;
    font-size: 1.2rem;
}

.ig-comments-area {
    padding: 0 12px 12px;
}

.ig-comment {
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.ig-user-badge {
    font-weight: 700;
    margin-right: 5px;
}

.auto-trigger-label {
    display: inline-flex;
    align-items: center;
    background: rgba(150, 201, 61, 0.1);
    color: #96c93d;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 800;
    border: 1px solid rgba(150, 201, 61, 0.2);
    margin-top: 10px;
    opacity: 0;
    transition: all 0.5s ease;
}

/* IG Story Screen */
.ig-story {
    background: #000;
    position: relative;
    overflow: hidden;
}

.ig-story-img {
    flex: 1;
    background: url('assets/publi.webp') center/cover no-repeat;
}

.ig-story-footer {
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.ig-story-reply-box {
    width: 100%;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 100px;
    padding: 10px 20px;
    color: #fff;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

@keyframes story-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
        transform: scale(1);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
        transform: scale(1.02);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        transform: scale(1);
    }
}

.pulse-anim {
    animation: story-pulse 2s infinite;
}

.btn-pressed {
    transform: scale(0.95) !important;
    background: rgba(255, 255, 255, 0.3) !important;
    border-color: rgba(106, 115, 217, 0.8) !important;
}

.badge-highlight {
    background: #6A73D9 !important;
    color: #fff !important;
    box-shadow: 0 0 15px rgba(106, 115, 217, 0.5) !important;
    transform: scale(1.05) !important;
}

/* Chat Overrides IG */
.ig-chat {
    background: #fff;
    padding: 20px !important;
}

.ig-opts {
    margin-top: 20px;
}



/* --- HOW IT WORKS (Mosaic Content Cleaned) --- */

@media (max-width: 600px) {
    .section-how-it-works {
        padding: 80px 1.25rem;
    }

    .how-steps {
        grid-template-columns: 1fr;
    }

    .how-card {
        text-align: center;
        align-items: center;
    }
}


/* --- SEÇÃO SOLUÇÕES --- */
.section-solutions {
    padding-top: 1rem;
    padding-bottom: 4rem;
    position: relative;
    z-index: 5;
}

/* --- Soluções Header (Hero Identity) --- */
.sol-header {
    margin-bottom: 0;
    /* Removed margin to tighten connection */
    padding: 0 1rem;
    max-width: 800px;
}

.sol-header .hero-title {
    font-size: 3.8rem;
    margin-bottom: 0.5rem;
}

.sol-header .hero-description {
    font-size: 1.1rem;
    color: #777;
    line-height: 1.6;
    max-width: 600px;
}

/* --- Refined Soluções Content Grid --- */
.whatsapp__content,
.instagram__content {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
}

.sol-liquid-bg {
    position: absolute;
    top: -10%;
    /* Pulled UP to overlap/meet the header area */
    left: 0;
    width: 130%;
    height: 110%;
    clip-path: url(#clip-tr);
    background: rgba(150, 201, 61, 0.08);
    /* More subtle green glass */
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(150, 201, 61, 0.15);
    animation: aura-float 10s infinite ease-in-out;
    z-index: 1;
}

.sol-text-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 5rem 0 4rem 5rem;
    /* Increased top-padding from 2rem to 5rem */
}

.sol-featured-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1;
    color: var(--text-primary);
    max-width: 500px;
}

.sol-inner-desc {
    margin-bottom: 3.5rem;
    max-width: 420px;
    font-size: 1.1rem;
    color: #777;
    line-height: 1.6;
    opacity: 1;
}

.sol-benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 3.5rem;
}

.sol-benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 0.5px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    width: fit-content;
    cursor: default;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

/* Minimalist Index (01, 02, 03) */
.sol-benefit-item::after {
    content: attr(data-index);
    position: absolute;
    right: -25px;
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--text-secondary);
    opacity: 0.4;
    font-family: var(--font-display);
}

.sol-benefit-item:hover {
    transform: translateX(10px) scale(1.02);
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(150, 201, 61, 0.4);
    box-shadow: 0 8px 25px rgba(150, 201, 61, 0.1);
}

/* Staggered Timeline Flow */
.sol-benefit-item:nth-child(1) {
    margin-left: 40px;
}

.sol-benefit-item:nth-child(2) {
    margin-left: 20px;
}

.sol-benefit-item:nth-child(3) {
    margin-left: 50px;
}

.benefit-icon-box {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Glowing Indicator Dot */
.benefit-icon-box::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    bottom: -2px;
    right: -2px;
    box-shadow: 0 0 8px currentColor;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

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

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.benefit-icon-box.box-blue {
    color: #4f46e5;
}

.benefit-icon-box.box-purple {
    color: #7c3aed;
}

.benefit-icon-box.box-pink {
    color: #db2777;
}

.benefit-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.01em;
}

.sol-cta-wrapper {
    margin-top: 2rem;
    padding-left: 30px;
}

@keyframes aura-float {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg) scale(1);
    }

    50% {
        transform: translateY(-20px) rotate(-1deg) scale(1.02);
    }
}

@media (max-width: 900px) {
    .sol-liquid-bg {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        clip-path: none;
        border-radius: 24px;
        transform: none;
    }

    .sol-text-content {
        padding: 4rem 1.5rem;
    }

    .sol-inner-desc {
        max-width: 100%;
    }

    .sol-benefit-item {
        margin-left: 0 !important;
    }

    .sol-featured-title {
        font-size: 2.2rem;
    }

    .bg-ig-pink {
        clip-path: none !important;
        border-radius: 24px !important;
        right: 0 !important;
        width: 100% !important;
    }
}

.sol-featured-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

/* PHONE MOCKUP UI */
.whatsapp__visuals,
.instagram__visuals {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 320px;
    height: 650px;
    border-radius: 40px;
    background: #f9faff;
    border: 8px solid #ffffff;
    box-shadow:
        0 40px 80px rgba(131, 58, 180, 0.15),
        inset 0 0 0 2px rgba(220, 225, 240, 0.5),
        0 0 0 1px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    /* Hero visual style matching */
    transform: perspective(1000px) rotateY(7deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.phone-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-10px);
    box-shadow: 0 40px 80px rgba(106, 115, 217, 0.15);
}

.phone-mockup-whatsapp {
    width: 320px;
    height: 650px;
    border-radius: 40px;
    background: #f9faff;
    border: 8px solid #ffffff;
    box-shadow:
        0 40px 80px rgba(37, 211, 102, 0.15),
        inset 0 0 0 2px rgba(220, 225, 240, 0.5),
        0 0 0 1px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    /* Rotated left for WhatsApp section contrast */
    transform: perspective(1000px) rotateY(-7deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.phone-mockup-whatsapp:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-10px);
    box-shadow: 0 40px 80px rgba(106, 115, 217, 0.15);
}

.phone-header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 15px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 10;
}

.phone-status-bar {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111;
}

.phone-status-bar .icons {
    display: flex;
    gap: 4px;
}

.phone-cam-island {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 24px;
    background: #000;
    border-radius: 20px;
    z-index: 20;
}

.phone-contact-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 35px;
}

.back-btn {
    color: #6a73d9;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.phone-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 4px;
}

.phone-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.phone-info {
    display: flex;
    flex-direction: column;
}

.phone-name {
    font-weight: 700;
    font-size: 14px;
    color: #111;
}

.phone-status {
    font-size: 11px;
    color: #6a73d9;
    font-weight: 500;
}

.phone-body {
    flex: 1;
    padding: 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

#chat-container {
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ig-chat {
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* IG Story Screen */
.ig-story {
    flex: 1;
    background: #000;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.ig-story-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: url('assets/story-2.webp') center/cover no-repeat;
}

/* Hide scrollbar */
.phone-body::-webkit-scrollbar {
    width: 0;
}

.chat-msg {
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.4;
    max-width: 85%;
    animation: msg-pop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes msg-pop {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.chat-bot {
    background: white;
    color: #111;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.chat-user {
    background: #eef2ff;
    /* match visual identity */
    color: #111;
    /* or #4f46e5 for text */
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    box-shadow: 0 2px 4px rgba(106, 115, 217, 0.1);
}

.chat-options {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-self: flex-start;
    animation: msg-pop 0.3s 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.chat-opt {
    background: #fff;
    border: 1px solid #6a73d9;
    color: #6a73d9;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.chat-opt:hover {
    background: rgba(106, 115, 217, 0.05);
}

.chat-typing {
    display: flex;
    gap: 4px;
    align-items: center;
    background: white;
    padding: 12px 14px;
    border-radius: 12px;
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    width: fit-content;
    animation: msg-pop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.dot {
    width: 6px;
    height: 6px;
    background: #a0a0a0;
    border-radius: 50%;
    animation: type-bounce 1.4s infinite ease-in-out both;
}

.dot:nth-child(1) {
    animation-delay: -0.32s;
}

.dot:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes type-bounce {

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

    40% {
        transform: scale(1);
    }
}

.phone-footer {
    background: #f0f2f5;
    padding: 10px 15px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.phone-input-bar {
    background: #fff;
    border-radius: 20px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.ph-placeholder {
    color: #a0a0a0;
    font-size: 13px;
}

.ph-send {
    width: 28px;
    height: 28px;
    background: #6a73d9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.ph-send svg {
    width: 14px;
    height: 14px;
}

/* Responsiveness for Solutions */
@media (max-width: 900px) {
    .section-solutions .split-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .sol-header {
        margin-bottom: 3rem;
    }

    .sol-featured-title {
        font-size: 2rem;
    }

    .phone-mockup,
    .phone-mockup-whatsapp {
        transform: rotateY(0deg) rotateX(0deg);
    }
}

/* --- Creative Visual Stack (Outside the Box) --- */
.visual-stack-container {
    position: relative;
    width: 320px;
    height: 650px;
    margin: 0 auto 0 clamp(0px, 8vw, 120px);
}

.float-card {
    position: absolute;
    width: fit-content;
    min-width: 150px;
    max-width: 180px;
    padding: 0.8rem 1.25rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 25;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: none;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        max-width 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.4s ease,
        box-shadow 0.4s ease;
    overflow: hidden;
}

.float-card:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 30px 60px rgba(106, 115, 217, 0.18);
    max-width: 380px;
}

.float-card:hover .stat-label {
    white-space: nowrap;
    text-overflow: clip;
    overflow: visible;
}

@keyframes badge-label-reveal {
    from {
        opacity: 0;
        transform: translateX(-5px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.card-stat-1 {
    top: 12%;
    left: -160px;
    z-index: 30;
}

.card-stat-2 {
    top: 38%;
    right: -170px;
    z-index: 30;
}

.card-stat-3 {
    bottom: 12%;
    left: -150px;
    z-index: 30;
}

.stat-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.4rem;
    position: relative;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

/* Individual Icon Styles with Glow & Color */
.card-stat-1 .stat-icon {
    color: #f59e0b;
}

/* Satisfaction - Amber */
.card-stat-1 .stat-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
    opacity: 0.6;
}

.card-stat-2 .stat-icon {
    color: #3b82f6;
}

/* Speed - Blue */
.card-stat-2 .stat-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
    opacity: 0.6;
}

.card-stat-3 .stat-icon {
    color: #10b981;
}

/* Conversion - Emerald */
.card-stat-3 .stat-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
    opacity: 0.6;
}

.card-ig-stat-1 .stat-icon {
    color: #ec4899;
}

/* Heart - Pink */
.card-ig-stat-1 .stat-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.4);
    opacity: 0.6;
}

.card-ig-stat-2 .stat-icon {
    color: #8b5cf6;
}

/* Chart - Purple */
.card-ig-stat-2 .stat-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
    opacity: 0.6;
}

.card-ig-stat-3 .stat-icon {
    color: #6366f1;
}

/* Message - Indigo */
.card-ig-stat-3 .stat-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
    opacity: 0.6;
}

.float-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stat-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
    /* Ensures flex container can shrink for ellipsis */
    flex: 1;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 1.4rem;
    /* Slightly larger for impact */
    font-weight: 800;
    line-height: 1;
    margin-bottom: 2px;
    white-space: nowrap;
    position: relative;
    display: inline-block;

    /* Premium Text Rendering */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease;
}

/* Individual Stat Value Gradients & Shadows */
.card-stat-1 .stat-value {
    background-image: linear-gradient(135deg, #f59e0b, #fbbf24);
    filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.3));
}

/* Amb */
.card-stat-2 .stat-value {
    background-image: linear-gradient(135deg, #3b82f6, #60a5fa);
    filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.3));
}

/* Blu */
.card-stat-3 .stat-value {
    background-image: linear-gradient(135deg, #10b981, #34d399);
    filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.3));
}

/* Grn */

.card-ig-stat-1 .stat-value {
    background-image: linear-gradient(135deg, #ec4899, #f472b6);
    filter: drop-shadow(0 2px 4px rgba(236, 72, 153, 0.3));
}

/* Pnk */
.card-ig-stat-2 .stat-value {
    background-image: linear-gradient(135deg, #8b5cf6, #a78bfa);
    filter: drop-shadow(0 2px 4px rgba(139, 92, 246, 0.3));
}

/* Pur */
.card-ig-stat-3 .stat-value {
    background-image: linear-gradient(135deg, #6366f1, #818cf8);
    filter: drop-shadow(0 2px 4px rgba(99, 102, 241, 0.3));
}

/* Ind */

/* Shimmer Sheen Effect on Numbers */
.stat-value::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer-text 3s infinite;
}

@keyframes shimmer-text {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

.float-card:hover .stat-value {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

/* Floating Micro-animation for different depths */
@keyframes float-mini {

    0%,
    100% {
        transform: translateY(0px) rotate(var(--rot));
    }

    50% {
        transform: translateY(-8px) rotate(calc(var(--rot) + 2deg));
    }
}

.card-stat-1 {
    top: 12%;
    left: -160px;
    z-index: 30;
    --rot: -4deg;
    animation: float-mini 4s ease-in-out infinite;
}

.card-stat-2 {
    top: 38%;
    right: -170px;
    z-index: 30;
    --rot: 3deg;
    animation: float-mini 5s ease-in-out infinite;
}

.card-stat-3 {
    bottom: 12%;
    left: -150px;
    z-index: 30;
    --rot: -2deg;
    animation: float-mini 6s ease-in-out infinite;
}

.card-ig-stat-1 {
    top: 15%;
    left: -160px;
    --rot: -3deg;
    animation: float-mini 4.5s ease-in-out infinite;
}

.card-ig-stat-2 {
    top: 42%;
    right: -150px;
    --rot: 4deg;
    animation: float-mini 5.5s ease-in-out infinite;
}

.card-ig-stat-3 {
    bottom: 12%;
    left: -140px;
    --rot: -2deg;
    animation: float-mini 6.5s ease-in-out infinite;
}

@media (max-width: 1100px) {
    .card-ig-stat-1 {
        top: 10%;
        left: -40px;
    }

    .card-ig-stat-2 {
        top: 35%;
        right: -60px;
    }

    .card-ig-stat-3 {
        bottom: 10%;
        left: -30px;
    }
}

/* Animations */
.pulse {
    animation: pulse-ring 2s infinite;
}

[data-lucide] {
    stroke-width: 2.5px;
    width: 1.25em;
    height: 1.25em;
    vertical-align: sub;
    color: currentColor;
    transition: transform 0.2s ease;
}

.benefit-item:hover [data-lucide] {
    transform: scale(1.15) rotate(5deg);
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.95);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(0.95);
        opacity: 1;
    }
}

/* Modernized Benefits list on hover */
.sol-benefits li {
    padding: 0.8rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.sol-benefits li:hover {
    background: rgba(106, 115, 217, 0.05);
    transform: translateX(10px);
}

/* Mobile adjustments for floating cards */
@media (max-width: 1100px) {
    .card-stat-1 {
        left: -150px;
    }

    .card-stat-2 {
        right: -160px;
    }

    .card-stat-3 {
        left: -140px;
    }
}

@media (max-width: 900px) {
    .visual-stack-container {
        margin: 0 auto;
    }

    .float-card {
        width: fit-content;
        min-width: 100px;
        max-width: 130px;
        padding: 0.5rem 0.7rem;
        gap: 6px;
        font-size: 0.85rem;
    }

    .card-stat-1 {
        left: -140px;
        top: 10%;
    }

    .card-stat-2 {
        right: -140px;
        top: 35%;
    }

    .card-stat-3 {
        left: -140px;
        bottom: 10%;
    }
}

@media (max-width: 600px) {
    .float-card {
        display: none !important;
    }
}

/* --- RESTORED GRID AND SPACING FOR SOLUTIONS --- */
.container-premium {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}

.split-grid--reverse {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 8rem;
    align-items: center;
}

.split-grid--reverse .col--content {
    order: 2;
}

.split-grid--reverse .col--visuals {
    order: 1;
}

@media (max-width: 900px) {
    .split-grid--reverse {
        display: flex !important;
        flex-direction: column !important;
        gap: 3rem;
        text-align: center;
    }

    /* Conteúdo (texto) primeiro no mobile, depois o mockup */
    .split-grid--reverse .col--content {
        order: 1 !important;
        max-width: 100%;
        text-align: center;
    }

    .split-grid--reverse .col--visuals {
        order: 2 !important;
        max-width: 100%;
        text-align: center;
    }

    .instagram-app .sol-text-content {
        padding: 2rem 1.5rem !important;
        text-align: center;
    }

    .instagram-app .sol-liquid-bg {
        left: 0;
        right: 0;
        width: 100%;
    }
}

/* Specific spacing requested: Instagram right-side padding */
.instagram-app .instagram__content {
    justify-content: center !important;
}

.instagram-app .sol-text-content {
    padding: 3rem 0 3rem 5rem !important;
    /* Forces spacing between the phone and text */
    text-align: left;
}

.instagram-app .sol-liquid-bg {
    left: auto;
    right: 0;
    width: 130%;
}

@media (max-width: 768px) {

    .text-highlight-wa,
    .text-highlight-ig {
        font-size: 2.2rem !important;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .heading--section {
        font-size: 2rem;
    }
}

.sol-text-content .text-desc {
    margin: 0 0 2.5rem;
}

/* --- SITE & LANDING PAGES SECTION (Split Grid) --- */
.sites-app {
    padding-bottom: 2rem;
    background: transparent;
}

.sites-app .split-grid {
    align-items: flex-start;
}

.sites__content {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
}

.bg-sites-yellow {
    background:
        radial-gradient(circle at 30% 20%, rgba(253, 224, 143, 0.15), transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(186, 230, 253, 0.1), transparent 40%),
        #FEFCE8 !important;
    border-color: rgba(253, 224, 143, 0.2) !important;
    clip-path: url(#clip-tr) !important;
    left: -5% !important;
    width: 110% !important;
    height: 110% !important;
    position: absolute;
    top: -5%;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 1;
}

.text-highlight-sites {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(90deg, #F59E0B, #D97706, #B45309) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    display: inline-block;
    line-height: 1.1;
    padding-bottom: 0.1em;
    letter-spacing: -0.03em;
    margin-top: -0.2em;
    margin-bottom: 2.4rem;
}

.btn-sites-cta {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%) !important;
    color: #FFFFFF !important;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.2);
}

.btn-sites-cta:hover {
    background: linear-gradient(135deg, #D97706 0%, #F59E0B 100%) !important;
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.35);
    border: none !important;
    color: #FFFFFF !important;
}

.sites__visuals .visual-stack-container {
    height: 500px;
}

/* Browser Stack Visuals */
.browser-showcase-stack {
    position: relative;
    width: 100%;
    max-width: 550px;
    height: 400px;
    margin: 0 auto;
}

.browser-window {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    background: white;
}

.win-main {
    z-index: 10;
    width: 95%;
    height: 320px;
    top: 60px;
    left: 5%;
}

.win-back-1 {
    z-index: 5;
    width: 85%;
    height: 280px;
    top: 0;
    left: 0;
    opacity: 0.7;
}

.win-back-2 {
    z-index: 3;
    width: 75%;
    height: 240px;
    bottom: -20px;
    left: 10%;
    opacity: 0.5;
}

.browser-window:hover {
    z-index: 100;
    opacity: 1;
    transform: scale(1.05) translateY(-10px);
}

/* Stat Badge Positioning (Sites Specific) */
.card-site-stat-1 {
    bottom: 20% !important;
    left: -10% !important;
    z-index: 50;
}

.card-site-stat-2 {
    bottom: 20% !important;
    right: -10% !important;
    z-index: 50;
}

/* Preview Styles Adaptation */
.browser-window .mock-hero {
    padding: 2.5rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.browser-window .browser-header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.browser-window .dots {
    display: flex;
    gap: 7px;
}

.browser-window .dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #e2e8f0;
}

.win-main .dots span:nth-child(1) {
    background: #ff5f57;
}

.win-main .dots span:nth-child(2) {
    background: #ffbd2e;
}

.win-main .dots span:nth-child(3) {
    background: #28c940;
}

.browser-window .addr {
    font-size: 0.75rem;
    color: #94a3b8;
    background: #f1f5f9;
    padding: 3px 14px;
    border-radius: 100px;
    flex: 1;
    text-align: center;
    font-family: var(--font-ui);
}

/* Specific Mock Content - Minimalist for Browser Stack */
.marcenaria-preview {
    background: linear-gradient(135deg, #2c1e12 0%, #1a120b 100%);
    color: #fdf5e6;
}

.education-preview {
    background: #f8fafc;
    color: #1e3a8a;
}

.realestate-preview {
    background: #ffffff;
    color: #111827;
}

.browser-window h3 {
    font-size: 1.6rem;
    line-height: 1.1;
    font-family: var(--font-display);
    font-weight: 800;
    margin: 0.5rem 0;
}

.marcenaria-preview h3 span {
    color: #d4af37;
}

.education-preview h3 span {
    color: #3b82f6;
}

.realestate-preview h3 span {
    color: #10b981;
}

.browser-window .mock-btn {
    width: fit-content;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-top: auto;
}

.realestate-preview .mock-btn {
    background: #10b981;
    color: white;
}

/* --- REFINED BROWSER SHOWCASE --- */
.portfolio-screenshot {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 10s linear;
    /* Long duration for slow scroll */
    transform-origin: top;
}

.browser-window {
    cursor: pointer;
    overflow: hidden;
}

.browser-body {
    overflow: hidden;
    /* Important for scroll effect */
}

.browser-window:hover .portfolio-screenshot {
    transform: translateY(calc(-100% + 320px));
    /* Scrolls to bottom based on viewport height */
}

.win-back-1:hover .portfolio-screenshot {
    transform: translateY(calc(-100% + 280px));
}

.win-back-2:hover .portfolio-screenshot {
    transform: translateY(calc(-100% + 240px));
}

/* Staggered entry for the stack (more dynamic reveal) */
.browser-showcase-stack {
    perspective: 1000px;
}

.win-main {
    transform: translateZ(20px) rotateY(-5deg);
}

.win-back-1 {
    transform: translateZ(0) translateX(-10%) rotateY(-2deg);
}

.win-back-2 {
    transform: translateZ(-20px) translateX(-5%) translateY(10%) rotateY(2deg);
}

.browser-window:hover {
    transform: scale(1.08) translateZ(50px) rotateY(0) !important;
    z-index: 1000 !important;
    opacity: 1 !important;
    filter: blur(0) !important;
}

/* Glass header improvement */
.browser-header {
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* --- INTERACTIVE PROJECT SELECTOR --- */
.project-selector {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
    padding-left: 0;
}

.selector-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem 2rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    overflow: hidden;
}

.selector-item:hover {
    border-color: rgba(245, 158, 11, 0.5) !important;
    background: rgba(255, 255, 255, 0.7) !important;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.08);
}

.selector-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.1), transparent);
    transition: width 0.4s ease;
}

.selector-item.active {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(245, 158, 11, 0.4);
    transform: translateX(15px);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.1);
}

.selector-item.active::before {
    width: 60%;
}

.sel-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: #cbd5e1;
    transition: color 0.4s ease;
}

.selector-item.active .sel-num {
    color: #F59E0B;
}

.sel-txt {
    display: flex;
    flex-direction: column;
}

.sel-label {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-primary);
}

.sel-desc {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
}

/* Adaptive Showcase */
.sites__visuals {
    padding-top: 5rem;
}

.adaptive-showcase {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.browser-frame {
    width: 100%;
    height: 420px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    z-index: 10;
}

.browser-top {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.browser-url-bar {
    flex: 1;
    background: #f1f5f9;
    padding: 5px 18px;
    border-radius: 100px;
    font-size: 0.8rem;
    color: #64748b;
    font-family: var(--font-ui);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-visit-site {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #F59E0B;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.btn-visit-site:hover {
    transform: scale(1.1) rotate(15deg);
    background: #D97706;
}

.browser-screen {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #111;
    /* Dark background to match premium look and avoid white stripes */
}

.scr-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    /* Restores natural proportion */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease, transform 10s linear;
    transform-origin: top;

    /* 🚀 IMAGE QUALITY OPTIMIZATION */
    image-rendering: -webkit-optimize-contrast;
    /* Webkit crispness */
    image-rendering: crisp-edges;
    /* Modern browsers sharpness */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    /* Hardware Acceleration (Fixes Blurring) */
}

.scr-img.active {
    opacity: 1;
    visibility: visible;
}

.browser-screen:hover .scr-img.active {
    transform: translateY(calc(-100% + 360px));
}

/* Accent Orbs */
.showcase-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.4;
    animation: aura-infinite-orbit 20s infinite ease-in-out;
}

.showcase-orb-1 {
    background: rgba(245, 158, 11, 0.2);
    top: -10%;
    right: -10%;
}

.showcase-orb-2 {
    background: rgba(186, 230, 253, 0.2);
    bottom: -10%;
    left: -10%;
    animation-delay: -5s;
}

@media (max-width: 768px) {
    .project-selector {
        padding-left: 0;
    }

    .selector-item.active {
        transform: translateX(5px);
    }
}

/* --- SHOWCASE CAPTION --- */
.showcase-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    z-index: 10;
}

.showcase-caption {
    padding: 1rem 1.5rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.showcase-caption p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
    transition: opacity 0.3s ease;
}

/* Adjusting Selector without sub-label */
.selector-item {
    padding: 1rem 1.5rem;
}

.selector-item .sel-label {
    font-size: 1.2rem;
}

/* --- FIX FOR SITE STAT CARDS --- */
.card-site-stat-1 .stat-value {
    background-image: linear-gradient(135deg, #F59E0B, #D97706);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.3));
}

.card-site-stat-2 .stat-value {
    background-image: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.3));
}

/* Ensuring float-card layout handles icons and content correctly */
.float-card .stat-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Specific fix for badge text visibility and spacing */
.card-site-stat-1,
.card-site-stat-2 {
    min-width: 160px !important;
}

.float-card .stat-value {
    -webkit-text-fill-color: initial !important;
    /* Reset so it uses the background-clip properly */
    display: block;
    width: 100%;
}

/* --- BUTTON CONSISTENCY & PULSE ANIMATION --- */
.btn-sites-cta {
    /* Ensuring it matches the padding and behavior of others */
    min-width: 280px;
    /* Standardize width to match the longer Instagram/WhatsApp labels */
    justify-content: center;
}

.btn-visit-site {
    animation: pulse-visit 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

@keyframes pulse-visit {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 12px rgba(245, 158, 11, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
    }
}

/* --- Solution Section Button Standardization --- */
.section-solutions .btn-primary,
.btn-sites-cta,
.btn-wa-cta {
    min-width: 290px !important;
    height: 54px !important;
    padding: 0.9rem 2.4rem !important;
    /* Uniform deep padding */
    font-size: 1rem !important;
    /* Standard premium text size */
    font-weight: 700 !important;
    letter-spacing: -0.01em !important;
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    border-radius: 999px !important;
    /* Pill shape consistency */
}

@media (max-width: 768px) {

    .section-solutions .btn-primary,
    .btn-sites-cta,
    .btn-wa-cta {
        min-width: 100% !important;
        padding: 0.9rem 1.5rem !important;
    }
}

/* --- PREMIUM FOOTER (Vieira Planejados Style) --- */
.main-footer {
    padding-top: 100px;
    background: #fcfaff;
    margin-top: -80px;
    position: relative;
    z-index: 5;
    padding-left: 2rem;
    padding-right: 2rem;
}

.footer-container {
    background: white !important;
    border-radius: 80px 80px 0 0 !important;
    padding: 80px 8% 40px 8% !important;
    border: none !important;
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.05) !important;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 45px;
    margin-bottom: 25px;
}

.footer-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 280px;
    text-align: left;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #6a73d9;
    /* Orzag brand blue */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
    background: #4f46e5;
    box-shadow: 0 5px 15px rgba(106, 115, 217, 0.3);
}

.footer-title {
    color: #6a73d9;
    /* Section titles in brand color */
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-align: left;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #6a73d9;
}

.contact-item {
    margin-bottom: 20px;
    text-align: left;
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(106, 115, 217, 0.6);
    /* Brand Indigo with Opacity */
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


.contact-val {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.contact-cta {
    margin-top: 30px;
    text-align: left;
}

.contact-cta .btn {
    min-width: 200px !important;
    height: 48px !important;
    font-size: 0.9rem !important;
}

/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid #f1f5f9;
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.bottom-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.bottom-left p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-decoration: none;
}

.legal-links a:hover {
    text-decoration: underline;
}

.bottom-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dev-by {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.dev-logo {
    height: 24px;
    opacity: 0.8;
}

/* Mobile Adjustments for Footer */
@media (max-width: 768px) {
    .main-footer {
        padding-top: 60px;
        margin-top: -40px;
    }

    .footer-container {
        border-radius: 40px 40px 0 0 !important;
        padding: 60px 20px 40px 20px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-desc,
    .footer-title,
    .footer-links,
    .contact-item,
    .contact-cta,
    .bottom-left {
        text-align: center;
    }

    .footer-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
    }

    .bottom-right {
        justify-content: center;
        margin-top: 10px;
    }
}

/* =========================================
   LIQUID SOCIAL PROOF (Out of the Box)
   ========================================= */
.section-creative-proof {
    position: relative;
    padding: 10rem 0 12rem;
    overflow: hidden;
    background-color: transparent;
    /* Combines perfectly with Hero transparent BG */
}

/* Biomorphic Background Orbs */
.proof-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.5;
    pointer-events: none;
    animation: aura-infinite-orbit 20s infinite alternate ease-in-out;
}

.proof-orb-1 {
    width: 600px;
    height: 600px;
    background: rgba(168, 85, 247, 0.15);
    top: -100px;
    left: -100px;
}

.proof-orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(106, 115, 217, 0.15);
    bottom: -100px;
    right: -50px;
    animation-delay: -5s;
}

.proof-orb-3 {
    width: 500px;
    height: 500px;
    background: rgba(168, 241, 208, 0.1);
    top: 30%;
    left: 50%;
    animation-delay: -10s;
    transform: translateX(-50%);
}

.proof-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 10;
}

/* Header */
.proof-header {
    text-align: center;
    margin-bottom: 8rem;
}

.proof-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(106, 115, 217, 0.15);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6a73d9;
    backdrop-filter: blur(10px);
    margin-bottom: 24px;
}

.proof-tag span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #a855f7;
    box-shadow: 0 0 12px #a855f7;
    display: inline-block;
    animation: proof-pulse 2s infinite;
}

.proof-title {
    font-family: var(--font-display);
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: var(--text-primary);
}

.proof-title-accent {
    background: linear-gradient(135deg, #6a73d9 0%, #a855f7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Staggered Floating Grid */
.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
}

.proof-card-wrapper {
    position: relative;
    z-index: 1;
    animation: proof-float-vertical 6s infinite ease-in-out;
}

.proof-card-wrapper:nth-child(2) {
    margin-top: 100px;
    animation-delay: -2s;
}

.proof-card-wrapper:nth-child(3) {
    margin-top: 50px;
    animation-delay: -4s;
}

@keyframes proof-float-vertical {

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

    50% {
        transform: translateY(-15px);
    }
}

/* Hovering Glow (The "soul" of the card) */
.proof-card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    filter: blur(50px);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.proof-card-wrapper:hover .proof-card-glow {
    opacity: 1;
}

/* The Glass Capsule */
.proof-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.3) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 1);
    border-left: 1px solid rgba(255, 255, 255, 1);
    border-radius: 36px;
    padding: 60px 40px 40px;
    box-shadow: var(--shadow-floating);
    text-align: center;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.proof-card-wrapper:hover .proof-card {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px -20px rgba(106, 115, 217, 0.3);
}

.proof-quote-icon {
    position: absolute;
    top: -15px;
    left: 30px;
    font-family: Georgia, serif;
    font-size: 6rem;
    line-height: 1;
    color: #a855f7;
    opacity: 0.1;
    pointer-events: none;
}

/* Floating Avatar Ring */
.proof-avatar-box {
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 110px;
    z-index: 2;
    border-radius: 50%;
    padding: 6px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.15);
}

.proof-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.8rem;
    color: #fff;
    border: 4px solid #fff;
}

.av-p1 {
    background: linear-gradient(135deg, #FF9A9E, #FECFEF);
    color: #db2777;
}

.av-p2 {
    background: linear-gradient(135deg, #a18cd1, #6a73d9);
    color: white;
}

.av-p3 {
    background: linear-gradient(135deg, #84fab0, #8fd3f4);
    color: #059669;
}

.proof-text {
    font-family: var(--font-display);
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.proof-author {
    margin-bottom: 25px;
}

.proof-name {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-primary);
}

.proof-role {
    font-size: 0.85rem;
    color: #6a73d9;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.proof-result-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(106, 115, 217, 0.08);
    border: 1px solid rgba(106, 115, 217, 0.15);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 800;
    color: #6a73d9;
    width: 100%;
    transition: all 0.3s ease;
}

.proof-card-wrapper:hover .proof-result-badge {
    background: rgba(106, 115, 217, 0.15);
}

.proof-result-badge.magenta {
    background: rgba(168, 85, 247, 0.08);
    border-color: rgba(168, 85, 247, 0.15);
    color: #a855f7;
}

.proof-card-wrapper:hover .proof-result-badge.magenta {
    background: rgba(168, 85, 247, 0.15);
}

.proof-result-badge.emerald {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.15);
    color: #059669;
}

.proof-card-wrapper:hover .proof-result-badge.emerald {
    background: rgba(16, 185, 129, 0.15);
}

@keyframes proof-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.8);
        opacity: 0.3;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 991px) {
    .proof-grid {
        grid-template-columns: 1fr;
        gap: 80px;
        max-width: 500px;
        margin: 0 auto;
    }

    .proof-card-wrapper {
        animation: none;
    }

    .proof-card-wrapper:hover .proof-card {
        transform: translateY(-5px);
    }

    .proof-card-wrapper:nth-child(2),
    .proof-card-wrapper:nth-child(3) {
        margin-top: 0;
    }

    .proof-title {
        font-size: 2.8rem;
    }

    .proof-header {
        margin-bottom: 6rem;
    }
}

@media (max-width: 480px) {
    .proof-title {
        font-size: 2.2rem;
    }

    .proof-card {
        padding: 50px 20px 30px;
    }
}

/* ==========================================
   TESTIMONIALS v6 — HORIZONTAL CARDS CAROUSEL
   ========================================== */

/* ==========================================
   TESTIMONIALS — BENTO GRID
   ========================================== */

/* Entrance keyframes */
@keyframes testi-slide-left {
    from {
        opacity: 0;
        transform: translateX(-50px) rotate(-1.2deg);
    }

    to {
        opacity: 1;
        transform: translateX(0) rotate(-1.2deg);
    }
}

@keyframes testi-slide-up-1 {
    from {
        opacity: 0;
        transform: translateY(40px) rotate(0.8deg);
    }

    to {
        opacity: 1;
        transform: translateY(0) rotate(0.8deg);
    }
}

@keyframes testi-slide-up-2 {
    from {
        opacity: 0;
        transform: translateY(50px) rotate(-0.6deg);
    }

    to {
        opacity: 1;
        transform: translateY(0) rotate(-0.6deg);
    }
}

@keyframes testi-header-up {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes testi-bar-grow {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

@keyframes testi-shimmer-sweep {
    0% {
        transform: translateX(-120%) skewX(-12deg);
    }

    100% {
        transform: translateX(220%) skewX(-12deg);
    }
}

.testi-section {
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    background-image: radial-gradient(circle, rgba(106, 115, 217, 0.065) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* --- Background decoration --- */
.testi-bg-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.testi-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
}

.testi-orb-1 {
    width: 700px;
    height: 700px;
    background: rgba(106, 115, 217, 0.05);
    top: -200px;
    right: -180px;
}

.testi-orb-2 {
    width: 500px;
    height: 500px;
    background: rgba(154, 194, 93, 0.05);
    bottom: -120px;
    left: -120px;
}

.testi-orb-3 {
    width: 350px;
    height: 350px;
    background: rgba(232, 131, 58, 0.04);
    top: 35%;
    left: 38%;
}

.testi-big-quote {
    position: absolute;
    font-family: var(--font-display);
    font-size: clamp(280px, 40vw, 520px);
    font-weight: 900;
    color: rgba(106, 115, 217, 0.045);
    line-height: 0.75;
    top: -60px;
    left: -40px;
    user-select: none;
    pointer-events: none;
    letter-spacing: -0.05em;
}

/* --- Container --- */
.testi-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* --- Header --- */
.testi-header {
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
}

.testi-header.testi-revealed {
    animation: testi-header-up 0.7s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.testi-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    border-radius: 100px;
    padding: 0.45rem 1.1rem;
    font-family: var(--font-ui);
    font-size: 0.82rem;
    font-weight: 600;
    color: #1a1a2e;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    width: fit-content;
    border: 1px solid rgba(106, 115, 217, 0.1);
}

.testi-stars-badge {
    color: #f59e0b;
    letter-spacing: 2px;
    font-size: 0.78rem;
}

.testi-heading {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    color: #474747;
    line-height: 1.1;
    letter-spacing: -0.035em;
    margin: 0;
}

.testi-heading em {
    font-style: normal;
    color: #6a73d9;
}

.testi-subheading {
    font-family: var(--font-ui);
    font-size: 1.1rem;
    color: #777;
    margin: 0;
    max-width: 480px;
}

/* --- Bento Grid --- */
.testi-bento {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.5rem;
    align-items: start;
}

.testi-col-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* --- Base Card --- */
.testi-card {
    background: #fff;
    border-radius: 28px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    opacity: 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    /* inner glow via CSS variable, updated by JS on mousemove */
    background-image: radial-gradient(circle 180px at var(--glow-x, 50%) var(--glow-y, 50%),
            var(--glow-color, rgba(106, 115, 217, 0)),
            transparent 70%);
    will-change: transform;
}

/* Entrance: featured slides from left */
.testi-card--featured.testi-revealed {
    animation: testi-slide-left 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* Compact cards slide up with stagger */
.testi-card--compact.testi-revealed-1 {
    animation: testi-slide-up-1 0.7s cubic-bezier(0.23, 1, 0.32, 1) 0.15s forwards;
}

.testi-card--compact.testi-revealed-2 {
    animation: testi-slide-up-2 0.7s cubic-bezier(0.23, 1, 0.32, 1) 0.3s forwards;
}

.testi-card:hover {
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.1), 0 6px 16px rgba(0, 0, 0, 0.06);
}

/* Shimmer sweep on hover */
.testi-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(105deg,
            transparent 20%,
            rgba(255, 255, 255, 0.55) 50%,
            transparent 80%);
    transform: translateX(-150%) skewX(-12deg);
    pointer-events: none;
    border-radius: 28px;
}

.testi-card:hover::after {
    animation: testi-shimmer-sweep 0.65s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Colored top accent bar */
.testi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 28px 28px 0 0;
    transform: scaleX(0);
    transform-origin: left;
}

.testi-card.testi-revealed::before,
.testi-card.testi-revealed-1::before,
.testi-card.testi-revealed-2::before {
    animation: testi-bar-grow 0.55s cubic-bezier(0.23, 1, 0.32, 1) 0.5s forwards;
}

.testi-card--orange::before {
    background: linear-gradient(90deg, #E8833A, #f5b076);
}

.testi-card--blue::before {
    background: linear-gradient(90deg, #5B7FD9, #8aaaf5);
}

.testi-card--green::before {
    background: linear-gradient(90deg, #9AC25D, #bedd80);
}

/* Glow color per card type (used by JS) */
.testi-card--orange {
    --glow-color: rgba(232, 131, 58, 0.08);
}

.testi-card--blue {
    --glow-color: rgba(91, 127, 217, 0.08);
}

.testi-card--green {
    --glow-color: rgba(154, 194, 93, 0.08);
}

/* --- Featured Card --- */
.testi-card--featured {
    padding: 3rem 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* --- Compact Cards --- */
.testi-card--compact {
    padding: 2rem 2.2rem;
}

/* --- Big decorative quote inside card --- */
.testi-card-quote-mark {
    position: absolute;
    top: 1.2rem;
    right: 1.8rem;
    font-family: var(--font-display);
    font-size: 6rem;
    line-height: 1;
    font-weight: 900;
    opacity: 0.07;
    pointer-events: none;
    user-select: none;
    transition: opacity 0.3s ease;
}

.testi-card--orange .testi-card-quote-mark {
    color: #E8833A;
}

.testi-card--blue .testi-card-quote-mark {
    color: #5B7FD9;
}

.testi-card--green .testi-card-quote-mark {
    color: #9AC25D;
}

.testi-card:hover .testi-card-quote-mark {
    opacity: 0.13;
}

/* --- Card Header (compact) --- */
.testi-card-header-inner {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
}

/* --- Card Text --- */
.testi-card-text {
    font-family: var(--font-ui);
    font-size: 1rem;
    line-height: 1.8;
    color: #5a5a72;
    margin: 0;
    position: relative;
    z-index: 1;
}

.testi-card--featured .testi-card-text {
    font-size: 1.08rem;
}

.testi-card-text strong {
    color: #1a1a2e;
    font-weight: 700;
}

/* --- Card Footer (featured) --- */
.testi-card-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    margin-top: auto;
}

/* --- Avatar --- */
.testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.testi-avatar--orange {
    background: linear-gradient(135deg, #E8833A 0%, #f5b076 100%);
}

.testi-avatar--blue {
    background: linear-gradient(135deg, #5B7FD9 0%, #8aaaf5 100%);
}

.testi-avatar--green {
    background: linear-gradient(135deg, #9AC25D 0%, #bedd80 100%);
}

/* --- Client Info --- */
.testi-client-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.testi-client-info strong {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testi-client-info span {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: #9a9aae;
}

/* --- Stars --- */
.testi-stars-small {
    color: #f59e0b;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    flex-shrink: 0;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .testi-bento {
        grid-template-columns: 1fr;
    }

    .testi-big-quote {
        font-size: 200px;
        top: -20px;
        left: -20px;
    }
}




.testimonials-section {
    background: transparent;
    padding: 100px 60px;
    margin: 0;
    overflow: visible;
}

.testimonials-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 100px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ---- LEFT MOCKUP ---- */
.testi-mockup {
    position: relative;
    width: 100%;
    min-height: 420px;
}

/* Floating user icon circle */
.testi-user-icon {
    position: absolute;
    top: 5px;
    left: -15px;
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.18);
    z-index: 3;
}

/* Pink main card */
.testi-pink-card {
    position: relative;
    width: 75%;
    height: 320px;
    background: linear-gradient(135deg, #f72585 0%, #e040fb 50%, #d946ef 100%);
    border-radius: 28px;
    top: 40px;
    left: 20px;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 25px 60px rgba(247, 37, 133, 0.25);
}

/* Person photo — real centered image inside card */
.testi-person-photo {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    max-width: 220px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.testi-person-photo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center bottom;
    border-radius: 0;
    filter: drop-shadow(0 -4px 20px rgba(0, 0, 0, 0.15));
}

/* Circular avatar in floating user icon */
.testi-user-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
}

/* Rating pill */
.testi-rating-pill {
    position: absolute;
    top: 18px;
    right: 16px;
    background: #fff;
    border-radius: 50px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 0.88rem;
    font-weight: 700;
    color: #111;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    white-space: nowrap;
    z-index: 4;
}

.testi-star-green {
    color: #22c55e;
    font-size: 1.1rem;
}

.testi-star-yellow {
    color: #f59e0b;
    font-size: 1.1rem;
}

.testi-client-name {
    color: #111;
}

.testi-score {
    color: #6b7280;
    font-weight: 500;
}

/* Purple ratings card */
.testi-purple-card {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 210px;
    background: linear-gradient(155deg, #a78bfa 0%, #8b5cf6 40%, #7c3aed 100%);
    border-radius: 24px;
    padding: 22px 20px 18px;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.28);
}

.testi-card-star-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.testi-card-star-icon svg {
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

.testi-rating-rows {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.testi-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testi-bar {
    height: 7px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 6px;
    flex: 1;
}

.testi-bar-short {
    flex: 0.55;
}

.testi-bar-medium {
    flex: 0.78;
}

.testi-avatars {
    display: flex;
}

.testi-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2.5px solid rgba(255, 255, 255, 0.6);
    margin-right: -7px;
}

.testi-avatar.av1 {
    background: linear-gradient(135deg, #f97316, #fbbf24);
}

.testi-avatar.av2 {
    background: linear-gradient(135deg, #ec4899, #f43f5e);
}

.testi-avatar.av3 {
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
}

.testi-avatar.av4 {
    background: linear-gradient(135deg, #84cc16, #22c55e);
}

/* ---- RIGHT QUOTE ---- */
.testi-quote-col {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.testi-quote-marks {
    line-height: 1;
}

.testi-text {
    font-family: var(--font-ui);
    font-size: 1.35rem;
    font-weight: 400;
    color: #1f2937;
    line-height: 1.75;
    letter-spacing: -0.01em;
}

.testi-attribution {
    font-family: var(--font-ui);
    font-size: 1.05rem;
    color: #374151;
}

.testi-attribution strong {
    font-weight: 700;
    color: #111827;
    font-size: 1.1rem;
}

.testi-trustpilot {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-ui);
    font-size: 1.15rem;
    font-weight: 600;
    color: #9ca3af;
    margin-top: 8px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    .testimonials-section {
        padding: 60px 32px;
    }

    .testimonials-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .testi-mockup {
        min-height: 360px;
        max-width: 420px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 48px 20px;
    }

    .testi-text {
        font-size: 1.05rem;
    }

    .testi-pink-card {
        height: 260px;
        width: 80%;
    }

    .testi-purple-card {
        width: 170px;
    }
}

/* --- NOTIF CTA SECTION --- */
.notif-cta-section {
    padding: 120px 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.8) 0%, rgba(247, 245, 255, 0.5) 100%);
    overflow: hidden;
}

.notif-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.notif-cta-desc {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 2rem 0 3rem;
    max-width: 480px;
}

/* Notif Stack */
.notif-stack {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    perspective: 1000px;
    position: relative;
}

.notif-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(30px) rotateX(-10deg);
}

.notif-stack.active .notif-card {
    animation: notif-slide-in 0.8s forwards;
}

.notif-card:hover {
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* Stagger Animations */
.notif-wa {
    animation-delay: 0.1s;
}

.notif-ig {
    animation-delay: 0.3s;
}

.notif-lead {
    animation-delay: 0.5s;
}

.notif-sale {
    animation-delay: 0.7s;
}

@keyframes notif-slide-in {
    from {
        opacity: 0;
        transform: translateY(30px) rotateX(-10deg);
    }

    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.notif-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notif-icon-circle i {
    width: 24px;
    height: 24px;
}

.notif-content {
    flex: 1;
}

.notif-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.25rem;
}

.notif-app-name {
    font-weight: 700;
    color: #1a1a2e;
    font-family: var(--font-display);
    font-size: 1rem;
}

.notif-time {
    font-size: 0.8rem;
    color: #a1a1b5;
    font-weight: 500;
}

.notif-msg {
    color: #5a5a75;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

/* Notif Colors matching design */
.wa-bg {
    background: #EBFDF5;
}

.wa-text {
    color: #10B981;
}

.ig-bg {
    background: #FDF5FD;
}

.ig-text {
    color: #A855F7;
}

.lead-bg {
    background: #F5F8FD;
}

.lead-text {
    color: #3B82F6;
}

.sale-bg {
    background: #FDF9EB;
}

.sale-text {
    color: #F59E0B;
}

/* Responsive Notif CTA */
@media (max-width: 991px) {
    .notif-cta-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .notif-cta-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .notif-stack {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .notif-cta-section {
        padding: 80px 0;
    }

    .notif-card {
        padding: 1rem;
        gap: 1rem;
    }

    .notif-icon-circle {
        width: 40px;
        height: 40px;
    }

    .notif-app-name {
        font-size: 0.9rem;
    }
}

/* --- ENHANCED NOTIF CTA --- */
.notif-scenes {
    position: relative;
    padding: 40px;
    z-index: 1;
}

/* Liquid Blobs behind notifications */
.notif-blob {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    opacity: 0.25;
    animation: liquid-morph 10s infinite alternate ease-in-out;
}

.blob-purple {
    background: linear-gradient(135deg, #6A73D9, #A855F7);
    top: -20%;
    right: -10%;
}

.blob-yellow {
    background: linear-gradient(135deg, #F59E0B, #E8833A);
    bottom: -15%;
    left: -10%;
    animation-delay: -5s;
}

/* 3D Stack Effect */
.notif-stack {
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.6s ease;
}

.notif-scenes:hover .notif-stack {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.notif-card {
    /* Glassmorphism Refinement */
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    /* Depth shadow */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    margin-bottom: -15px;
    /* Slight overlap for "stack" feel */
}

/* Specific offsets for organic stack */
.notif-wa {
    transform: translateZ(40px);
}

.notif-ig {
    transform: translateZ(20px) translateX(10px);
}

.notif-lead {
    transform: translateZ(10px) translateX(-5px);
}

.notif-sale {
    transform: translateZ(0) translateX(5px);
}

/* Live Status Badge */
.notif-live-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a2e;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 10;
    animation: float-pulse 4s infinite ease-in-out;
}

.dot-online {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10B981;
    animation: pulse-green 2s infinite;
}

@keyframes float-pulse {

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

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-green {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Pulse for notification icons */
.notif-icon-circle i {
    animation: icon-float 3s infinite ease-in-out;
}

@keyframes icon-float {

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

    50% {
        transform: scale(1.1);
    }
}

@media (max-width: 480px) {
    .notif-stack {
        transform: none !important;
    }

    .notif-card {
        margin-bottom: 15px;
    }
}


/* ==========================================
   MODERN SERVICES SECTION (Agency Style)
   ========================================== */
.services-modern-section {
    padding: 100px 0;
    background: transparent;
    /* Seamless with hero aura */
    position: relative;
    z-index: 10;
}

.services-modern-container {
    background: #f8f9fa;
    /* Very light gray */
    border-radius: 60px;
    padding: 80px 60px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.services-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: start;
}

/* Left Column: Info */
.services-col-info {
    position: sticky;
    top: 15rem;
}

.services-title-main {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    color: #111827;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 2rem;
}

.text-orange-glow {
    color: #ff6a2a;
}

.services-subtitle-main {
    font-size: 1.1rem;
    color: #777;
    max-width: 400px;
    line-height: 1.6;
    margin-bottom: 3rem;
}

/* Right Column: Grid */
.services-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.s-card {
    background: #ffffff;
    border-radius: 40px;
    padding: 40px 35px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.s-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

/* Feature/Highlighted Card */
.s-card.card--featured {
    background: #ff6a2a;
    color: #ffffff;
    grid-row: span 1;
    transform: translateY(-20px);
    box-shadow: 0 20px 50px rgba(255, 106, 42, 0.3);
}

.s-card.card--featured .s-card-title {
    color: #ffffff;
}

.s-card.card--featured .s-card-desc {
    color: rgba(255, 255, 255, 0.9);
}

/* Icons */
.s-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 10px;
}

.s-card-icon i {
    width: 28px;
    height: 28px;
    color: #ff6a2a;
}

.card--featured .s-card-icon {
    background: #ffffff;
}

/* Typography Inside Cards */
.s-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
}

.s-card-desc {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-layout-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .services-col-info {
        position: static;
        text-align: center;
    }

    .services-subtitle-main {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .services-modern-container {
        padding: 60px 30px;
        border-radius: 40px;
    }

    .services-cards-wrapper {
        grid-template-columns: 1fr;
    }

    .s-card.card--featured {
        transform: none;
    }
}

/* --- Hero Abstract replacements --- */
.abstract-icon-box {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
}

.abstract-icon-box i {
    width: 60px;
    height: 60px;
    color: #111827;
    opacity: 0.8;
}

.bg-mint {
    background-color: #a8f1d0;
}

.bg-yellow {
    background-color: #fde08f;
}

.bg-pink-soft {
    background-color: #ffc2ed;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.bg-yellow-soft {
    background-color: #fde08f;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.avatar i {
    width: 14px;
    height: 14px;
    color: #111827;
}

/* --- HOW IT WORKS (How6 Mosaic 2-Col Layout) --- */
.how6-section {
    padding: 100px 4rem;
    background: transparent;
}

/* Main container with premium rounded background */
.how6-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 100px;
    background: #f7f7f9;
    border-radius: 120px;
    box-shadow: inset 0 2px 20px rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: visible;
    /* To allow overlapping card */
}

.how6-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* --- Left Column --- */
.how6-col-left {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.how6-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 106, 43, 0.1);
    color: #ff6a2b;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Merged title styles at the end */
.how6-desc {
    font-size: 1.1rem;
    color: #777;
    line-height: 1.6;
    max-width: 440px;
}

.how6-main-visual {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    height: 340px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
}

.how6-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.how6-play-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: #6a73d9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 15px 35px rgba(106, 115, 217, 0.3);
}

.how6-play-btn:hover {
    transform: scale(1.1);
}

.how6-play-btn i {
    width: 30px;
    height: 30px;
    fill: currentColor;
    margin-left: 4px;
}

/* --- Right Column (Grid 2x2) --- */
.how6-col-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.how6-card {
    position: relative;
    /* Anchor for absolute numbers */
    padding: 30px;
    background: #fff;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
}

.how6-card:hover {
    box-shadow: 0 40px 80px rgba(106, 115, 217, 0.25);
    z-index: 100;
}

/* On hover, non-highlighted cards turn into theme colored cards */
.how6-card:not(.how6-card--highlight):hover {
    background: #6a73d9;
    color: #fff;
    position: relative;
}

.how6-card:not(.how6-card--highlight):hover .how6-card-icon {
    background: rgba(255, 255, 255, 0.95);
}

.how6-card--highlight {
    background: #6a73d9;
    color: #fff;
    box-shadow: 0 30px 60px rgba(106, 115, 217, 0.2);
    margin-top: -120px;
    /* Overlap the top edge */
    position: relative;
    z-index: 50;
}

.how6-card-icon {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.how6-card--highlight .how6-card-icon {
    background: rgba(255, 255, 255, 0.95);
}

.how6-card-icon i,
.how6-card-icon svg,
.how6-card-icon svg * {
    width: 20px !important;
    height: 20px !important;
    color: #6a73d9 !important;
    stroke: #6a73d9 !important;
    stroke-width: 3 !important;
    /* Slightly bolder for better visibility */
    display: block;
    opacity: 1 !important;
}

.how6-card-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
}

.how6-card-text {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.5;
    margin: 0;
}

/* --- Responsive --- */
@media (max-width: 1200px) {
    .how6-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .how6-container {
        padding: 60px 40px;
        border-radius: 60px;
    }
}

@media (max-width: 768px) {
    .how6-col-right {
        grid-template-columns: 1fr;
    }

    .how6-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    .how6-section {
        padding: 60px 1.5rem;
    }

    .how6-container {
        padding: 40px 24px;
        border-radius: 40px;
    }
}

/* Responsive adjustments for overlapping card */
@media (max-width: 1200px) {
    .how6-card--highlight {
        margin-top: 0;
        /* Reset on single column to avoid layout breaks */
    }
}

/* Removed slanted plates CSS */

/* Title adjustments */
.how6-title {
    font-family: var(--font-display);
    font-size: 4rem;
    letter-spacing: -0.04em;
    font-weight: 900;
    line-height: 1;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.how6-title .text-highlight-sites {
    background-image: linear-gradient(135deg, #6a73d9, #8d97f2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- HOW IT WORKS CTA BUTTON --- */
.how6-cta-wrapper {
    grid-column: span 2;
    /* Spans across the 2x2 cards */
    margin-top: 30px;
    display: flex;
    justify-content: center;
    /* Centered relative to the cards */
    position: relative;
    z-index: 10;
}

.how6-cta-btn {
    padding: 1rem 2.5rem !important;
    font-size: 1rem !important;
    border-radius: 50px !important;
    background: #6a73d9 !important;
    /* Update button too */
    color: #fff !important;
    border: none !important;
    box-shadow: 0 15px 35px rgba(106, 115, 217, 0.15);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.how6-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(106, 115, 217, 0.25);
    background: #5a63c9 !important;
    /* Slightly darker */
}

@media (max-width: 768px) {
    .how6-cta-wrapper {
        margin-top: 50px;
    }
}

/* Decorative Card Numbers */
.how6-card-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 90px;
    font-weight: 950;
    font-family: var(--font-display);
    color: rgba(106, 115, 217, 0.05);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
    transition: all 0.4s ease;
}

.how6-card--highlight .how6-card-number {
    color: rgba(255, 255, 255, 0.1);
}

.how6-card:hover .how6-card-number {
    transform: translateY(-5px);
    color: rgba(255, 255, 255, 0.15);
    /* Becomes more visible on hover */
}

/* ==========================================
   FINAL CTA: THE LIBERATION SECTION
   ========================================== */
.final-cta-section {
    padding: 120px 20px;
    background: #f8fafc;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.final-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.final-cta-content {
    max-width: 550px;
}

.cta-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(112, 0, 255, 0.05);
    color: #7000FF;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a2e;
    margin-bottom: 24px;
}

.cta-desc {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-main-btn {
    width: fit-content;
    padding: 18px 40px;
    font-size: 1.1rem;
}

.cta-subtext {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* Right Grid: Step Cards */
.final-cta-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.cta-step-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.cta-step-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(112, 0, 255, 0.08);
    border-color: rgba(112, 0, 255, 0.1);
}

.cta-step--active {
    background: #7000FF;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(112, 0, 255, 0.2);
}

.cta-step--active .cta-step-num {
    color: rgba(255, 255, 255, 0.1);
}

.cta-step--active h4 {
    color: #ffffff;
}

.cta-step--active p {
    color: rgba(255, 255, 255, 0.8);
}

.cta-step--active .cta-step-icon {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.cta-step-num {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
}

.cta-step-icon {
    width: 44px;
    height: 44px;
    background: rgba(112, 0, 255, 0.05);
    color: #7000FF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.cta-step-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.cta-step-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #64748b;
}

@media (max-width: 1024px) {
    .final-cta-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .final-cta-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .cta-actions {
        align-items: center;
    }
}

@media (max-width: 640px) {
    .final-cta-steps {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   SCROLL REVEAL ANIMATION SYSTEM
   Inspired by Therapix Webflow transitions
   ========================================== */

/* --- Base hidden state for ALL revealable elements --- */
[data-reveal] {
    opacity: 0;
    will-change: transform, opacity;
    transition:
        opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Direction variants — initial offsets */
[data-reveal="up"] {
    transform: translate3d(0, 60px, 0);
}

[data-reveal="down"] {
    transform: translate3d(0, -40px, 0);
}

[data-reveal="left"] {
    transform: translate3d(-60px, 0, 0);
}

[data-reveal="right"] {
    transform: translate3d(60px, 0, 0);
}

[data-reveal="scale"] {
    transform: scale3d(0.92, 0.92, 1);
}

[data-reveal="fade"] {
    transform: none;
}

/* --- Revealed state (added by JS IntersectionObserver) --- */
[data-reveal].is-revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
}

/* --- Stagger delays for children within a reveal group --- */
[data-reveal-delay="1"] {
    transition-delay: 0.1s;
}

[data-reveal-delay="2"] {
    transition-delay: 0.2s;
}

[data-reveal-delay="3"] {
    transition-delay: 0.35s;
}

[data-reveal-delay="4"] {
    transition-delay: 0.5s;
}

[data-reveal-delay="5"] {
    transition-delay: 0.65s;
}

[data-reveal-delay="6"] {
    transition-delay: 0.8s;
}

[data-reveal-delay="7"] {
    transition-delay: 0.95s;
}

[data-reveal-delay="8"] {
    transition-delay: 1.1s;
}

/* --- Section transition divider (subtle gradient fade between sections) --- */
.section-solutions,
.how6-section,
.testi-section,
.main-footer,
.sites-app {
    position: relative;
}

/* --- Premium easing for specific element types --- */
.heading[data-reveal],
.heading--section[data-reveal],
h2[data-reveal] {
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.text-desc[data-reveal],
p[data-reveal] {
    transition-duration: 0.85s;
    transition-delay: 0.15s;
}

.btn[data-reveal],
.sol-cta-wrapper[data-reveal] {
    transition-duration: 0.8s;
}

/* Float cards get a special pop-in */
.float-card[data-reveal="scale"] {
    transition-duration: 0.7s;
    transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Phone mockup reveal */
.phone-mockup-whatsapp[data-reveal],
.phone-mockup[data-reveal],
.phone-ig[data-reveal] {
    transition-duration: 1.1s;
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

/* How section cards stagger */
.how6-card[data-reveal] {
    transition-duration: 0.75s;
    transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Testimonial cards */
.testi-card[data-reveal] {
    transition-duration: 0.85s;
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Footer columns */
.footer-col[data-reveal] {
    transition-duration: 0.7s;
}

/* Browser frame showcase */
.browser-frame[data-reveal] {
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Visual grid cards in hero */
.grid-card[data-reveal] {
    transition-duration: 0.8s;
    transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Reduce motion for accessibility --- */
@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}


/* ============================================================
   SECTION: CTA LIVE — Notificações em Tempo Real
   ============================================================ */

.cta-live-section {
    position: relative;
    padding: 80px 0 120px;
    overflow: hidden;
    background: #fcfaff;
}

/* Tech Canvas Pattern */
.cta-live-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(106, 115, 217, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.8;
    pointer-events: none;
}

/* ---- Wrapper ---- */
.cta-live-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---- Central Content Layout ---- */
.cta-live-center {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 650px;
    text-align: center;
    padding: 60px 40px;
}

/* Aura de brilho atrás do texto */
.cta-glow-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(106, 115, 217, 0.15) 0%, rgba(106, 115, 217, 0) 70%);
    z-index: -1;
    filter: blur(40px);
    animation: aura-breathe 8s ease-in-out infinite;
}

@keyframes aura-breathe {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.cta-live-logo {
    width: 150px;
    height: auto;
    margin: 0 auto 40px;
    display: block;
    filter: drop-shadow(0 0 15px rgba(106, 115, 217, 0.2));
}

.cta-live-heading {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #111827 0%, #6a73d9 50%, #111827 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: text-flow 6s linear infinite;
}

@keyframes text-flow {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.cta-live-desc {
    font-size: 1.15rem;
    color: #4b5563;
    margin-bottom: 48px;
    line-height: 1.5;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.cta-live-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #111827;
    color: white;
    padding: 18px 40px;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cta-live-btn:hover {
    transform: translateY(-4px) scale(1.02);
    background: #6a73d9;
    box-shadow: 0 30px 60px rgba(106, 115, 217, 0.3);
}

.cta-live-btn i {
    transition: transform 0.3s ease;
}

.cta-live-btn:hover i {
    transform: translateX(5px);
}


/* ---- Notification Float Cards ---- */
.notif-float {
    position: absolute;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px) saturate(1.8);
    -webkit-backdrop-filter: blur(25px) saturate(1.8);
    border-radius: 24px;
    padding: 20px;
    width: 320px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    opacity: 0;
    /* Começa invisível */
    animation: notif-cycle 24s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: var(--delay, 0s);
    animation-fill-mode: both;
    /* Mantém opacity 0 durante o delay */
    z-index: 20;
    pointer-events: auto;
    cursor: default;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

/* Glass Shimmer Streak */
.notif-float::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 45%,
            rgba(255, 255, 255, 0.4) 50%,
            transparent 55%);
    transform: rotate(45deg);
    animation: glass-shimmer 6s infinite;
    pointer-events: none;
}

@keyframes glass-shimmer {
    0% {
        transform: translate(-30%, -30%) rotate(45deg);
    }

    30%,
    100% {
        transform: translate(30%, 30%) rotate(45deg);
    }
}

.notif-float:hover {
    transform: scale(1.08) translateY(-10px) !important;
    background: rgba(255, 255, 255, 0.9);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 1);
    z-index: 100;
}

/* Sync Progress Bar at the bottom */
.notif-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(0, 0, 0, 0.02);
    z-index: 5;
}

.notif-progress-fill {
    height: 100%;
    width: 0%;
    background: currentColor;
    opacity: 0.6;
    /* Melhor visibility */
    animation: notif-progress 24s linear infinite;
    animation-delay: var(--delay, 0s);
    animation-fill-mode: both;
}

@keyframes notif-progress {

    /* Resync with notif-cycle: Visible between 3% and 22% (6s) */
    0% {
        width: 0%;
        opacity: 0;
    }

    3% {
        width: 0%;
        opacity: 1;
    }

    22% {
        width: 100%;
        opacity: 1;
    }

    25% {
        width: 100%;
        opacity: 0;
    }

    26% {
        width: 0%;
        opacity: 0;
    }

    /* Instant Reset while invisible */
    100% {
        width: 0%;
        opacity: 0;
    }
}

/* Platform-specific Glowing Aura */
.notif-float:has(.notif-icon--wa) {
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.12), 0 0 0 1px rgba(34, 197, 94, 0.1);
}

.notif-float:has(.notif-icon--ig) {
    box-shadow: 0 15px 35px rgba(225, 48, 108, 0.12), 0 0 0 1px rgba(225, 48, 108, 0.1);
}

.notif-float:has(.notif-icon--lead) {
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.12), 0 0 0 1px rgba(59, 130, 246, 0.1);
}

.notif-float:has(.notif-icon--sale) {
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.12), 0 0 0 1px rgba(245, 158, 11, 0.1);
}

.notif-float:has(.notif-icon--rocket) {
    box-shadow: 0 15px 35px rgba(168, 85, 247, 0.12), 0 0 0 1px rgba(168, 85, 247, 0.1);
}

.notif-float:has(.notif-icon--brain) {
    box-shadow: 0 15px 35px rgba(45, 212, 191, 0.12), 0 0 0 1px rgba(45, 212, 191, 0.1);
}

.notif-float:has(.notif-icon--report) {
    box-shadow: 0 15px 35px rgba(239, 68, 68, 0.12), 0 0 0 1px rgba(239, 68, 68, 0.1);
}

.notif-float:has(.notif-icon--cal) {
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.12), 0 0 0 1px rgba(59, 130, 246, 0.1);
}

/* Pulsing Status Dot */
.notif-status-dot {
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
    position: relative;
    display: inline-block;
    margin-right: 6px;
}

.notif-status-dot::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: currentColor;
    border-radius: 50%;
    animation: pulse-dot 2s ease-out infinite;
    opacity: 0.5;
}

@keyframes pulse-dot {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.notif-icon-wrap {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

@keyframes notif-cycle {

    /* Each notif is visible for ~6s in a 24s cycle (25%) */
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    3% {
        opacity: 1;
        transform: translateY(0);
    }

    22% {
        opacity: 1;
        transform: translateY(0);
    }

    25% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 0;
    }
}

/* Positions */
/* Peripheral Positions: Syncing and keeping clear */
.notif-float--1 {
    --delay: 0s;
    top: 10%;
    left: 0;
}

.notif-float--2 {
    --delay: 3s;
    top: 40%;
    right: 0;
}

.notif-float--3 {
    --delay: 6s;
    top: 75%;
    left: 2%;
}

.notif-float--4 {
    --delay: 9s;
    top: 12%;
    right: 5%;
}

.notif-float--5 {
    --delay: 12s;
    top: 65%;
    right: 0;
}

.notif-float--6 {
    --delay: 15s;
    top: 2%;
    left: 5%;
}

.notif-float--7 {
    --delay: 18s;
    top: 85%;
    right: 5%;
}

.notif-float--8 {
    --delay: 21s;
    top: 45%;
    left: 0;
}

@keyframes notif-cycle-right {
    0% {
        opacity: 0;
        transform: translateX(14px) scale(0.95);
    }

    7% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }

    43% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }

    50% {
        opacity: 0;
        transform: translateX(10px) scale(0.97);
    }

    100% {
        opacity: 0;
        transform: translateX(10px) scale(0.97);
    }
}

/* Icon wrappers */
.notif-icon-wrap {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Unified Icon Styles */
.notif-icon--wa {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.notif-icon--ig {
    background: rgba(225, 48, 108, 0.1);
    color: #e1306c;
}

.notif-icon--lead {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.notif-icon--sale {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.notif-icon--rocket {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
}

.notif-icon--brain {
    background: rgba(45, 212, 191, 0.1);
    color: #2dd4bf;
}

.notif-icon--report {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.notif-icon--cal {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.notif-icon-wrap svg {
    width: 21px;
    height: 21px;
}

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

.notif-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 4px;
}

.notif-name {
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notif-time {
    font-size: 11.5px;
    color: #9ca3af;
    flex-shrink: 0;
}

.notif-float .notif-text {
    font-size: 12.5px;
    color: #4b5563;
    line-height: 1.45;
    margin: 0;
}


/* ---- Mobile Strip ---- */
.cta-live-mobile-strip {
    display: none;
    position: relative;
    z-index: 2;
    padding: 32px 0 8px;
    overflow: hidden;
}

.notif-strip-inner {
    display: flex;
    gap: 12px;
    padding: 0 20px;
    animation: strip-scroll 18s linear infinite;
    width: max-content;
}

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

    100% {
        transform: translateX(-50%);
    }
}

.notif-strip-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 14px;
    padding: 12px 16px;
    width: 220px;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.notif-strip-card .notif-icon-wrap {
    width: 38px;
    height: 38px;
    border-radius: 10px;
}

.notif-strip-card .notif-icon-wrap svg {
    width: 18px;
    height: 18px;
}

.notif-strip-card .notif-name {
    font-size: 12px;
    font-weight: 700;
    color: #111827;
    display: block;
    margin-bottom: 2px;
}

.notif-strip-card .notif-text {
    font-size: 11px;
    color: #6b7280;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .notif-float {
        display: none;
    }

    .cta-live-mobile-strip {
        display: block;
    }

    .cta-live-wrapper {
        min-height: auto;
        padding: 0 24px;
    }

    .cta-live-section {
        padding: 80px 0 60px;
    }
}

@media (max-width: 640px) {
    .cta-live-card {
        padding: 40px 28px;
        border-radius: 24px;
    }

    .cta-live-heading {
        font-size: 1.35rem;
    }

    .cta-live-logo {
        width: 110px;
    }
}

/* ============================================================
   SHINY CTA EFFECT (Vibrant Version)
   ============================================================ */

@property --gradient-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@keyframes border-spin {
    from {
        --gradient-angle: 0deg;
    }

    to {
        --gradient-angle: 360deg;
    }
}

.shiny-cta {
    --gradient-angle: 0deg;
    --border-size: 2px;
    --radius: 100px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 1.1rem 2.8rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    border-radius: var(--radius);
    cursor: pointer;
    isolation: isolate;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    /* Background: Vibrant Gradient instead of dark */
    background: linear-gradient(135deg, #6a73d9 0%, #4f46e5 100%) padding-box,
        conic-gradient(from var(--gradient-angle),
            transparent 15%,
            #6a73d9 30%,
            #ffffff 50%,
            #6a73d9 70%,
            transparent 85%) border-box;

    border: var(--border-size) solid transparent;
    animation: border-spin 3s linear infinite;
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.25);
}

.shiny-cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 30px 60px rgba(79, 70, 229, 0.4);
    filter: brightness(1.1);
}

.shiny-cta i {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.shiny-cta:hover i {
    transform: translateX(3px) rotate(-10deg);
}

@media (max-width: 640px) {
    .shiny-cta {
        padding: 0.9rem 2.2rem;
        font-size: 0.95rem;
    }
}

/* ============================================================
   MOBILE-FIRST OPTIMIZATION PASS
   Prioridade: usabilidade, escaneabilidade, conversão de leads
   ============================================================ */

/* -----------------------------------------------------------
   1. HERO — Reduz altura excessiva e aperta espaçamento
   ----------------------------------------------------------- */
@media (max-width: 768px) {
    .page-wrapper {
        min-height: unset;
    }

    .hero-topo.split-grid {
        padding-bottom: 2rem !important;
    }

    .hero-scroll-hint {
        display: none;
    }

}

@media (max-width: 480px) {
    .hero-topo.split-grid {
        padding-top: 4.5rem !important;
        padding-bottom: 1.5rem !important;
        gap: 1.5rem !important;
    }

    .heading--hero {
        font-size: 2.3rem;
        margin-bottom: 1.2rem;
    }

    .text-desc--hero {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .visual-grid {
        grid-template-rows: 175px 195px;
        gap: 10px;
    }

    .hero__visuals {
        margin-top: 1.25rem;
    }

    .tag {
        padding: 0.55rem 1rem;
        font-size: 0.82rem;
    }
}

/* -----------------------------------------------------------
   2. SEÇÃO COMO FUNCIONA (how6) — Tipografia e espaçamento
   ----------------------------------------------------------- */
@media (max-width: 768px) {
    .how6-section {
        padding: 3rem 1.25rem;
    }

    .how6-title {
        font-size: 2.8rem;
    }

    .how6-card {
        padding: 24px 20px;
    }

    .how6-cta-wrapper {
        grid-column: span 1;
        margin-top: 10px;
    }

    .how6-cta-btn {
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .how6-section {
        padding: 2.5rem 1rem;
    }

    .how6-container {
        padding: 32px 20px !important;
        border-radius: 32px !important;
    }

    .how6-title {
        font-size: 2.2rem;
        letter-spacing: -0.02em;
        margin-bottom: 16px;
    }

    .how6-desc {
        font-size: 0.95rem;
    }

    .how6-card-number {
        font-size: 60px;
    }

    .how6-col-left {
        gap: 28px;
    }
}

/* -----------------------------------------------------------
   3. SEÇÕES SOLUÇÕES — Alinhamento central e padding correto
   ----------------------------------------------------------- */
@media (max-width: 768px) {

    /* Resetar padding do split-grid herdado do hero e ajustar gap nas soluções */
    .section-solutions .split-grid,
    .section-solutions .split-grid--reverse {
        gap: 0 !important;
        padding: 0 20px !important;
        align-items: stretch !important;
    }

    /* Padding geral das seções */
    .section-solutions {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .section-instagram {
        padding-bottom: 2.5rem;
    }

    .whatsapp-app .sol-text-content,
    .sites-app .sol-text-content {
        padding: 1rem 1rem !important;
        text-align: center;
    }

    .whatsapp__content,
    .instagram__content,
    .sites__content {
        justify-content: center !important;
        align-items: stretch !important;
        padding: 0 !important;
        margin: 0 auto !important;
    }

    .whatsapp__desc,
    .instagram__desc,
    .sites__desc {
        max-width: 100% !important;
        margin: 0 auto !important;
        /* Proper centering reset */
    }

    .sol-cta-wrapper {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
        margin: 2rem 0 0 !important;
        /* Reset side margins */
        padding: 0 !important;
        text-align: center !important;
        /* Force visibility — bypass broken scroll reveals */
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .btn-full-mobile {
        width: 100% !important;
        justify-content: center !important;
        min-width: unset !important;
    }

    /* 🚀 REFIX: Soluções Mobile — "COMO FUNCIONA" STYLE */
    .whatsapp-app,
    .instagram-app,
    .sites-app {
        background: #f8f9fa !important;
        /* Fundo cinza para destacar os blocos */
        padding: 1rem 0 !important;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    /* Forçar containers a terem a mesma largura */
    .instagram-app .container-premium,
    .sites-app .main-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .whatsapp-app .split-grid,
    .sites-app .split-grid {
        display: flex !important;
        flex-direction: column !important;
        /* Texto Topo, Visual Base */
        gap: 3.5rem !important;
    }

    .instagram-app .split-grid {
        display: flex !important;
        flex-direction: column !important;
        /* Visual Topo, Texto Base */
        gap: 3rem !important;
    }

    /* Esconder blocos desnecessários (Stats, Aura, Liquido) */
    .whatsapp-app .float-card,
    .instagram-app .float-card,
    .sites-app .float-card,
    .whatsapp-app .sol-liquid-bg,
    .instagram-app .sol-liquid-bg,
    .sites-app .sol-liquid-bg,
    .whatsapp-app .whatsapp__visuals::before,
    .instagram-app .instagram__visuals::before {
        display: none !important;
    }

    .whatsapp-app .sol-text-content,
    .instagram-app .sol-text-content,
    .sites-app .sol-text-content {
        background: #ffffff !important;
        border-radius: 32px !important;
        padding: 3rem 1.75rem !important;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04) !important;
        width: 92% !important;
        margin: 0 auto !important;
        text-align: center;
        border: 1px solid rgba(0, 0, 0, 0.02);
        position: relative !important;
        /* Essencial para o z-index */
        z-index: 10 !important;
        /* Ficar sobre os balões decorativos */
    }

    .whatsapp__visuals,
    .instagram__visuals {
        margin: 0 auto !important;
        width: 100%;
        display: flex;
        justify-content: center;
        padding-bottom: 0 !important;
    }

    .whatsapp-app .visual-stack-container,
    .instagram-app .visual-stack-container {
        margin: 0 auto !important;
        transform: none !important;
        max-width: 290px;
        height: auto;
    }

    .whatsapp-app .phone-mockup-whatsapp,
    .instagram-app .phone-mockup {
        width: 100%;
        max-width: 290px;
        height: 600px !important;
        margin: 0 auto 5rem !important;
        /* Espaçamento inferior adicionado */
        min-height: unset;
    }

    .instagram-app .sol-liquid-bg,
    .instagram-app .bg-ig-pink {
        clip-path: none !important;
        border-radius: 24px !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100% !important;
        animation: none !important;
    }

    /* Remover padding top excessivo da seção instagram */
    .section-instagram {
        padding-top: 0 !important;
    }

    .instagram-app .sol-text-content {
        padding: 2.5rem 1.75rem !important;
        text-align: center !important;
        background: #ffffff !important;
        border-radius: 28px !important;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04) !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Sites: remover padding-top excessivo do visual, corrigir selector */
    .sites__visuals {
        padding: 0 !important;
        margin: 0 auto !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
    }

    .sites-app .split-grid {
        align-items: stretch;
        gap: 4rem !important;
        /* Mais espaço entre o texto e o site */
    }

    /* Conter o showcase dentro do viewport */
    .adaptive-showcase {
        overflow: hidden !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
    }

    .showcase-content-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        justify-content: center !important;
    }

    .browser-frame {
        width: 92% !important;
        /* Alinhado com o sol-text-content */
        max-width: 100% !important;
        height: 380px !important;
        box-sizing: border-box !important;
        margin: 0 auto 5rem !important;
        /* Espaçamento inferior generoso */
        border-radius: 16px !important;
        overflow: hidden !important;
        background: #111 !important;
        border: none !important;
        box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08) !important;
        position: relative !important;
    }

    .browser-frame .scr-img {
        width: 100% !important;
        height: auto !important;
        min-height: 100% !important;
        object-fit: cover !important;
        display: block !important;
        transform: translateZ(0) !important;
    }

    .project-card-title {
        font-size: 1.8rem !important;
        font-weight: 800 !important;
        color: #111 !important;
        margin-bottom: 2rem !important;
        width: 100% !important;
        text-align: center !important;
        display: block !important;
        letter-spacing: -0.01em !important;
    }

    #current-project-desc {
        font-size: 1.02rem !important;
        line-height: 1.8 !important;
        color: #374151 !important;
        text-align: center !important;
        /* Centralizado para harmonia mobile */
        padding: 1.8rem 2.2rem !important;
        /* Padding lateral generoso e real */
        margin: 1.5rem auto 2.5rem !important;
        max-width: 90% !important;
        background: #fdfdfd !important;
        /* Off-white sutil */
        border-radius: 16px !important;
        border-top: 2px solid var(--color-sites-yellow) !important;
        /* Linha de destaque no topo */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
        font-weight: 400 !important;
        position: relative !important;
        font-style: italic !important;
        /* Toque editorial */
    }

    /* Adicionar aspas decorativas para design interessante */
    #current-project-desc::before {
        content: '“' !important;
        display: block !important;
        font-family: serif !important;
        font-size: 3rem !important;
        color: var(--color-sites-yellow) !important;
        line-height: 1 !important;
        margin-bottom: -1rem !important;
        opacity: 0.5 !important;
    }

    .project-details {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        padding-bottom: 1rem !important;
    }

    .btn-sites-cta {
        margin-top: 1rem !important;
        transform: translateY(0) !important;
    }

    /* Ocultar orbs decorativos que causam overflow no mobile */
    .showcase-orb {
        display: none !important;
    }

    /* Selector: remover translateX no mobile para não quebrar layout */
    .text-highlight-wa,
    .text-highlight-ig,
    .text-highlight-sites {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
    }

    .sites-app .project-selector {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 1rem !important;
        padding: 0 !important;
        margin: 0 auto 2.5rem !important;
        width: 100% !important;
        /* Force visibility — bypass broken scroll reveals */
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .project-card-title {
        font-size: 1.5rem !important;
        font-weight: 750 !important;
        color: #111 !important;
        margin-bottom: 2rem !important;
        width: 100% !important;
        text-align: center !important;
        display: block !important;
    }

    .sites-app .selector-item {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 12px !important;
        width: 100% !important;
        max-width: 300px !important;
        padding: 0.85rem 1.25rem !important;
        border: 1px solid rgba(0, 0, 0, 0.08) !important;
        border-radius: 20px !important;
        background: #ffffff !important;
        margin: 0 auto !important;
        transform: none !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03) !important;
    }

    .sites-app .selector-item.active {
        background: #fff !important;
        border-color: #F59E0B !important;
        /* Laranja direto para garantir */
        box-shadow: 0 8px 25px rgba(245, 158, 11, 0.15) !important;
        transform: none !important;
    }

    .sites-app .selector-item .sel-num {
        display: inline-block !important;
        position: static !important;
        opacity: 0.4 !important;
        font-size: 0.85rem !important;
        font-weight: 700 !important;
        margin: 0 !important;
        color: #777 !important;
    }

    .sites-app .selector-item .sel-label {
        font-size: 1rem !important;
        font-weight: 600 !important;
        color: #333 !important;
        text-align: center !important;
    }

    .sites-app .sol-cta-wrapper {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        margin: 1.5rem 0 0 !important;
        padding: 0 !important;
    }

    .sites-app .btn-sites-cta {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto !important;
        /* Centering fix */
        min-width: unset !important;
        padding: 1rem 1.5rem !important;
        font-size: 1rem !important;
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    .text-highlight-wa {
        font-size: 2rem !important;
        margin-bottom: 1rem;
    }

    .text-highlight-ig {
        font-size: 2rem !important;
        margin-bottom: 1rem;
    }

    .heading--section {
        font-size: 1.9rem;
    }

    .sol-text-content .text-desc {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
}

/* -----------------------------------------------------------
   4. DEPOIMENTOS — Reduz padding excessivo e corrige layout
   ----------------------------------------------------------- */
@media (max-width: 768px) {
    .testi-section {
        padding-top: 50px;
        padding-bottom: 60px;
    }

    .testi-header {
        text-align: center !important;
        margin-bottom: 3.5rem !important;
        padding: 0 1.5rem !important;
    }

    .testi-header .text-desc {
        margin: 1rem auto 0 !important;
        text-align: center !important;
        max-width: 450px !important;
    }

    .testi-heading {
        font-size: 2.2rem;
    }

    .testi-col-right {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .testi-section {
        padding: 40px 1rem 50px;
    }

    .testi-heading {
        font-size: 1.8rem;
    }

    .testi-card--featured {
        padding: 1.5rem;
    }

    .testi-card-text {
        font-size: 0.9rem;
    }
}

/* -----------------------------------------------------------
   5. SEÇÃO CTA LIVE — Reduz padding e ajusta tipografia
   ----------------------------------------------------------- */
@media (max-width: 640px) {
    .cta-live-section {
        padding-top: 50px;
        padding-bottom: 40px;
    }

    .cta-live-heading {
        font-size: 2rem !important;
        line-height: 1.2;
    }

    .cta-live-desc {
        font-size: 0.92rem;
        line-height: 1.5;
    }
}

/* -----------------------------------------------------------
   6. RODAPÉ — Padding menor em telas pequenas
   ----------------------------------------------------------- */
@media (max-width: 480px) {
    .main-footer {
        padding-top: 40px;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .footer-container {
        border-radius: 28px 28px 0 0 !important;
        padding: 40px 16px 32px 16px !important;
    }

    .footer-grid {
        gap: 28px;
    }

    .footer-logo {
        height: 36px;
        margin-bottom: 16px;
    }

    .footer-desc {
        font-size: 0.88rem;
    }
}

/* -----------------------------------------------------------
   7. STICKY CTA BAR — Barra flutuante de conversão para mobile
   ----------------------------------------------------------- */
.mobile-sticky-cta {
    display: none;
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 8999;
        padding: 10px 16px;
        padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.07);
        gap: 10px;
        transform: translateY(100%);
        transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
        pointer-events: none;
    }

    .mobile-sticky-cta.is-visible {
        transform: translateY(0);
        pointer-events: all;
    }

    .mobile-sticky-cta .sticky-modal-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        padding: 0.8rem 0.75rem;
        background: #6a73d9;
        color: #ffffff;
        font-family: var(--font-ui);
        font-weight: 700;
        font-size: 0.88rem;
        border-radius: 50px;
        border: none;
        cursor: pointer;
        box-shadow: 0 6px 18px rgba(106, 115, 217, 0.3);
        transition: filter 0.2s ease;
    }

    .mobile-sticky-cta .sticky-modal-btn:active {
        filter: brightness(0.92);
    }

    .mobile-sticky-cta .sticky-modal-btn [data-lucide] {
        width: 16px;
        height: 16px;
        stroke-width: 2.5;
    }

    body {
        padding-bottom: 76px;
    }
}

/* -----------------------------------------------------------
   8. AJUSTES GLOBAIS — Overflow e legibilidade em telas estreitas
   ----------------------------------------------------------- */
@media (max-width: 480px) {

    .section-solutions,
    .how6-section,
    .testi-section,
    .cta-live-section {
        overflow-x: hidden;
    }

    .btn-primary {
        font-size: 0.9rem !important;
    }

    .sol-cta-wrapper [data-lucide] {
        width: 17px;
        height: 17px;
    }
}

/* Remove background from footer only on legal pages */
.legal-page-v2 .main-footer,
.legal-page-v2 .footer-container {
    background: transparent !important;
}

/* --- SKELETON LOADERS (Premium Shimmer) --- */
.skeleton-shimmer {
    position: relative;
    overflow: hidden;
}

.skeleton-shimmer::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.8s infinite linear;
}

@keyframes skeleton-shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.skeleton-nav {
    height: 60px;
    width: 88%;
    max-width: 1300px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    z-index: 2001;
    /* Higher than bento-nav to avoid flicker during swap */
}

.skeleton-footer {
    height: 450px;
    width: 100%;
    background: white;
    border-radius: 80px 80px 0 0;
    margin-top: 100px;
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.legal-page-v2 .skeleton-footer {
    background: transparent !important;
    box-shadow: none !important;
}

.skeleton-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding: 80px 8%;
}

.skeleton-box {
    background: rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    height: 20px;
    margin-bottom: 12px;
    width: 80%;
    position: relative;
    overflow: hidden;
}

.skeleton-box.h-40 {
    height: 40px;
    margin-bottom: 25px;
    width: 40%;
}

.skeleton-box.w-full {
    width: 100%;
}

.skeleton-box.w-60 {
    width: 60%;
}

@media (max-width: 991px) {
    .skeleton-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .skeleton-footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   PÁGINA SOBRE NÓS (about.html)
   ========================================== */

/* ── SEÇÃO 1: HERO DO ABOUT ── */
.about-hero {
    position: relative;
    background: linear-gradient(135deg, #3b2f8f 0%, #5b3fc7 40%, #7c3aed 70%, #6a73d9 100%);
    padding: 10rem 2rem 6rem;
    text-align: center;
    overflow: hidden;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Orbs decorativos do hero */
.about-hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}

.about-hero-orb--1 {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    top: -100px;
    left: -80px;
}

.about-hero-orb--2 {
    width: 300px;
    height: 300px;
    background: rgba(168, 85, 247, 0.25);
    bottom: -60px;
    right: -40px;
}

/* Breadcrumb */
.about-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-ui);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.about-breadcrumb a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s ease;
}

.about-breadcrumb a:hover {
    color: #ffffff;
}

.about-breadcrumb [data-lucide] {
    width: 14px;
    height: 14px;
}

/* Hero content */
.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.about-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.about-title-accent {
    background: linear-gradient(90deg, #c4b5fd, #f9a8d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-subtitle {
    font-family: var(--font-ui);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

/* Onda de transição */
.about-hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    line-height: 0;
    z-index: 2;
}

.about-hero-wave svg {
    width: 100%;
    height: 100%;
}

/* ── SEÇÃO 2: CONTEÚDO PRINCIPAL ── */
.about-content {
    padding: 6rem 2rem;
    background: #ffffff;
}

.about-content-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* ─ Coluna esquerda: texto ─ */
.about-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #7c3aed;
    background: rgba(124, 58, 237, 0.08);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.25rem;
}

.about-label [data-lucide] {
    width: 14px;
    height: 14px;
}

.about-section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.about-lead {
    font-family: var(--font-ui);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-body {
    font-family: var(--font-ui);
    font-size: 0.975rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Stats rápidos */
.about-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0 2.5rem;
    padding: 1.5rem;
    background: #f9f7ff;
    border-radius: 16px;
    border: 1px solid rgba(124, 58, 237, 0.08);
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.about-stat-value {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: #7c3aed;
    line-height: 1;
}

.about-stat-label {
    font-family: var(--font-ui);
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.3;
}

.about-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

/* ─ Coluna direita: visual ─ */
.about-visual-col {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Imagem principal */
.about-img-main {
    position: relative;
    z-index: 2;
    border-radius: 24px;
    overflow: visible;
}

.about-img-main-photo {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 24px 60px -12px rgba(124, 58, 237, 0.2), 0 8px 24px -4px rgba(0, 0, 0, 0.08);
    display: block;
}

/* Imagem secundária */
.about-img-secondary {
    position: relative;
    align-self: flex-end;
    width: 72%;
    z-index: 2;
}

.about-img-secondary-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 16px 40px -8px rgba(0, 0, 0, 0.1);
    display: block;
}

/* Badges flutuantes */
.about-float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 100px;
    padding: 0.5rem 1rem;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    white-space: nowrap;
    z-index: 3;
}

.about-float-badge--top {
    top: -14px;
    right: -14px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 16px;
    padding: 0.75rem 1rem;
}

.about-badge-stars {
    color: #f59e0b;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.about-badge-text {
    font-size: 0.72rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.about-float-badge--bottom {
    bottom: -14px;
    left: -14px;
    background: #7c3aed;
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
}

.about-float-badge--bottom [data-lucide] {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Orb decorativo da coluna */
.about-visual-orb {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 181, 253, 0.35), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    filter: blur(40px);
}

/* ── SEÇÃO 3: MISSÃO, VISÃO E VALORES ── */
.about-values {
    padding: 6rem 2rem;
    background: #fafafa;
}

.about-values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-values-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.about-values-title {
    margin-bottom: 1rem;
}

.about-values-subtitle {
    font-family: var(--font-ui);
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Grid de cards */
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.about-value-card {
    padding: 2.25rem;
    border-radius: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-value-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(20px);
    transition: opacity 0.3s ease;
}

.about-value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-floating);
}

.about-value-card:hover::before {
    opacity: 0.3;
}

/* Variantes de cor dos cards */
.about-value-card--mint {
    background: linear-gradient(135deg, #f0fdf8, #d1fae5);
    border: 1px solid rgba(16, 185, 129, 0.12);
}

.about-value-card--mint::before {
    background: #10b981;
}

.about-value-card--mint .about-value-icon {
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
}

.about-value-card--purple {
    background: linear-gradient(135deg, #f5f3ff, #ede9fe);
    border: 1px solid rgba(124, 58, 237, 0.12);
}

.about-value-card--purple::before {
    background: #7c3aed;
}

.about-value-card--purple .about-value-icon {
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
}

.about-value-card--yellow {
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    border: 1px solid rgba(245, 158, 11, 0.12);
}

.about-value-card--yellow::before {
    background: #f59e0b;
}

.about-value-card--yellow .about-value-icon {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

/* Ícone do card */
.about-value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
}

.about-value-icon [data-lucide] {
    width: 24px;
    height: 24px;
}

.about-value-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.about-value-text {
    font-family: var(--font-ui);
    font-size: 0.925rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* ── SEÇÃO 4: CTA FINAL ── */
.about-final-cta {
    padding: 6rem 2rem;
    background: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta-container {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-cta-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.07), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    filter: blur(40px);
    z-index: 0;
}

.about-cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.about-cta-desc {
    font-family: var(--font-ui);
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.about-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Botão WhatsApp outline */
.btn-wa-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-ui);
    font-size: 0.925rem;
    font-weight: 600;
    color: #059669;
    background: rgba(16, 185, 129, 0.08);
    border: 1.5px solid rgba(16, 185, 129, 0.3);
    border-radius: 100px;
    padding: 0.85rem 1.75rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-wa-outline:hover {
    background: rgba(16, 185, 129, 0.15);
    border-color: #059669;
    transform: translateY(-1px);
}

.btn-wa-outline [data-lucide] {
    width: 16px;
    height: 16px;
}

/* ── RESPONSIVIDADE ── */
@media (max-width: 768px) {
    .about-hero-wave {
        display: none;
    }

    .about-hero {
        border-radius: 0 0 40px 40px;
        padding-bottom: 3rem;
    }
}

@media (max-width: 900px) {
    .about-content-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-visual-col {
        order: -1;
        max-width: 560px;
        margin: 0 auto;
        width: 100%;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .about-hero {
        padding: 8rem 1.5rem 5rem;
    }

    .about-content,
    .about-values,
    .about-final-cta {
        padding: 4rem 1.25rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 1.25rem;
    }

    .about-img-main-photo {
        height: 240px;
    }

    .about-img-secondary {
        width: 85%;
    }

    .about-img-secondary-photo {
        height: 160px;
    }

    .about-float-badge--top {
        right: 4px;
        top: -10px;
    }

    .about-float-badge--bottom {
        left: 4px;
        bottom: -10px;
    }

    .about-values-grid {
        max-width: 100%;
    }

    .about-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .about-cta-actions .btn,
    .btn-wa-outline {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================
   CREATIVE CTA BLOCK (About Page)
   ========================================= */
.about-final-cta {
    position: relative;
    padding: 6rem 5%;
    display: flex;
    justify-content: center;
    background: transparent;
    z-index: 10;
}

.creative-cta-container {
    width: 100%;
    max-width: 1000px;
    position: relative;
}

.cta-mesh-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180%;
    height: 180%;
    background: radial-gradient(circle at center, rgba(167, 139, 250, 0.15) 0%, rgba(236, 72, 153, 0.05) 50%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    animation: pulseMesh 8s infinite alternate;
}

@keyframes pulseMesh {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

.cta-card.glass-dark {
    background: #0d0f14;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15), inset 0 2px 20px rgba(255, 255, 255, 0.03);
    border-radius: 32px;
    padding: 5rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Internal Glow */
.cta-card.glass-dark::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(167, 139, 250, 0.15), transparent 70%);
    pointer-events: none;
}

.cta-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulseDotAnim 2s infinite;
}

@keyframes pulseDotAnim {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.creative-cta-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.text-gradient-neon {
    background: linear-gradient(135deg, #a78bfa 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.creative-cta-desc {
    color: #94a3b8;
    font-size: 1.15rem;
    max-width: 580px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.btn-cta-glow {
    background: linear-gradient(135deg, #6a73d9 0%, #a78bfa 100%);
    color: #fff;
    padding: 1.2rem 2.8rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(106, 115, 217, 0.4);
    transition: all 0.3s ease;
}

.btn-cta-glow:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(106, 115, 217, 0.6);
}

.btn-cta-glow i {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-cta-glow:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .cta-card.glass-dark {
        padding: 4rem 2rem;
        border-radius: 24px;
    }
}

/* ── About Page: Footer background override ── */
.about-page .main-footer {
    background: #ffffff;
}

/* ── About Page: text-highlight com gradiente do hero ── */
.about-page .text-highlight {
    color: transparent;
    background: linear-gradient(135deg, #3b2f8f 0%, #5b3fc7 40%, #7c3aed 70%, #6a73d9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ── Shiny Spinning Border Button ── */
.shiny-btn-wrapper {
    position: relative;
    display: inline-block;
    border-radius: 100px;
    padding: 3px;
    overflow: hidden;
    background: transparent;
    box-shadow: 0 0 18px rgba(167, 139, 250, 0.45), 0 0 40px rgba(106, 115, 217, 0.2);
    /* isolate stacking context so ::before clips correctly */
    isolation: isolate;
}

/* Rotating gradient layer — GPU-accelerated via transform, never repaints */
.shiny-btn-wrapper::before {
    content: '';
    position: absolute;
    inset: -100%;
    background: conic-gradient(from 0deg,
            #6a73d9, #a78bfa, #ec4899, #f9a8d4, #ffffff, #6a73d9);
    animation: shiny-rotate 2s linear infinite;
    will-change: transform;
}

@keyframes shiny-rotate {
    to {
        transform: rotate(360deg);
    }
}

.btn-shiny {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2.4rem;
    border-radius: 100px;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 1rem;
    color: #ffffff;
    background: linear-gradient(135deg, #6a73d9 0%, #7c3aed 100%);
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
    white-space: nowrap;
}

.btn-shiny:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 24px rgba(106, 115, 217, 0.4);
}

.btn-shiny i {
    width: 18px;
    height: 18px;
}
/* FAQ Section - Identity Corrected */
.faq-section {
    position: relative;
    padding: 100px 0;
    background: transparent;
    overflow: hidden;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.faq-header .heading {
    color: var(--text-primary);
    margin-bottom: 20px;
}

.faq-header .text-desc {
    color: var(--text-secondary);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.faq-item.glass {
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: var(--shadow-soft);
}

.faq-item.glass:hover {
    border-color: rgba(106, 115, 217, 0.2);
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: var(--shadow-floating);
}

.faq-question {
    width: 100%;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.faq-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: #6a73d9;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 40px;
}

.faq-answer p {
    padding-bottom: 30px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Active State */
.faq-item.active {
    background: #ffffff;
    border-color: rgba(106, 115, 217, 0.3);
    box-shadow: var(--shadow-floating);
}

.faq-item.active .faq-icon-wrap {
    background: #6a73d9;
    border-color: #6a73d9;
    box-shadow: 0 0 15px rgba(106, 115, 217, 0.3);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: white;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 25px 30px;
        font-size: 1.1rem;
    }
    .faq-answer {
        padding: 0 30px;
    }
}

.text-highlight-purple {
    background: linear-gradient(135deg, #3b2f8f 0%, #5b3fc7 40%, #7c3aed 70%, #6a73d9 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    display: inline-block;
}

/* FAQ specific heading style to match testimonials */
.faq-header .testi-heading {
    margin-bottom: 1.5rem;
}

.faq-header .testi-heading em {
    color: #6a73d9 !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
    font-style: normal;
}

@media (max-width: 768px) {
    .faq-header {
        text-align: center;
        padding: 0 1.5rem;
    }
    .faq-header .testi-heading {
        font-size: 2rem;
    }
}
