@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;700&display=swap');

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

:root {
    --bg: #050505;
    --bg2: #0f0f0f;
    --bg3: #181818;
    --surface: rgba(255, 255, 255, 0.03);
    --purple: #8B3CF7;
    --purple-light: #a855f7;
    --purple-dim: rgba(139, 60, 247, 0.15);
    --purple-glow: rgba(139, 60, 247, 0.4);
    --chumbo: #2d3436;
    --chumbo-light: #636e72;
    --chumbo-dim: rgba(45, 52, 54, 0.1);
    --green: #10b981;
    --white: #f8fafc;
    --muted: #94a3b8;
    --faint: #475569;
    --border: rgba(255, 255, 255, 0.06);
    --border-purple: rgba(139, 60, 247, 0.3);
    --font: 'Inter', sans-serif;
    --font-head: 'Outfit', sans-serif;
    --mono: 'JetBrains Mono', monospace;
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* GRID BACKGROUND */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(139, 60, 247, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 60, 247, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* NAV */
.ft-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    padding: 1.25rem 5%;
    transition: all 0.3s ease;
}

.ft-nav-inner {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-purple);
    border-radius: 100px;
    padding: 0.75rem 1.5rem;
    box-shadow: var(--glass-shadow);
}

.ft-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.04em;
}

.ft-logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: contain;
}

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

.ft-nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.ft-nav-links a:hover {
    color: var(--white);
}

.ft-nav-cta {
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    color: #fff;
    text-decoration: none;
    padding: 0.6rem 1.25rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
    box-shadow: 0 0 20px var(--purple-dim);
}

.ft-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--purple-glow);
}

/* MOBILE MENU & BUTTON */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(15px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body.menu-open {
    overflow: hidden;
}

body.menu-open .mobile-menu-overlay {
    opacity: 1;
    pointer-events: auto;
}

.close-menu-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav-links a {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
}

/* MARQUEE */
.marquee-wrap {
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
    background: var(--bg2);
    position: relative;
    z-index: 10;
}

.marquee-track {
    display: flex;
    gap: 4rem;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
    width: max-content;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--font-head);
}

.marquee-item::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--purple);
    box-shadow: 0 0 10px var(--purple);
}

/* HERO */
.ft-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 8rem 10% 4rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-image: url('banner-hero-pc.jpg');
    background-size: cover;
    background-position: right 25%;
    background-repeat: no-repeat;
    background-color: var(--bg);
}

.hero-glow-1 {
    position: absolute;
    top: -200px;
    left: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(139, 60, 247, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.hero-glow-2 {
    position: absolute;
    bottom: -200px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 60, 247, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.ft-hero-inner {
    max-width: 55%;
    /* Limita a largura para o texto não invadir a área da imagem à direita */
    text-align: left;
    position: relative;
    z-index: 1;
}

.ft-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--purple-dim);
    border: 1px solid var(--border-purple);
    color: var(--purple-light);
    font-size: 0.78rem;
    font-weight: 600;
    font-family: var(--mono);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.ft-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--purple-light);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

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

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

.ft-h1 {
    font-family: var(--font-head);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.ft-h1 .dim {
    color: var(--muted);
}

.ft-h1 .grad {
    background: linear-gradient(135deg, var(--purple-light), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ft-hero-sub {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 0 2.5rem;
    line-height: 1.7;
}

.ft-hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    color: #fff;
    text-decoration: none;
    padding: 0.9rem 2rem;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 0 30px var(--purple-dim);
    font-family: var(--font);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px var(--purple-glow);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    padding: 0.9rem 2rem;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 500;
    border: 1px solid var(--border-purple);
    transition: all 0.3s;
    font-family: var(--font);
}

.btn-ghost:hover {
    background: var(--purple-dim);
    border-color: var(--purple-light);
}

.ft-mini-checks {
    display: flex;
    gap: 2rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.ft-mini-checks span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.ft-mini-checks .chk {
    width: 18px;
    height: 18px;
    background: var(--purple-dim);
    border: 1px solid var(--border-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-light);
    font-size: 0.65rem;
    flex-shrink: 0;
}

/* SECTIONS */
.ft-section {
    padding: 7rem 5%;
    position: relative;
    z-index: 1;
}

.ft-section-dark {
    background: var(--bg2);
}

.ft-section-alt {
    background: var(--bg);
}

.ft-section-label {
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--purple-light);
    margin-bottom: 0.75rem;
}

.ft-section-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1rem;
}

.ft-section-sub {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 600px;
}

.ft-center {
    text-align: center;
}

.ft-center .ft-section-sub {
    margin: 0 auto;
}

/* GRID 3 COLS */
.ft-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

/* BENTO GRID */
.ft-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.bento-span-1 {
    grid-column: span 1;
}

.bento-span-2 {
    grid-column: span 2;
}

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

    .bento-span-1,
    .bento-span-2 {
        grid-column: span 1;
    }
}

/* GLASS CARD */
.glass-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--purple-dim), transparent);
}

.glass-card:hover {
    border-color: var(--border-purple);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 30px var(--purple-dim);
}

.glass-card.danger {
    border-color: rgba(239, 68, 68, 0.2);
}

.glass-card.danger:hover {
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 20px 60px rgba(239, 68, 68, 0.1);
}

.glass-card.warn {
    border-color: rgba(245, 158, 11, 0.2);
}

.glass-card.warn:hover {
    border-color: rgba(245, 158, 11, 0.4);
}

/* ICON BOX */
.ft-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.4rem;
}

.ft-icon-box.purple {
    background: var(--purple-dim);
    border: 1px solid var(--border-purple);
}

.ft-icon-box.red {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.ft-icon-box.yellow {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.ft-icon-box.cyan {
    background: var(--chumbo-dim);
    border: 1px solid var(--chumbo-light);
}

.ft-icon-box.green {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.glass-card h3 {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.glass-card p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

.glass-card .quote-text {
    font-size: 1rem;
    color: var(--white);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* SOLUÇÃO BIG */
.ft-solution {
    padding: 8rem 5%;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.ft-solution-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 60, 247, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

.ft-big-text {
    font-family: var(--font-head);
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1;
    background: linear-gradient(135deg, #fff 30%, var(--muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.ft-accent-text {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--mono);
    color: var(--purple-light);
    letter-spacing: -0.02em;
}

/* STEPS */
.ft-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
}

.ft-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 16.5%;
    right: 16.5%;
    height: 1px;
    background: linear-gradient(90deg, var(--purple-dim), var(--purple-glow), var(--purple-dim));
}

.ft-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border-purple);
    border-radius: 20px;
    position: relative;
    transition: all 0.3s;
}

.ft-step:hover {
    border-color: var(--purple-light);
    box-shadow: 0 0 30px var(--purple-dim);
}

.ft-step-num {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mono);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 20px var(--purple-glow);
}

.ft-step h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.ft-step p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* TESTIMONIALS */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.t-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--chumbo-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
}

.t-name {
    font-weight: 600;
    color: var(--white);
    font-size: 0.9rem;
}

.t-role {
    color: var(--faint);
    font-size: 0.8rem;
}

/* PLANS */
.ft-plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
}

.plan-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.3s;
}

.plan-card:hover {
    border-color: var(--border-purple);
    transform: translateY(-4px);
}

.plan-card.featured {
    background: linear-gradient(135deg, rgba(139, 60, 247, 0.15), rgba(139, 60, 247, 0.05));
    border-color: var(--purple);
    transform: scale(1.05);
    box-shadow: 0 0 60px var(--purple-dim);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.plan-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.plan-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--mono);
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.plan-price span {
    font-size: 1rem;
    color: var(--muted);
    font-weight: 400;
}

.plan-desc {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.plan-features {
    list-style: none;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted);
    font-size: 0.88rem;
    padding: 0.4rem 0;
}

.plan-features li::before {
    content: '✓';
    color: var(--purple-light);
    font-weight: 700;
    flex-shrink: 0;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: var(--border-purple);
}

.faq-q {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
}

.faq-q-icon {
    width: 32px;
    height: 32px;
    background: var(--purple-dim);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-light);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.faq-q h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.01em;
    flex: 1;
}

.faq-a {
    padding: 0 1.5rem 1.25rem 3.75rem;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* CTA FOOTER */
.ft-cta {
    padding: 5rem 5%;
    position: relative;
    z-index: 1;
}

.ft-cta-inner {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(139, 60, 247, 0.1), rgba(45, 52, 54, 0.1));
    border: 1px solid var(--border-purple);
    border-radius: 32px;
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ft-cta-inner::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--purple-light), transparent);
}

.ft-cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 60, 247, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.ft-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
}

.ft-cta p {
    color: var(--muted);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    position: relative;
}

/* FOOTER */
.ft-footer {
    padding: 5rem 5% 2rem;
    border-top: 1px solid var(--border);
    background: var(--bg2);
    position: relative;
    z-index: 1;
}

.ft-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.footer-col h4 {
    font-family: var(--font-head);
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-col a {
    display: block;
    color: var(--muted);
    text-decoration: none;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--purple-light);
}

.brand-col p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 300px;
}

.ft-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--faint);
    font-size: 0.85rem;
}

.ft-socials {
    display: flex;
    gap: 1rem;
}

.ft-socials a {
    color: var(--muted);
    transition: color 0.2s;
}

.ft-socials a:hover {
    color: var(--purple-light);
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    animation: float-wa 3s ease-in-out infinite;
}

.whatsapp-float svg {
    width: 34px;
    height: 34px;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

@keyframes float-wa {

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

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

/* RESPONSIVE */
@media (max-width: 992px) {

    .ft-grid-3,
    .ft-steps,
    .ft-plans-grid {
        grid-template-columns: 1fr;
    }

    .ft-steps::before {
        display: none;
    }

    .plan-card.featured {
        transform: none;
    }

    .ft-nav-links {
        display: none;
    }

    .ft-nav-cta {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    /* removed mobile-menu-btn */

    .ft-hero {
        padding: 7rem 6% clamp(440px, 110vw, 760px);
        background-image: url('baner-hero-celular.jpg');
        background-size: 180vw auto;
        background-position: center calc(100% + 90px);
        background-repeat: no-repeat;
        background-color: var(--bg);
    }

    .ft-hero-inner {
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
    }

    .ft-hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .ft-hero-ctas,
    .ft-mini-checks {
        justify-content: center;
    }
}

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

    .bento-span-1,
    .bento-span-2 {
        grid-column: span 1;
    }

    .ft-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ft-product-reveal {
        padding: 0 5% 4rem;
    }
}

@media (max-width: 600px) {
    .ft-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ft-footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .ft-cta-inner {
        padding: 3rem 1.5rem;
        border-radius: 20px;
    }

    .ft-hero-ctas {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 1.5rem;
    }

    .ft-hero-ctas a {
        justify-content: center;
        width: 100%;
    }

    .ft-mini-checks {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
        margin-bottom: 2rem;
    }

    .ft-hero {
        padding-bottom: clamp(460px, 140vw, 820px);
        background-position: center calc(100% + 140px);
    }

    /* Adjusted for larger phone height */
}


/* DEPOIMENTO */
#depoimento {
    --depo-purple: #7C3A9E;
    --depo-purple-dim: rgba(124, 58, 158, 0.18);
    --depo-border: rgba(124, 58, 158, 0.28);
}

.ft-testimonial-wrap {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.ft-testimonial-card {
    width: 60%;
    max-width: 900px;
    padding: 2.25rem 2.25rem 1.75rem;
    border-color: var(--depo-border);
}

.ft-testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(124, 58, 158, 0.45);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35), 0 0 26px var(--depo-purple-dim);
}

.ft-testimonial-quote {
    font-family: var(--font-head);
    font-size: 3.25rem;
    line-height: 1;
    color: var(--depo-purple);
    margin-bottom: 0.75rem;
    opacity: 0.95;
}

.ft-testimonial-text {
    color: rgba(248, 250, 252, 0.92);
    font-size: 1.05rem;
    line-height: 1.85;
    letter-spacing: -0.01em;
}

.ft-testimonial-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
    margin: 1.75rem 0 1.25rem;
}

.ft-testimonial-brand {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
    margin: 0;
}

.ft-testimonial-logo {
    height: 40px;
    width: auto;
    opacity: 1;
    filter: invert(1) brightness(1.15) contrast(1.05);
}

.ft-testimonial-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 1rem;
}

.ft-testimonial-inline-stats {
    display: flex;
    gap: 2rem;
    text-align: left;
}

@media (max-width: 850px) {
    .ft-testimonial-footer-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .ft-testimonial-inline-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
}

.ft-testimonial-stats {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.ft-testimonial-stat-number {
    font-family: var(--font-head);
    font-weight: 500;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    letter-spacing: -0.03em;
    color: var(--depo-purple);
    margin-bottom: 0.25rem;
}

.ft-testimonial-stat-label {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.35;
}

@media (max-width: 992px) {
    .ft-testimonial-card {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .ft-testimonial-card {
        padding: 1.75rem 1.5rem 1.4rem;
    }

    .ft-testimonial-logo {
        height: 40px;
        opacity: 1;
    }

    .ft-testimonial-stats {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 2rem;
    }
}