/* ============================================
   MOVVE LANDING PAGE - NEW VERSION
   ============================================ */

/* ============================================
   CORE VARIABLES & RESET
============================================ */
:root {
    /* Colors */
    --color-primary: #2563EB;
    --color-primary-dark: #1D4ED8;
    --color-secondary: #0F172A;
    --color-text: #334155;
    --color-text-light: #64748B;
    --color-bg: #FAFAFA;
    --color-surface: #FFFFFF;
    --color-accent-green: #10B981;
    --color-accent-orange: #F59E0B;
    --color-accent-purple: #8B5CF6;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    --gradient-text: linear-gradient(to right, #2563EB, #1D4ED8);

    /* Shadows & Effects */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 20px rgba(37, 99, 235, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: 1px solid rgba(255, 255, 255, 0.5);
    --blur: 12px;

    /* Spacing & Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   UTILITY CLASSES
============================================ */
.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

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

.btn-ghost:hover {
    color: var(--color-primary);
    background: rgba(37, 99, 235, 0.05);
}

.btn-white {
    background: white;
    color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--color-primary);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

/* ============================================
   BACKGROUND FX
============================================ */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: #FAFAFA;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float-blob 20s infinite ease-in-out;
}

.blob-1 {
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: rgba(37, 99, 235, 0.15);
}

.blob-2 {
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(236, 72, 153, 0.15);
    animation-delay: -5s;
}

.blob-3 {
    top: 40%;
    left: 40%;
    width: 300px;
    height: 300px;
    background: rgba(16, 185, 129, 0.1);
    animation-delay: -10s;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

@keyframes float-blob {

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

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* ============================================
   HEADER & NAV
============================================ */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: var(--container-width);
    height: 70px;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
    border: var(--glass-border);
    border-radius: 100px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    transition: all 0.3s ease;
}

.header.scrolled {
    top: 10px;
    width: 95%;
    background: rgba(255, 255, 255, 0.95);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--color-secondary);
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transform: rotate(-6deg);
}

.nav-desktop {
    display: none;
}

.nav-desktop a {
    font-weight: 500;
    color: var(--color-text);
    padding: 8px 16px;
    border-radius: 20px;
}

.nav-desktop a:hover {
    color: var(--color-primary);
    background: rgba(37, 99, 235, 0.05);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-actions .btn {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Mobile Menu */
.mobile-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--color-secondary);
}

.mobile-menu {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%) scale(0.95);
    width: 90%;
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    text-align: center;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
    top: 100px;
}

.mobile-menu a {
    display: block;
    padding: 12px;
    font-weight: 600;
    color: var(--color-text);
    border-bottom: 1px solid #eee;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
        gap: 4px;
    }

    .mobile-toggle {
        display: none;
    }

    .nav-actions .btn-ghost {
        display: inline-flex;
    }
}

@media (max-width: 767px) {

    /* Mobile: Apenas o botão "Entrar" com bg azul aparece */
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: inline-flex !important;
        padding: 10px 20px;
        font-size: 14px;
        white-space: nowrap;
    }

    .nav-actions {
        display: flex !important;
    }

    .header {
        padding: 20px 20px;
        justify-content: space-between;
    }

    .logo {
        font-size: 18px;
    }
}

/* Desktop: Mostra Entrar (ghost) + Começar Grátis (bg), oculta mobile-only */
@media (min-width: 768px) {
    .mobile-only {
        display: none !important;
    }

    .desktop-only {
        display: inline-flex !important;
    }
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
    padding-top: 160px;
    padding-bottom: 80px;
    position: relative;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Social Proof */
.social-proof {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatar-stack {
    display: flex;
}

.avatar-hover {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid white;
    overflow: hidden;
    margin-left: -14px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.avatar-hover:first-child {
    margin-left: 0;
}

.avatar-hover:hover {
    transform: translateY(-6px) scale(1.1);
    z-index: 10;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.avatar-stack:hover .avatar-hover {
    margin-left: -8px;
}

.avatar-stack:hover .avatar-hover:first-child {
    margin-left: 0;
}

.proof-text {
    text-align: left;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.proof-text .stars {
    color: #F59E0B;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 2px;
}

.proof-text strong {
    color: var(--color-secondary);
}

.hero-visual-container {
    position: relative;
    margin-top: 40px;
    perspective: 1200px;
    overflow: hidden;
}

/* Glow Effect */
.visual-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(40, 118, 231, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

/* Dashboard Mockup */
.dashboard-mockup {
    background: #ffffff;
    border-radius: 16px;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05),
        0 0 80px rgba(40, 118, 231, 0.08);
    overflow: hidden;
    max-width: 520px;
    margin: 0 auto;
    transform: rotateX(4deg) rotateY(-2deg);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    z-index: 5;
}

.hero-visual-container:hover .dashboard-mockup {
    transform: rotateX(0deg) rotateY(0deg) translateY(-8px);
    box-shadow:
        0 35px 60px -15px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(0, 0, 0, 0.05),
        0 0 100px rgba(40, 118, 231, 0.12);
}

/* Browser Chrome */
.browser-chrome {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid #e2e8f0;
}

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

.browser-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.browser-dots .dot.red {
    background: #ef4444;
}

.browser-dots .dot.yellow {
    background: #f59e0b;
}

.browser-dots .dot.green {
    background: #22c55e;
}

.browser-url {
    flex: 1;
    background: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #e2e8f0;
}

.browser-url svg {
    color: #22c55e;
}

/* Dashboard Content */
.dashboard-content {
    display: flex;
    min-height: 280px;
}

/* Mini Sidebar */
.mini-sidebar {
    width: 52px;
    background: #1e293b;
    padding: 12px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mini-logo {
    padding: 8px;
    margin-bottom: 8px;
}

.mini-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    padding: 0 8px;
}

.mini-nav-item {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.2s;
}

.mini-nav-item.active {
    background: rgba(40, 118, 231, 0.2);
    color: #60a5fa;
}

.mini-nav-item:hover:not(.active) {
    background: rgba(255, 255, 255, 0.05);
}

/* Main Area */
.main-area {
    flex: 1;
    padding: 16px 20px;
    background: #fafbfc;
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
}

.dash-title {
    font-weight: 600;
    font-size: 14px;
    color: #1e293b;
}

.dash-subtitle {
    font-size: 11px;
    color: #94a3b8;
    margin-top: 2px;
}

.dash-badge {
    background: linear-gradient(135deg, #2876E7 0%, #1e5cbf 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.timeline-item {
    display: flex;
    gap: 12px;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 40px;
}

.time-block .time {
    font-size: 10px;
    font-weight: 600;
    color: #64748b;
}

.time-line {
    width: 2px;
    flex: 1;
    background: #e2e8f0;
    margin-top: 6px;
    min-height: 20px;
}

.timeline-item.current .time-line {
    background: linear-gradient(180deg, #2876E7 0%, #e2e8f0 100%);
}

/* Appointment Cards */
.appointment-card {
    flex: 1;
    background: white;
    border-radius: 10px;
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
}

.appointment-card.primary {
    background: linear-gradient(135deg, rgba(40, 118, 231, 0.08) 0%, rgba(40, 118, 231, 0.02) 100%);
    border-color: #2876E7;
    box-shadow: 0 2px 8px rgba(40, 118, 231, 0.15);
}

.appointment-card.subtle {
    opacity: 0.6;
}

.appt-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.appt-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.appt-info {
    flex: 1;
}

.appt-name {
    font-size: 12px;
    font-weight: 600;
    color: #1e293b;
}

.appt-service {
    font-size: 10px;
    color: #64748b;
}

.appt-status {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.appt-status.confirmed {
    background: #22c55e;
    color: white;
}

.appt-time {
    font-size: 10px;
    color: #94a3b8;
    margin-top: 6px;
}

/* Floating Cards */
.float-card {
    position: absolute;
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
    animation: float-y 5s ease-in-out infinite;
}

.float-card.stat-revenue {
    top: 15%;
    right: -30px;
}

.float-card.stat-clients {
    bottom: 20%;
    left: -40px;
    animation-delay: -2s;
}

.float-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-icon.green {
    background: #dcfce7;
    color: #22c55e;
}

.float-icon.blue {
    background: #dbeafe;
    color: #3b82f6;
}

.float-content {
    display: flex;
    flex-direction: column;
}

.float-label {
    font-size: 10px;
    color: #64748b;
}

.float-value {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
}

/* Notification Toast */
.float-notification {
    position: absolute;
    top: 5%;
    right: 20px;
    background: white;
    padding: 10px 14px;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
    animation: float-y 4s ease-in-out infinite, slideIn 0.5s ease;
    animation-delay: 1s, 0s;
}

.notif-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.notif-content {
    display: flex;
    flex-direction: column;
}

.notif-title {
    font-size: 11px;
    font-weight: 600;
    color: #1e293b;
}

.notif-time {
    font-size: 9px;
    color: #94a3b8;
}

@keyframes float-y {

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

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

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

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@media (min-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }

    .hero-content {
        margin: 0;
        text-align: left;
    }

    .hero-visual-container {
        margin-top: 0;
    }
}

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

    /* Esconde floating cards no mobile para evitar overflow horizontal */
    .float-card,
    .float-notification {
        display: none;
    }

    /* Garante que o container do hero não cause overflow */
    .hero-visual-container {
        overflow: hidden;
        margin-left: -20px;
        margin-right: -20px;
        padding: 0 20px;
    }
}

/* ============================================
   BENTO GRID FEATURES
============================================ */
.features {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 16px;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.bento-card {
    background: white;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.card-content {
    padding: 32px;
    flex: 1;
}

.card-visual {
    background: #F8FAFC;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 12px;
}

.card-desc {
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--color-text);
}

.check-icon {
    color: var(--color-accent-green);
    flex-shrink: 0;
}

/* Desktop Grid Layout */
@media (min-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, auto);
    }

    .card-large {
        grid-column: span 2;
        display: flex;
        flex-direction: row;
    }

    .card-large .card-content {
        max-width: 50%;
    }

    .card-large .card-visual {
        flex: 1;
    }

    /* Order Specifics */
    .card-1 {
        grid-column: span 2;
    }

    .card-2 {
        grid-column: span 1;
    }

    .card-3 {
        grid-column: span 1;
    }

    .card-4 {
        grid-column: span 2;
        flex-direction: row-reverse;
    }
}

/* ============================================
   HOW IT WORKS
============================================ */
.steps-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #F8FAFC 100%);
}

.steps-section .section-header p {
    color: #64748b;
    font-size: 1.1rem;
    margin-top: 12px;
}

.steps-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-top: 60px;
    flex-wrap: wrap;
}

.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
    max-width: 180px;
    position: relative;
}

.step-number {
    margin-bottom: 16px;
}

.step-number span {
    font-size: 12px;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 1px;
}

.step-icon-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.step-icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.step-card:hover .step-icon-circle {
    transform: translateY(-4px);
    border-color: var(--color-primary);
    box-shadow: 0 8px 25px rgba(40, 118, 231, 0.15);
}

.step-card.highlight .step-icon-circle {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1e5cbf 100%);
    border-color: var(--color-primary);
    color: white;
}

.step-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
}

.step-connector {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #e2e8f0 0%, #cbd5e1 50%, #e2e8f0 100%);
    margin-top: 52px;
    flex-shrink: 0;
    position: relative;
}

.step-connector::after {
    content: '';
    position: absolute;
    right: -4px;
    top: -3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
}

.steps-cta {
    text-align: center;
    margin-top: 60px;
}

.steps-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Responsive Steps */
@media (max-width: 1024px) {
    .steps-timeline {
        gap: 20px;
    }

    .step-connector {
        display: none;
    }

    .step-card {
        width: calc(33.33% - 20px);
        max-width: none;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .steps-timeline {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .step-card {
        width: 100%;
        max-width: 280px;
        flex-direction: row;
        text-align: left;
        padding: 16px;
        background: white;
        border-radius: 12px;
        border: 1px solid #e2e8f0;
        gap: 16px;
    }

    .step-card .step-number {
        display: none;
    }

    .step-icon-wrapper {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .step-icon-circle {
        width: 56px;
        height: 56px;
    }

    .step-icon-circle svg {
        width: 24px;
        height: 24px;
    }

    .step-connector {
        width: 2px;
        height: 20px;
        margin: 0;
    }

    .step-connector::after {
        display: none;
    }
}

/* ============================================
   PRICING
============================================ */
.pricing {
    padding: 100px 0;
    background: linear-gradient(180deg, #F8FAFC 0%, white 100%);
}

/* Grid para dois cards lado a lado */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

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

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid #E2E8F0;
    position: relative;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* Card destacado (featured) - Azul */
.pricing-card.featured {
    background: var(--gradient-primary);
    border: none;
    box-shadow: var(--shadow-xl), 0 0 0 4px rgba(37, 99, 235, 0.2);
}

.pricing-card.featured:hover {
    box-shadow: var(--shadow-xl), 0 0 0 6px rgba(37, 99, 235, 0.25);
}

.pricing-card.featured .plan-name,
.pricing-card.featured .price-large,
.pricing-card.featured .price-cents,
.pricing-card.featured .currency {
    color: white;
}

.pricing-card.featured .price-period {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-card.featured .price-monthly {
    color: #A5F3FC;
}

.pricing-card.featured .features-list li {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.pricing-card.featured .features-list li svg {
    stroke: #A5F3FC;
}

.pricing-card.featured .btn-primary {
    background: white;
    color: var(--color-primary);
}

.pricing-card.featured .btn-primary:hover {
    background: #F8FAFC;
    transform: translateY(-2px);
}

.pricing-card.featured p {
    color: rgba(255, 255, 255, 0.7);
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 16px;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-secondary);
    align-self: flex-start;
    margin-top: 8px;
}

.popular-tag {
    background: var(--color-primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.price-large {
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-secondary);
    line-height: 1;
}

.price-cents {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.price-period {
    color: var(--color-text-light);
    font-size: 1rem;
    margin-top: 8px;
}

.price-monthly {
    font-size: 0.85rem;
    color: var(--color-accent-green);
    font-weight: 600;
}

.features-list {
    margin: 24px 0;
    text-align: left;
}

.features-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.features-list li:last-child {
    border-bottom: none;
}

/* ============================================
   CTA & FOOTER
============================================ */
.cta-section {
    background: var(--color-primary);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.cta-section p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer {
    background: var(--color-secondary);
    color: #94A3B8;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
}

.footer h4 {
    color: white;
    margin-bottom: 20px;
}

.footer a {
    display: block;
    margin-bottom: 10px;
}

.footer a:hover {
    color: white;
}

/* ============================================
   ANIMATIONS
============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hero buttons wrapper responsive */
.hero-btns-wrapper {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (min-width: 992px) {
    .hero-btns-wrapper {
        justify-content: flex-start;
    }
}

/* ============================================
   MOBILE RESPONSIVE
============================================ */

/* Tablet */
@media (max-width: 992px) {
    .steps-container {
        flex-direction: column;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .container {
        width: 95%;
        padding: 0 16px;
    }

    /* Header Mobile */
    .header {
        padding: 12px 12px;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        flex-direction: column;
        padding: 32px;
        gap: 24px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu a {
        font-size: 1.25rem;
    }

    .menu-toggle {
        display: flex;
    }

    .header .btn {
        display: none;
    }

    /* Hero Mobile */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.25rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
    }

    .social-proof {
        flex-direction: column;
        gap: 12px;
    }

    /* Bento Grid Mobile */
    .bento-section {
        padding: 60px 0;
    }

    .bento-grid {
        gap: 16px;
    }

    .card {
        padding: 24px;
    }

    .card-title {
        font-size: 1.25rem;
    }

    /* Steps Mobile */
    .steps-section {
        padding: 60px 0;
    }

    .step-icon {
        width: 64px;
        height: 64px;
    }

    .step-title {
        font-size: 1.1rem;
    }

    /* Pricing Mobile */
    .pricing-section {
        padding: 60px 0;
    }

    .pricing-card {
        padding: 24px;
    }

    .price-display {
        font-size: 2.5rem;
    }

    /* CTA Mobile */
    .cta-section {
        padding: 60px 0;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    /* Footer Mobile */
    .footer {
        padding: 40px 0 24px;
    }

    .footer-grid {
        gap: 24px;
    }

    /* Section titles */
    .section-title {
        font-size: 2rem;
    }

    .section-desc {
        font-size: 1rem;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-btns-wrapper {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns-wrapper .btn {
        width: 100%;
    }

    .card {
        padding: 20px;
    }

    .pricing-card {
        padding: 20px;
    }

    .price-display {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}