/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-primary: hsl(250, 85%, 60%);
    --color-primary-light: hsl(270, 80%, 65%);
    --color-primary-8: hsl(250, 85%, 60%, 0.08);
    --color-primary-15: hsl(250, 85%, 60%, 0.15);
    --color-primary-20: hsl(250, 85%, 60%, 0.2);
    --color-primary-30: hsl(250, 85%, 60%, 0.3);
    --color-primary-60: hsl(250, 85%, 60%, 0.6);
    --color-bg: #ffffff;
    --color-text: hsl(240, 10%, 4%);
    --color-text-muted: hsl(240, 4%, 46%);
    --color-border: hsl(240, 6%, 90%);
    --color-border-50: hsl(240, 6%, 90%, 0.5);
    --color-card-bg: #ffffff;
    --color-muted-bg: hsl(240, 5%, 96%);
    --gradient-hero: linear-gradient(135deg, hsl(250, 85%, 60%) 0%, hsl(270, 80%, 65%) 100%);
    --shadow-soft: 0 4px 20px -4px hsl(250 85% 60% / 0.15);
    --shadow-medium: 0 8px 30px -6px hsl(250 85% 60% / 0.2);
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --max-width: 1200px;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===== Icons ===== */
.icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    flex-shrink: 0;
}

.icon-xs { width: 12px; height: 12px; }
.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 20px; height: 20px; }
.icon-lg { width: 32px; height: 32px; }

.icon-filled { fill: currentColor; }

/* ===== Container ===== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.25rem;
}

@media (min-width: 640px) {
    .container { padding: 0 2rem; }
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.5rem 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-hero);
    color: #fff;
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    box-shadow: var(--shadow-soft);
    transform: scale(1.02);
}

.btn-ghost {
    color: var(--color-text-muted);
    background: transparent;
}

.btn-ghost:hover {
    color: var(--color-text);
}

.btn-outline-white {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    background: transparent;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-lg {
    font-size: 1rem;
    padding: 0.75rem 2rem;
    height: 3rem;
}

.btn-pill { border-radius: 9999px; }

.btn-full { width: 100%; }

/* ===== Header ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--color-border-50);
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.8);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    width: 32px;
    height: 32px;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--color-text);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-actions .btn-ghost {
    display: inline-flex;
    font-size: 0.8rem;
    padding: 0.375rem 0.75rem;
}

.header-actions .btn-primary {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
}

@media (min-width: 768px) {
    .nav-links { display: flex; gap: 1.25rem; }
    .nav-link { font-size: 0.8rem; }
    .header-actions .btn-ghost {
        font-size: 0.875rem;
        padding: 0.5rem 1.5rem;
    }
    .header-actions .btn-primary {
        font-size: 0.875rem;
        padding: 0.5rem 1.5rem;
    }
    .header-actions { gap: 0.75rem; }
}

@media (min-width: 1024px) {
    .nav-links { gap: 2rem; }
    .nav-link { font-size: 0.875rem; }
}

/* ===== Hero ===== */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, hsl(250, 60%, 97%), hsl(270, 50%, 97%, 0.5), var(--color-bg));
}

.hero-blur-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: var(--color-primary-8);
    border-radius: 50%;
    filter: blur(48px);
    pointer-events: none;
}

.hero-blur-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: hsl(270, 80%, 65%, 0.05);
    border-radius: 50%;
    filter: blur(48px);
    pointer-events: none;
}

.hero-content {
    position: relative;
    padding: 7rem 1rem;
}

.hero-grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-content { padding: 7rem 1rem; }
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .hero-content { padding: 7rem 1rem; }
}

/* Hero text */
.hero-text {
    max-width: 100%;
    animation: slide-up 0.6s ease-out;
}

@media (min-width: 1024px) {
    .hero-text { max-width: 560px; }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    background: var(--color-primary-8);
    border: 1px solid var(--color-primary-15);
    margin-bottom: 1.25rem;
}

.hero-badge-text {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-primary);
}

@media (min-width: 640px) {
    .hero-badge {
        gap: 0.625rem;
        padding: 0.5rem 1rem;
        margin-bottom: 2rem;
    }
    .hero-badge-text { font-size: 0.875rem; }
}

.ping-dot {
    position: relative;
    display: flex;
    width: 10px;
    height: 10px;
}

.ping-dot-ping {
    position: absolute;
    display: inline-flex;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--color-primary);
    opacity: 0.75;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.ping-dot-core {
    position: relative;
    display: inline-flex;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-primary);
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.hero-title-gradient {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

.hero-keyword-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

@media (min-width: 640px) {
    .hero-subtitle { font-size: 1.125rem; margin-bottom: 2rem; max-width: 28rem; }
}

.hero-subtitle-secondary {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-top: -0.75rem;
    margin-bottom: 1.75rem;
    opacity: 0.8;
}

@media (min-width: 640px) {
    .hero-subtitle-secondary { font-size: 0.9375rem; max-width: 28rem; }
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.hero-ctas .btn {
    width: 100%;
}

@media (min-width: 640px) {
    .hero-ctas { flex-direction: row; }
    .hero-ctas .btn { width: auto; }
}

@media (min-width: 768px) {
    .hero-title { font-size: 3rem; margin-bottom: 1.5rem; }
}

@media (min-width: 1024px) {
    .hero-title { font-size: 4rem; }
}

/* ===== Hero — Tablet (768px–1023px) ===== */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        max-width: 640px;
        margin: 0 auto;
    }
    .hero-content {
        padding: 7rem 0;
    }
    .hero-text {
        max-width: 560px;
        margin: 0 auto;
        text-align: left;
    }
    .hero-subtitle {
        font-size: 1.125rem;
        max-width: 28rem;
    }
    .hero-cards-wrapper {
        max-width: 540px;
        margin: 0 auto;
    }
    .hero-cards {
        height: 420px;
    }
    .hero-card-left {
        width: 220px;
        transform: translate(-50%, -50%) translateX(-110px) translateY(20px) rotate(-22deg);
    }
    .hero-card-center {
        width: 240px;
        transform: translate(-50%, -50%) translateY(-24px) scale(1.05);
    }
    .hero-card-right {
        width: 220px;
        transform: translate(-50%, -50%) translateX(110px) translateY(20px) rotate(22deg);
    }
    /* Floating chips */
    .floating-chip { display: flex; }
    .chip-top-right { top: 1.5rem; right: 0; }
    .chip-bottom-left { bottom: 3rem; left: -1rem; }
    .chip-bottom-right { bottom: 1rem; right: 1rem; }
}

/* Social proof */
.social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar-stack {
    display: flex;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-left: -10px;
    color: #fff;
}

.avatar:first-child { margin-left: 0; }
.avatar-violet { background: linear-gradient(to bottom right, hsl(264, 60%, 66%), hsl(270, 80%, 60%)); }
.avatar-emerald { background: linear-gradient(to bottom right, hsl(160, 60%, 60%), hsl(170, 60%, 55%)); }
.avatar-amber { background: linear-gradient(to bottom right, hsl(38, 80%, 65%), hsl(25, 85%, 60%)); }
.avatar-rose { background: linear-gradient(to bottom right, hsl(351, 70%, 65%), hsl(330, 70%, 60%)); }

.social-proof-text {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.social-proof-text strong {
    color: var(--color-text);
    font-weight: 600;
}

/* Hero cards */
.hero-cards-wrapper {
    display: block;
    animation: fade-in 0.5s ease-out 0.2s both;
    max-width: 340px;
    margin: 0 auto;
}

.hero-cards {
    position: relative;
    width: 100%;
    height: 300px;
    perspective: 1000px;
}

.hero-card {
    position: absolute;
    left: 50%;
    top: 50%;
    background: #fff;
    border-radius: 1rem;
    border: 1px solid hsl(0, 0%, 96%);
    padding: 0.875rem;
    transition: all 0.3s ease-out;
}

/* Mobile (< 640px): cards menores para caber na tela */
.hero-card-left {
    width: 160px;
    transform: translate(-50%, -50%) translateX(-75px) translateY(15px) rotate(-20deg);
    z-index: 1;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

.hero-card-center {
    width: 175px;
    transform: translate(-50%, -50%) translateY(-18px) scale(1.05);
    z-index: 3;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.15);
}

.hero-card-right {
    width: 160px;
    transform: translate(-50%, -50%) translateX(75px) translateY(15px) rotate(20deg);
    z-index: 1;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

/* sm (640px+): cards um pouco maiores */
@media (min-width: 640px) {
    .hero-cards-wrapper { max-width: 480px; }
    .hero-cards { height: 380px; }
    .hero-card { padding: 1rem; }
    .hero-card-left { width: 200px; transform: translate(-50%, -50%) translateX(-100px) translateY(18px) rotate(-22deg); }
    .hero-card-center { width: 220px; transform: translate(-50%, -50%) translateY(-22px) scale(1.05); }
    .hero-card-right { width: 200px; transform: translate(-50%, -50%) translateX(100px) translateY(18px) rotate(22deg); }
}

/* md/tablet (768px): tamanho intermediário */
@media (min-width: 768px) {
    .hero-cards-wrapper { max-width: 540px; }
    .hero-cards { height: 420px; }
    .hero-card { padding: 1.25rem; }
    .hero-card-left { width: 220px; transform: translate(-50%, -50%) translateX(-110px) translateY(20px) rotate(-22deg); }
    .hero-card-center { width: 240px; transform: translate(-50%, -50%) translateY(-24px) scale(1.05); }
    .hero-card-right { width: 220px; transform: translate(-50%, -50%) translateX(110px) translateY(20px) rotate(22deg); }
}

/* lg/desktop (1024px): tamanho completo */
@media (min-width: 1024px) {
    .hero-cards-wrapper { max-width: none; margin: 0; }
    .hero-cards { height: 480px; }
    .hero-card-left { width: 260px; }
    .hero-card-center { width: 280px; }
    .hero-card-right { width: 260px; }
}

.hero-cards:hover .hero-card-left {
    transform: translate(-50%, -50%) translateX(-120px) translateY(15px) rotate(-18deg);
}

.hero-cards:hover .hero-card-center {
    transform: translate(-50%, -50%) translateY(-30px) scale(1.08);
}

.hero-cards:hover .hero-card-right {
    transform: translate(-50%, -50%) translateX(120px) translateY(15px) rotate(18deg);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.card-icon {
    width: 32px;
    height: 32px;
    border-radius: 0.5rem;
    background: linear-gradient(to bottom right, hsl(258, 60%, 55%), hsl(270, 70%, 50%));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.card-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: hsl(220, 10%, 25%);
}

.card-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: hsl(0, 0%, 97%);
    border-radius: 0.75rem;
    padding: 0.5rem 0.75rem;
}

.card-row + .card-row { margin-top: 0.625rem; }

.card-row-highlight {
    background: hsl(258, 70%, 96%);
    border: 1px solid hsl(258, 60%, 88%);
}

.card-row-name {
    font-size: 0.75rem;
    font-weight: 500;
    color: hsl(220, 10%, 30%);
}

.card-row-highlight .card-row-name { color: hsl(258, 60%, 40%); }

.card-row-sub {
    font-size: 0.625rem;
    color: hsl(0, 0%, 70%);
}

.card-row-highlight .card-row-sub { color: hsl(258, 50%, 65%); }

.card-row-price {
    font-size: 0.75rem;
    font-weight: 700;
    color: hsl(155, 60%, 35%);
}

.card-row-highlight .card-row-price { color: hsl(258, 60%, 45%); }

/* Card center (agendamento) */
.card-field {
    border-radius: 0.75rem;
    padding: 0.75rem;
}

.card-field + .card-field { margin-top: 0.75rem; }

.card-field-purple {
    background: hsl(258, 70%, 96%);
    border: 1px solid hsl(258, 60%, 92%);
}

.card-field-gray { background: hsl(0, 0%, 97%); }

.card-field-label {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.card-field-purple .card-field-label { color: hsl(258, 50%, 55%); }
.card-field-gray .card-field-label { color: hsl(0, 0%, 70%); }

.card-field-value {
    font-size: 0.75rem;
    font-weight: 600;
    color: hsl(220, 10%, 25%);
}

.card-client {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-client-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(to bottom right, hsl(264, 50%, 65%), hsl(270, 70%, 55%));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.card-cta {
    width: 100%;
    background: linear-gradient(to right, hsl(258, 60%, 55%), hsl(270, 70%, 50%));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.625rem;
    border-radius: 0.75rem;
    text-align: center;
    margin-top: 0.75rem;
}

/* Card right (dashboard) */
.card-stat {
    border-radius: 0.75rem;
    padding: 0.5rem 0.75rem;
}

.card-stat + .card-stat { margin-top: 0.625rem; }

.card-stat-green {
    background: hsl(145, 60%, 96%);
    border: 1px solid hsl(145, 50%, 88%);
}

.card-stat-gray { background: hsl(0, 0%, 97%); }

.card-stat-label {
    font-size: 0.625rem;
    font-weight: 500;
}

.card-stat-green .card-stat-label { color: hsl(155, 60%, 35%); }
.card-stat-gray .card-stat-label { color: hsl(0, 0%, 70%); }

.card-stat-value {
    font-size: 1.125rem;
    font-weight: 700;
}

.card-stat-green .card-stat-value { color: hsl(155, 70%, 30%); }
.card-stat-gray .card-stat-value { color: hsl(220, 10%, 25%); }

.card-mini-stats {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.625rem;
}

.card-mini-stat {
    flex: 1;
    border-radius: 0.75rem;
    padding: 0.5rem;
    text-align: center;
}

.card-mini-violet {
    background: hsl(258, 70%, 96%);
}

.card-mini-amber {
    background: hsl(40, 80%, 96%);
}

.card-mini-label {
    font-size: 0.625rem;
}

.card-mini-violet .card-mini-label { color: hsl(258, 50%, 55%); }
.card-mini-amber .card-mini-label { color: hsl(40, 70%, 45%); }

.card-mini-value {
    font-size: 0.875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.125rem;
}

.card-mini-violet .card-mini-value { color: hsl(258, 60%, 40%); }
.card-mini-amber .card-mini-value { color: hsl(40, 70%, 35%); }

/* Card internals — mobile scaling (< 640px) */
@media (max-width: 639px) {
    .card-header { margin-bottom: 0.5rem; gap: 0.375rem; }
    .card-icon { width: 24px; height: 24px; border-radius: 0.375rem; }
    .card-icon .icon { width: 12px; height: 12px; }
    .card-title { font-size: 0.7rem; }
    .card-row { padding: 0.375rem 0.5rem; border-radius: 0.5rem; }
    .card-row + .card-row { margin-top: 0.375rem; }
    .card-row-name { font-size: 0.6rem; }
    .card-row-sub { font-size: 0.5rem; }
    .card-row-price { font-size: 0.6rem; }
    .card-field { padding: 0.5rem; border-radius: 0.5rem; }
    .card-field + .card-field { margin-top: 0.375rem; }
    .card-field-label { font-size: 0.5rem; }
    .card-field-value { font-size: 0.6rem; }
    .card-cta { font-size: 0.6rem; padding: 0.4rem; margin-top: 0.5rem; border-radius: 0.5rem; }
    .card-client-avatar { width: 14px; height: 14px; }
    .card-client-avatar .icon { width: 8px; height: 8px; }
    .card-client { gap: 0.25rem; }
    .card-stat { padding: 0.375rem 0.5rem; border-radius: 0.5rem; }
    .card-stat + .card-stat { margin-top: 0.375rem; }
    .card-stat-label { font-size: 0.5rem; }
    .card-stat-value { font-size: 0.75rem; }
    .card-mini-stats { gap: 0.25rem; margin-top: 0.375rem; }
    .card-mini-stat { padding: 0.25rem; border-radius: 0.5rem; }
    .card-mini-label { font-size: 0.5rem; }
    .card-mini-value { font-size: 0.65rem; }
}

/* Floating chips */
.floating-chip {
    display: none;
    position: absolute;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid hsl(0, 0%, 96%);
    z-index: 10;
    animation: fade-in 0.5s ease-out both;
}

@media (min-width: 768px) {
    .floating-chip { display: flex; }
}

.chip-top-right { top: 1.5rem; right: 0; }
.chip-bottom-left { bottom: 3rem; left: -1rem; animation-delay: 0.2s; }
.chip-bottom-right { bottom: 1rem; right: 1rem; animation-delay: 0.4s; }

.chip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: hsl(155, 60%, 50%);
    animation: pulse 2s infinite;
}

.chip-label {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: hsl(0, 0%, 70%);
    font-weight: 500;
}

.chip-value {
    font-size: 0.75rem;
    font-weight: 700;
}

.chip-value-green { color: hsl(155, 60%, 35%); }
.chip-value-violet { color: hsl(258, 60%, 45%); }

.chip-text {
    font-size: 0.75rem;
    font-weight: 500;
    color: hsl(0, 0%, 50%);
}

/* ===== Como Funciona ===== */
.steps-section {
    padding: 3rem 0;
    background: hsl(240, 5%, 96%, 0.3);
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--color-text-muted);
    max-width: 42rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .section-header { margin-bottom: 3rem; }
    .section-title { font-size: 1.75rem; }
    .section-subtitle { font-size: 1.125rem; }
}

@media (min-width: 768px) {
    .steps-section { padding: 5rem 0; }
    .section-header { margin-bottom: 4rem; }
    .section-title { font-size: 2.25rem; }
}

.steps {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .steps {
        flex-direction: row;
        gap: 0;
    }
}

.step {
    flex: 1;
    text-align: center;
}

@media (min-width: 768px) {
    .step { text-align: left; }
}

.step-number {
    font-size: 3.75rem;
    font-weight: 900;
    color: var(--color-primary-20);
    line-height: 1;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.step-desc {
    color: var(--color-text-muted);
}

.step-arrow {
    display: none;
    align-items: center;
    justify-content: center;
    padding-top: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
    flex-shrink: 0;
    color: var(--color-primary-30);
}

@media (min-width: 768px) {
    .step-arrow { display: flex; }
}

.step-highlight {
    font-weight: 500;
    color: var(--color-text);
}

/* ===== Para quem é o Pontuali ===== */
.audience-section {
    padding: 3rem 0;
    background: var(--color-muted-bg);
}

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

.audience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .audience-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .audience-grid { grid-template-columns: repeat(5, 1fr); }
}

.audience-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.audience-card:hover {
    box-shadow: var(--shadow-medium);
    border-color: var(--color-primary-light);
}

.audience-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--color-primary-8);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

.audience-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
}

.audience-desc {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ===== Features ===== */
.features-section {
    padding: 3rem 0;
}

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

.features-grid {
    display: grid;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
    background: var(--color-card-bg);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-border);
    transition: all 0.3s;
}

@media (min-width: 768px) {
    .feature-card { padding: 2rem; }
}

.feature-card:hover {
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #fff;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-desc {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .feature-title { font-size: 1.25rem; margin-bottom: 0.75rem; }
    .feature-desc { font-size: 1rem; }
}

/* ===== Planos ===== */
.plans-section {
    padding: 3.5rem 0;
    background: linear-gradient(to bottom right, hsl(222, 47%, 11%), hsl(270, 50%, 15%), hsl(222, 47%, 11%));
    position: relative;
    overflow: hidden;
}

.plans-blur-1 {
    position: absolute;
    top: 0;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background: hsl(270, 70%, 50%, 0.2);
    border-radius: 50%;
    filter: blur(48px);
}

.plans-blur-2 {
    position: absolute;
    bottom: 0;
    right: 25%;
    width: 24rem;
    height: 24rem;
    background: hsl(258, 70%, 55%, 0.2);
    border-radius: 50%;
    filter: blur(48px);
}

.plans-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .plans-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .plans-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 768px) {
    .plans-section { padding: 6rem 0; }
}

.plan-card {
    position: relative;
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .plan-card { padding: 2rem; }
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.1);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.plan-card-highlight {
    background: rgba(255, 255, 255, 0.08);
    border-color: hsl(270, 60%, 60%, 0.4);
    box-shadow: 0 0 0 1px hsl(270, 60%, 60%, 0.2);
}

.plan-card-highlight:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: hsl(270, 60%, 60%, 0.6);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-hero);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    white-space: nowrap;
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.plan-price {
    margin-bottom: 1.5rem;
}

.plan-price-value {
    font-size: 2.25rem;
    font-weight: 700;
    color: #fff;
}

.plan-price-period {
    color: rgba(255, 255, 255, 0.5);
    margin-left: 0.25rem;
}

.plan-caption {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.plan-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.plan-feature-icon-check { color: hsl(270, 60%, 76%); }
.plan-feature-icon-x { color: rgba(255, 255, 255, 0.3); }

.plan-feature-value {
    color: rgba(255, 255, 255, 0.6);
}

.plans-note {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
    text-align: center;
    margin-top: 2rem;
}

.section-title-white { color: #fff; }
.section-subtitle-white { color: rgba(255, 255, 255, 0.6); }

/* ===== Benefícios ===== */
.benefits-section {
    padding: 3rem 0;
}

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

.benefits-grid {
    display: grid;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .benefits-grid { grid-template-columns: repeat(3, 1fr); }
}

.benefit-card {
    background: var(--color-card-bg);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-border);
    text-align: center;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #fff;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.benefit-desc {
    color: var(--color-text-muted);
}

/* ===== FAQ ===== */
.faq-section {
    padding: 3.5rem 0;
    background: linear-gradient(to bottom right, hsl(222, 47%, 11%), hsl(270, 50%, 15%), hsl(222, 47%, 11%));
    position: relative;
    overflow: hidden;
}

.faq-blur {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: hsl(270, 70%, 50%, 0.1);
    border-radius: 50%;
    filter: blur(48px);
    pointer-events: none;
}

.faq-list {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
    .faq-section { padding: 6rem 0; }
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    font-size: 0.875rem;
    color: #fff;
}

@media (min-width: 640px) {
    .faq-item summary {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary .icon {
    color: rgba(255, 255, 255, 0.4);
    transition: transform 0.2s;
    flex-shrink: 0;
}

.faq-item[open] summary .icon {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.faq-answer {
    padding: 0 1.25rem 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .faq-answer { padding: 0 1.5rem 1.25rem; }
}

/* ===== CTA Final ===== */
.cta-section {
    padding: 3.5rem 0;
    background: hsl(222, 47%, 5%);
    position: relative;
    overflow: hidden;
}

.cta-blur-1 {
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background: hsl(258, 60%, 45%, 0.2);
    border-radius: 50%;
    filter: blur(48px);
    pointer-events: none;
}

.cta-blur-2 {
    position: absolute;
    top: 0;
    right: 25%;
    width: 16rem;
    height: 16rem;
    background: hsl(270, 60%, 50%, 0.15);
    border-radius: 50%;
    filter: blur(48px);
    pointer-events: none;
}

@media (min-width: 768px) {
    .cta-section { padding: 6rem 0; }
}

.cta-card {
    max-width: 42rem;
    margin: 0 auto;
    text-align: center;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2.5rem 1.25rem;
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.1);
}

@media (min-width: 640px) {
    .cta-card { padding: 3rem 2rem; }
}

@media (min-width: 768px) {
    .cta-card { padding: 3.5rem 4rem; }
}

.cta-icon {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: #fff;
    box-shadow: 0 8px 20px var(--color-primary-30);
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .cta-title { font-size: 1.875rem; margin-bottom: 1rem; }
}

@media (min-width: 768px) {
    .cta-title { font-size: 2.25rem; }
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .cta-subtitle { font-size: 1.125rem; margin-bottom: 2.5rem; }
}

.cta-btn {
    font-size: 1.125rem;
    padding: 0.75rem 2.5rem;
    box-shadow: 0 8px 20px var(--color-primary-30);
}

.cta-btn:hover {
    box-shadow: 0 12px 30px hsl(250, 85%, 60%, 0.5);
    transform: scale(1.05);
}

.cta-badges {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

@media (min-width: 640px) {
    .cta-badges {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 2rem;
    }
}

.cta-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 640px) {
    .cta-badge { font-size: 0.875rem; }
}

.cta-badge .icon {
    color: var(--color-primary-60);
}

/* ===== Footer ===== */
.footer {
    border-top: 1px solid var(--color-border);
    padding: 2rem 0;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo img {
    width: 24px;
    height: 24px;
}

.footer-logo-text {
    font-weight: 600;
}

.footer-copy {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-link {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--color-text);
}

/* ===== Animations ===== */
@keyframes fade-in {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes slide-up {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes ping {
    75%, 100% { transform: scale(2); opacity: 0; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ===== Utilities ===== */
.relative { position: relative; }
.text-center { text-align: center; }
.hidden-mobile { display: none; }
@media (min-width: 768px) {
    .hidden-mobile { display: inline; }
}
