/* ============================================
   GOOGLE FONTS - INTER + OLD STANDARD TT
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Old+Standard+TT:wght@400;700&display=swap');

/* ============================================
   iOS SAFARI FIXES
   ============================================ */
@supports (-webkit-touch-callout: none) {
    /* iOS specific fixes */
    * {
        -webkit-tap-highlight-color: transparent;
    }
}

/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Dark Mode Colors - Green Neon Palette */
    --bg-primary: #0a0f0a;
    --bg-secondary: #0f150f;
    --bg-tertiary: #141a14;
    --bg-card: rgba(37, 211, 102, 0.05);
    --bg-card-hover: rgba(37, 211, 102, 0.1);
    --bg-glass: rgba(37, 211, 102, 0.08);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a0b0a0;
    --text-tertiary: #6b7a6b;
    
    /* Accent Colors - Green Neon */
    --accent-primary: #25D366;
    --accent-primary-dark: #1EB954;
    --accent-secondary: #39ff14;
    --accent-whatsapp: #25D366;
    --accent-whatsapp-hover: #39ff14;
    --accent-success: #25D366;
    --accent-neon: #39ff14;
    --accent-dark-green: #0d4d1a;
    
    /* Gradients - Green */
    --gradient-1: linear-gradient(135deg, #25D366 0%, #1EB954 100%);
    --gradient-2: linear-gradient(135deg, #39ff14 0%, #25D366 100%);
    --gradient-3: linear-gradient(135deg, #0d4d1a 0%, #25D366 100%);
    --gradient-hero: linear-gradient(135deg, #0d4d1a 0%, #25D366 50%, #39ff14 100%);
    --gradient-text: linear-gradient(135deg, #39ff14 0%, #25D366 100%);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Old Standard TT', serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Spacing - Reduced */
    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border Radius - Less rounded */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(37, 211, 102, 0.3);
    --shadow-whatsapp: 0 0 30px rgba(37, 211, 102, 0.4);
    --shadow-neon: 0 0 40px rgba(57, 255, 20, 0.5);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============================================
   SCROLLBAR ESTILIZADA
   ============================================ */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
    border-left: 1px solid rgba(37, 211, 102, 0.1);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-1);
    border-radius: var(--radius-full);
    border: 2px solid var(--bg-primary);
    transition: all var(--transition-base);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-2);
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-primary) var(--bg-primary);
}

html {
    scroll-behavior: smooth;
    height: auto;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: 1.5;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    background: var(--bg-primary);
    background-image: 
        radial-gradient(at 0% 0%, rgba(37, 211, 102, 0.08) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(57, 255, 20, 0.08) 0px, transparent 50%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-y: auto;
    height: auto;
    min-height: 100%;
    position: relative;
    max-width: 100vw;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: auto;
}

@media (min-width: 769px) {
    body {
        cursor: none; /* Cursor customizado apenas desktop */
    }
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}



/* ============================================
   LOGO (ACIMA DO H1)
   ============================================ */
.hero-logo {
    width: 240px;
    max-width: 100%;
    height: auto;
    margin: 0 auto 32px;
    filter: brightness(1.1);
    -webkit-filter: brightness(1.1);
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards;
    -webkit-animation: fadeInDown 0.8s ease forwards;
    display: block;
    object-fit: contain;
}

/* ============================================
   HERO SECTION - DARK MODE COM TEXTURA
   ============================================ */
.hero {
    background: var(--bg-primary);
    color: white;
    padding: var(--spacing-3xl) 0 var(--spacing-3xl);
    padding-top: 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(37, 211, 102, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(57, 255, 20, 0.08) 0%, transparent 50%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(37, 211, 102, 0.03) 2px,
            rgba(37, 211, 102, 0.03) 4px
        );
    pointer-events: none;
    opacity: 0.6;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(37,211,102,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    pointer-events: none;
    opacity: 0.4;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

.hero-title {
    font-size: var(--font-size-4xl);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
    letter-spacing: -0.03em;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-primary);
}

.hero-title .highlight {
    font-family: "Old Standard TT", serif;
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 240, 1);
}

span.highlight {
    font-family: "Old Standard TT", serif;
    font-weight: 300;
    color: rgba(255, 255, 240, 1);
}

.hero-subtitle {
    font-size: 17px;
    margin-bottom: 48px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.4s forwards;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.hero-benefits {
    list-style: none;
    margin: var(--spacing-xl) 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.hero-benefits li {
    padding: var(--spacing-md);
    padding-left: calc(var(--spacing-xl) + 30px);
    position: relative;
    font-size: var(--font-size-lg);
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInLeft 0.6s ease forwards;
    line-height: 1.4;
    letter-spacing: -0.01em;
    background: rgba(37, 211, 102, 0.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--accent-neon);
    -webkit-transition: all var(--transition-base);
    transition: all var(--transition-base);
}

.hero-benefits li:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(57, 255, 20, 0.4);
    transform: translateX(5px);
}

.hero-benefits li:nth-child(1) { animation-delay: 0.6s; }
.hero-benefits li:nth-child(2) { animation-delay: 0.7s; }
.hero-benefits li:nth-child(3) { animation-delay: 0.8s; }

.hero-benefits li::before {
    content: '';
    position: absolute;
    left: var(--spacing-md);
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: var(--accent-neon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

.hero-benefits li::after {
    content: '✓';
    position: absolute;
    left: var(--spacing-md);
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-weight: bold;
    font-size: 14px;
    line-height: 1;
    z-index: 1;
}

.hero-social-proof {
    margin: var(--spacing-lg) 0;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.7s forwards;
}

.online-counter {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-md);
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    color: var(--accent-success);
    font-weight: 500;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-success);
    border-radius: 50%;
    display: inline-block;
    -webkit-animation: pulse-dot 2s infinite;
    animation: pulse-dot 2s infinite;
}

@-webkit-keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.cta-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    width: 100%;
    background: var(--accent-whatsapp);
    color: white;
    padding: var(--spacing-md) var(--spacing-2xl);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: var(--font-size-lg);
    margin-top: 0px;
    box-shadow: var(--shadow-whatsapp);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.9s forwards;
    font-family: var(--font-primary);
    letter-spacing: -0.01em;
    border: 1px solid transparent;
    text-align: center;
}

.cta-arrow {
    transition: transform var(--transition-base);
    font-size: 1.2em;
}

.cta-main:hover .cta-arrow {
    transform: translateX(5px);
}

.cta-main:active {
    transform: scale(0.98);
}

.cta-main::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-main:hover::before {
    width: 400px;
    height: 400px;
}

.cta-main:hover {
    background: var(--accent-whatsapp-hover);
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-neon);
    border-color: var(--accent-neon);
}

/* ============================================
   SECTION DIVIDER - LINHA CHIQUE
   ============================================ */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 211, 102, 0.5), transparent);
    margin: 0;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: var(--accent-neon);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-neon);
}

/* ============================================
   AUTHORITY SECTION - GLASSMORPHISM
   ============================================ */
.authority {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-primary);
    position: relative;
}

.authority-numbers {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.number-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    padding: var(--spacing-lg);
    background: var(--bg-card);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: var(--radius-lg);
    -webkit-transition: all var(--transition-base);
    transition: all var(--transition-base);
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.number-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(57, 255, 20, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.number-item.animate {
    animation: fadeInUp 0.6s ease forwards;
}

.number-item:nth-child(1).animate { animation-delay: 0.1s; }
.number-item:nth-child(2).animate { animation-delay: 0.2s; }
.number-item:nth-child(3).animate { animation-delay: 0.3s; }

.number-item:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    border-color: rgba(57, 255, 20, 0.5);
    box-shadow: var(--shadow-glow);
}

.number {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
    line-height: 1;
}

.label {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

.portfolio-link {
    text-align: center;
    margin-top: var(--spacing-xl);
}

.portfolio-link a {
    color: var(--accent-primary);
    font-weight: 600;
    font-size: var(--font-size-base);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    position: relative;
    font-family: var(--font-primary);
    border: 1px solid rgba(37, 211, 102, 0.3);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-sm);
    background: transparent;
    transition: all var(--transition-base);
}

.portfolio-link a::after {
    content: '→';
    transition: transform var(--transition-base);
    margin-left: var(--spacing-xs);
}

.portfolio-link a:hover {
    border-color: var(--accent-neon);
    color: var(--accent-neon);
    background: rgba(57, 255, 20, 0.05);
    transform: translateX(5px);
}

.portfolio-link a:hover::after {
    transform: translateX(5px);
}

/* ============================================
   TESTIMONIALS - COM FOTOS
   ============================================ */
.testimonials {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-primary);
    position: relative;
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 500;
    text-align: center;
    margin-bottom: 12px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    font-family: var(--font-primary);
}

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

.section-title.animate {
    animation: fadeInUp 0.8s ease forwards;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

.testimonial-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(57, 255, 20, 0.05), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.testimonial-card.animate {
    animation: fadeInUp 0.6s ease forwards;
}

.testimonial-card:nth-child(1).animate { animation-delay: 0.1s; }
.testimonial-card:nth-child(2).animate { animation-delay: 0.2s; }
.testimonial-card:nth-child(3).animate { animation-delay: 0.3s; }

.testimonial-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    border-color: rgba(57, 255, 20, 0.4);
    box-shadow: var(--shadow-lg);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(37, 211, 102, 0.3);
}

.testimonial-author-info {
    flex: 1;
}

.testimonial-author-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: var(--font-size-base);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.stars {
    color: #fbbf24;
    font-size: var(--font-size-sm);
    margin-top: 2px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: var(--font-size-base);
    line-height: 1.6;
    margin-bottom: 0;
    color: var(--text-secondary);
    font-style: italic;
    letter-spacing: -0.01em;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-primary);
    position: relative;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
    padding: var(--spacing-md) 0;
}

.step {
    text-align: center;
    position: sticky;
    top: var(--spacing-lg);
    z-index: 1;
    padding: var(--spacing-lg);
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

.step.animate {
    animation: fadeInUp 0.6s ease forwards;
}

.step:nth-child(1) {
    z-index: 1;
    transform: scale(0.95);
    opacity: 0.8;
}

.step:nth-child(2) {
    z-index: 2;
    transform: scale(0.98);
    opacity: 0.9;
}

.step:nth-child(3) {
    z-index: 3;
    transform: scale(1);
    opacity: 1;
}

.step:nth-child(1).animate { animation-delay: 0.1s; }
.step:nth-child(2).animate { animation-delay: 0.2s; }
.step:nth-child(3).animate { animation-delay: 0.3s; }

.step:hover {
    background: var(--bg-card-hover);
    border-color: rgba(57, 255, 20, 0.4);
    box-shadow: var(--shadow-glow);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin: 0 auto var(--spacing-md);
    box-shadow: var(--shadow-glow);
    position: relative;
    border: 2px solid rgba(57, 255, 20, 0.3);
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: var(--gradient-1);
    opacity: 0.3;
    filter: blur(10px);
    z-index: -1;
}

.step-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
    letter-spacing: -0.01em;
}

/* ============================================
   PRICING SECTION - PREMIUM CARDS
   ============================================ */
.pricing {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-primary);
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-3xl);
}

.pricing-card {
    background: var(--bg-card);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    position: relative;
    -webkit-transition: all var(--transition-base);
    transition: all var(--transition-base);
    opacity: 0;
    -webkit-transform: translateY(30px) scale(0.95);
    transform: translateY(30px) scale(0.95);
    overflow: hidden;
    text-align: center;
    box-sizing: border-box;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(57, 255, 20, 0.05), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
    pointer-events: none;
    z-index: 0;
}

.pricing-card.animate {
    animation: fadeInUp 0.6s ease forwards;
}

.pricing-card:nth-child(1).animate { animation-delay: 0.1s; }
.pricing-card:nth-child(2).animate { animation-delay: 0.2s; }

.pricing-card:hover {
    background: var(--bg-card-hover);
    -webkit-transform: translateY(-10px) scale(1.02);
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(57, 255, 20, 0.5);
    box-shadow: var(--shadow-xl);
}

.pricing-featured {
    border: 2px solid var(--accent-primary);
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(57, 255, 20, 0.05) 100%);
    position: relative;
    padding-top: 56px;
    padding-bottom: 24px;
}

.pricing-featured::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-xl);
    background: var(--gradient-1);
    opacity: 0.3;
    filter: blur(20px);
    z-index: -1;
}

.badge-popular {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--gradient-1);
    color: white;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    font-size: var(--font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    z-index: 2;
}

.badge-choice {
    position: absolute;
    top: 34px;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(37, 211, 102, 0.15);
    color: var(--accent-success);
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-align: center;
    z-index: 1;
    border-bottom: 1px solid rgba(37, 211, 102, 0.2);
}
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: none;
    font-family: var(--font-primary);
    z-index: 10;
    text-align: center;
}

.badge-urgency {
    position: relative;
    display: inline-block;
    margin: var(--spacing-sm) auto;
    background: rgba(255, 68, 0, 0.9);
    color: white;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 0 20px rgba(255, 68, 0, 0.5);
    font-family: var(--font-primary);
    text-align: center;
    -webkit-animation: pulse-urgency 2s infinite;
    animation: pulse-urgency 2s infinite;
    width: auto;
    max-width: 100%;
    left: 0;
    right: 0;
    -webkit-transform: none;
    transform: none;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.pricing-featured .badge-urgency {
    top: 70px;
}

@keyframes pulse-urgency {
    0%, 100% {
        opacity: 1;
        -webkit-transform: translateX(-50%) scale(1);
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 0.9;
        -webkit-transform: translateX(-50%) scale(1.05);
        transform: translateX(-50%) scale(1.05);
    }
}

@-webkit-keyframes pulse-urgency {
    0%, 100% {
        opacity: 1;
        -webkit-transform: translateX(-50%) scale(1);
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 0.9;
        -webkit-transform: translateX(-50%) scale(1.05);
        transform: translateX(-50%) scale(1.05);
    }
}

.pricing-urgency-text {
    text-align: center;
    color: rgba(255, 68, 0, 1);
    font-weight: 600;
    font-size: var(--font-size-sm);
    margin: var(--spacing-sm) 0 var(--spacing-md);
    padding: 0;
    max-width: 100%;
    -webkit-animation: pulse-urgency 2s infinite;
    animation: pulse-urgency 2s infinite;
    position: relative;
    left: 0;
    -webkit-transform: none;
    transform: none;
    line-height: 1.4;
}

.pricing-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: 0px;
    margin-top: var(--spacing-md);
    color: var(--text-primary);
    text-align: center;
    letter-spacing: -0.03em;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.pricing-title br {
    height: 12px;
}

.pricing-subtitle {
    font-size: var(--font-size-base);
    font-weight: 400;
    color: var(--text-secondary);
}

.pricing-price {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 24px;
    font-size: 22px;
}

.price-parcelas {
    font-size: 22px;
}

.price-main {
    display: block;
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-xs);
    letter-spacing: -0.03em;
    line-height: 1;
}

.price-or {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--text-tertiary);
    margin: var(--spacing-sm) 0;
}

.price-vista {
    display: block;
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-primary);
}

.pricing-prazo {
    text-align: center;
    color: var(--accent-success);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-base);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    line-height: 1.3;
}

.pricing-description {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 20px;
    letter-spacing: -0.01em;
}

.pricing-featured .pricing-description {
    font-size: 15px;
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.pricing-features li {
    padding: var(--spacing-xs) 0;
    padding-left: var(--spacing-lg);
    position: relative;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    line-height: 1.5;
    letter-spacing: -0.01em;
    list-style: none;
}

.pricing-features li::marker {
    display: none;
    content: '';
}

.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 18px;
    height: 18px;
    background: var(--accent-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-features li::after {
    content: '✓';
    position: absolute;
    left: 0;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 11px;
    font-weight: bold;
}

.cta-pricing {
    display: block;
    width: 100%;
    background: var(--accent-whatsapp);
    color: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: var(--font-size-base);
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-whatsapp);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    letter-spacing: -0.01em;
    z-index: 10;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    text-decoration: none;
}

.cta-pricing::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    pointer-events: none;
    z-index: -1;
}

.cta-pricing:hover::before {
    width: 400px;
    height: 400px;
}

.cta-pricing:hover {
    background: var(--accent-whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-neon);
    border-color: var(--accent-neon);
}

.slots-progress {
    margin: var(--spacing-lg) auto var(--spacing-md);
    max-width: 600px;
    padding: 0 var(--spacing-md);
}

.slots-progress-text {
    text-align: center;
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-base);
    color: var(--text-secondary);
}

.slots-remaining strong {
    color: rgba(255, 68, 0, 1);
    font-weight: 700;
    font-size: 1.1em;
}

.slots-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 68, 0, 0.1);
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
}

.slots-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 68, 0, 0.8), rgba(255, 68, 0, 0.6));
    border-radius: var(--radius-sm);
    width: 70%;
    -webkit-animation: progressPulse 2s infinite;
    animation: progressPulse 2s infinite;
    transition: width 0.5s ease;
}

@-webkit-keyframes progressPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes progressPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.pricing-urgency-delicate {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    margin: var(--spacing-lg) auto var(--spacing-xl);
    background: rgba(255, 68, 0, 0.08);
    border: 1px solid rgba(255, 68, 0, 0.25);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    color: rgba(255, 68, 0, 1);
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
    max-width: 500px;
    box-sizing: border-box;
}

.pricing-urgency-delicate svg {
    flex-shrink: 0;
    stroke: rgba(255, 68, 0, 0.9);
    width: 18px;
    height: 18px;
}

.pricing-urgency-delicate span {
    white-space: nowrap;
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs);
    margin-top: var(--spacing-md);
    margin-bottom: 0;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
    color: var(--accent-success);
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
}

.pricing-guarantee span {
    white-space: nowrap;
    flex-shrink: 0;
}

.pricing-other-services {
    margin-top: var(--spacing-3xl);
    padding: var(--spacing-xl);
    background: var(--bg-card);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.other-services-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.other-services-text {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.01em;
}

.other-services-text strong {
    color: var(--accent-primary);
    font-weight: 600;
}

.other-services-cta {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-xl);
    background: transparent;
    color: var(--accent-primary);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: var(--font-size-base);
    -webkit-transition: all var(--transition-base);
    transition: all var(--transition-base);
    letter-spacing: -0.01em;
}

.other-services-cta:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: var(--accent-neon);
    color: var(--accent-neon);
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
}

.pricing-guarantee svg {
    flex-shrink: 0;
    stroke: var(--accent-success);
}

/* ============================================
   INCLUDES SECTION
   ============================================ */
.includes {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-primary);
    position: relative;
}

.includes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

.include-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateX(-20px);
    position: relative;
}

.include-item.animate {
    animation: fadeInLeft 0.5s ease forwards;
}

.include-item:nth-child(1).animate { animation-delay: 0.05s; }
.include-item:nth-child(2).animate { animation-delay: 0.1s; }
.include-item:nth-child(3).animate { animation-delay: 0.15s; }
.include-item:nth-child(4).animate { animation-delay: 0.2s; }
.include-item:nth-child(5).animate { animation-delay: 0.25s; }
.include-item:nth-child(6).animate { animation-delay: 0.3s; }
.include-item:nth-child(7).animate { animation-delay: 0.35s; }
.include-item:nth-child(8).animate { animation-delay: 0.4s; }

.include-item:hover {
    background: var(--bg-card-hover);
    transform: translateX(5px);
    border-color: rgba(57, 255, 20, 0.3);
}

.check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--accent-success);
    stroke-width: 3;
}

.include-item span {
    color: var(--text-primary);
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-primary);
    position: relative;
}

.faq-list {
    max-width: 900px;
    margin: var(--spacing-3xl) auto 0;
}

.faq-item {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(20px);
}

.faq-item.animate {
    animation: fadeInUp 0.4s ease forwards;
}

.faq-item:nth-child(1).animate { animation-delay: 0.05s; }
.faq-item:nth-child(2).animate { animation-delay: 0.1s; }
.faq-item:nth-child(3).animate { animation-delay: 0.15s; }
.faq-item:nth-child(4).animate { animation-delay: 0.2s; }
.faq-item:nth-child(5).animate { animation-delay: 0.25s; }
.faq-item:nth-child(6).animate { animation-delay: 0.3s; }
.faq-item:nth-child(7).animate { animation-delay: 0.35s; }

.faq-item:hover {
    border-color: rgba(57, 255, 20, 0.3);
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 16px;
    font-weight: 500;
    font-size: 16px;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: color var(--transition-base);
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.faq-question:hover {
    color: var(--accent-neon);
}

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

.faq-question::after {
    content: '+';
    font-size: var(--font-size-2xl);
    color: var(--accent-primary);
    font-weight: 300;
    transition: transform var(--transition-base);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
    color: var(--accent-neon);
}

.faq-answer {
    padding: 0 16px 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    letter-spacing: -0.01em;
}

.faq-answer p {
    margin-bottom: var(--spacing-sm);
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ============================================
   CTA FINAL SECTION - BLOCO CONTRASTANTE
   ============================================ */
.cta-final {
    padding: 36px 0;
    background: var(--gradient-hero);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    color: #000000;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: var(--spacing-3xl) var(--spacing-md);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(57, 255, 20, 0.3);
    box-shadow: var(--shadow-xl);
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(57, 255, 20, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-final-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: #000000;
}

.cta-final-subtitle {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-sm);
    color: #1a1a1a;
    line-height: 24px;
    letter-spacing: -0.01em;
}

.cta-final-text {
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-md);
    color: #2a2a2a;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

.social-proof-counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background: rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.counter-number {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: #000000;
    line-height: 1;
    letter-spacing: -0.03em;
}

.counter-text {
    font-size: var(--font-size-sm);
    color: #1a1a1a;
    font-weight: 500;
}

.cta-final-extra {
    font-size: var(--font-size-sm);
    color: #1a1a1a;
    margin-top: var(--spacing-lg);
    font-style: italic;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.5;
    border-color: rgba(0, 0, 0, 0);
    border-image: none;
}

.cta-final-btn {
    margin-bottom: 0px;
    background: #000000 !important;
    color: #ffffff !important;
    border: 2px solid #000000 !important;
}

.cta-final-btn:hover {
    background: #1a1a1a !important;
    border-color: #1a1a1a !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

.portfolio-cta {
    margin-top: var(--spacing-lg);
    font-size: 15px;
}

.portfolio-cta a {
    color: #000000;
    font-weight: 600;
    text-decoration: underline;
    opacity: 0.9;
    transition: opacity var(--transition-base);
    font-family: var(--font-primary);
}

.portfolio-cta a:hover {
    opacity: 1;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: var(--spacing-xl) 0;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    text-align: center;
    font-size: var(--font-size-sm);
    border-top: 1px solid rgba(37, 211, 102, 0.1);
    line-height: 1.5;
    letter-spacing: -0.01em;
}

.footer p {
    margin-bottom: var(--spacing-xs);
}

.footer a {
    color: var(--accent-primary);
    text-decoration: underline;
    transition: color var(--transition-base);
}

.footer a:hover {
    color: var(--accent-neon);
}

/* ============================================
   STICKY WHATSAPP BUTTON (MOBILE)
   ============================================ */
.whatsapp-sticky {
    position: fixed !important;
    bottom: var(--spacing-lg) !important;
    right: var(--spacing-lg) !important;
    width: 64px !important;
    height: 64px !important;
    background: var(--accent-whatsapp) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: var(--shadow-whatsapp) !important;
    z-index: 99999 !important;
    transition: all var(--transition-base);
    -webkit-animation: pulse 2s infinite;
    animation: pulse 2s infinite;
    border: 2px solid rgba(57, 255, 20, 0.3) !important;
    visibility: visible !important;
    opacity: 1 !important;
    -webkit-transform: translateZ(0) !important;
    transform: translateZ(0) !important;
    -webkit-backface-visibility: hidden !important;
    backface-visibility: hidden !important;
    will-change: transform;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    text-decoration: none;
}

.whatsapp-sticky:hover {
    background: var(--accent-whatsapp-hover);
    -webkit-transform: translateZ(0) scale(1.1);
    transform: translateZ(0) scale(1.1);
    box-shadow: var(--shadow-neon);
    border-color: var(--accent-neon);
}

.whatsapp-sticky svg {
    width: 32px;
    height: 32px;
    fill: white;
    pointer-events: none;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes fadeInUp {
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

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

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

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

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (min-width: 768px) {
    .container {
        padding: 0 var(--spacing-lg);
    }
    
    .hero-logo {
        width: 300px;
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    .hero-title {
        font-size: var(--font-size-5xl);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-2xl);
    }
    
    .authority-numbers {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .includes-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-2xl);
    }
    
    .about-wrapper {
        grid-template-columns: 300px 1fr;
        gap: var(--spacing-2xl);
        align-items: start;
    }
    
    .about-image {
        max-width: 100%;
        margin: 0;
    }
    
    .about-content {
        text-align: left;
    }
    
    .cta-main {
        width: auto;
        display: inline-block;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .includes-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
        padding: 0;
    }
    
    .include-item {
        position: relative;
        transform: scale(1);
        opacity: 1;
    }
    
    .portfolio-link a::after {
        content: '→';
    }
}

/* ============================================
   RESPONSIVE - DESKTOP
   ============================================ */

@media (min-width: 1024px) {
    .hero {
        padding: var(--spacing-3xl) 0 var(--spacing-3xl);
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .includes-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Efeito de empilhamento de cards no mobile - desktop não precisa */
    .pricing-grid {
        perspective: 1000px;
    }
    
    .pricing-card {
        transform-style: preserve-3d;
    }
}

/* ============================================
   MOBILE - EFEITO EMPILHAMENTO CARDS (APENAS PROCESS E INCLUDES)
   ============================================ */
@media (max-width: 767px) {
    .hero-subtitle {
        font-size: var(--font-size-base);
        line-height: 1.3;
    }
    
    .hero-benefits {
        margin: var(--spacing-md) 0;
    }
    
    .hero-benefits li {
        font-size: var(--font-size-base);
        padding: var(--spacing-sm);
        padding-left: 52px;
    }
    
    .process-steps {
        padding: var(--spacing-md) 0;
    }
    
    .includes-grid {
        padding: var(--spacing-md) 0;
    }
    
    .cta-floating {
        width: calc(100% - var(--spacing-md));
        max-width: none;
    }
}

/* ============================================
   PORTFOLIO SCROLL INFINITO (INLINE)
   ============================================ */
.portfolio-scroll-inline {
    margin: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
    padding: var(--spacing-md) 0;
}

.portfolio-scroll-inline::before,
.portfolio-scroll-inline::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.portfolio-scroll-inline::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary), transparent);
}

.portfolio-scroll-inline::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary), transparent);
}

/* ============================================
   PORTFOLIO SCROLL INFINITO (SEÇÃO COMPLETA)
   ============================================ */
.portfolio-scroll {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.portfolio-scroll::before,
.portfolio-scroll::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.portfolio-scroll::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary), transparent);
}

.portfolio-scroll::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary), transparent);
}

.portfolio-scroll-wrapper {
    display: flex;
    gap: var(--spacing-lg);
    animation: scrollInfinite 40s linear infinite;
    width: fit-content;
}

.portfolio-scroll-item {
    flex-shrink: 0;
    width: 300px;
    height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(37, 211, 102, 0.2);
    transition: all var(--transition-base);
}

.portfolio-scroll-item:hover {
    transform: scale(1.05);
    border-color: rgba(57, 255, 20, 0.5);
    box-shadow: var(--shadow-glow);
}

.portfolio-scroll-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-scroll-wrapper:hover {
    animation-play-state: paused;
}

@keyframes scrollInfinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   SEÇÃO SOBRE
   ============================================ */
.about {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-primary);
    position: relative;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    margin-top: var(--spacing-xl);
}

.about-image-wrapper {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}

.about-image-main {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid rgba(37, 211, 102, 0.3);
    padding: var(--spacing-sm);
    background: var(--bg-card);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.about-image-main::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-lg);
    background: var(--gradient-1);
    opacity: 0.2;
    filter: blur(20px);
    z-index: -1;
}

.about-image-main img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
}

.about-team-photo {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(37, 211, 102, 0.5);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
    z-index: 2;
    filter: blur(1.5px);
    opacity: 0.9;
    animation: float 3s ease-in-out infinite;
    transition: all var(--transition-base);
}

.about-team-photo:hover {
    filter: blur(0.5px);
    opacity: 1;
    transform: scale(1.1);
    z-index: 3;
}

.about-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-photo-1 {
    top: -20px;
    right: -10px;
    animation-delay: 0s;
}

.team-photo-2 {
    bottom: 20px;
    left: -15px;
    animation-delay: 1s;
    width: 70px;
    height: 70px;
}

.team-photo-3 {
    top: 50%;
    right: -20px;
    animation-delay: 2s;
    width: 65px;
    height: 65px;
    animation: float-vertical 3s ease-in-out infinite;
}

.team-photo-4 {
    bottom: -15px;
    right: 10px;
    animation-delay: 0.5s;
    width: 75px;
    height: 75px;
}

.team-photo-5 {
    top: 10px;
    left: -20px;
    animation-delay: 1.5s;
    width: 70px;
    height: 70px;
}

@keyframes float {
    0%, 100% {
        -webkit-transform: translateY(0) translateX(0);
        transform: translateY(0) translateX(0);
    }
    25% {
        -webkit-transform: translateY(-10px) translateX(5px);
        transform: translateY(-10px) translateX(5px);
    }
    50% {
        -webkit-transform: translateY(-5px) translateX(-3px);
        transform: translateY(-5px) translateX(-3px);
    }
    75% {
        -webkit-transform: translateY(-8px) translateX(3px);
        transform: translateY(-8px) translateX(3px);
    }
}

@-webkit-keyframes float {
    0%, 100% {
        -webkit-transform: translateY(0) translateX(0);
        transform: translateY(0) translateX(0);
    }
    25% {
        -webkit-transform: translateY(-10px) translateX(5px);
        transform: translateY(-10px) translateX(5px);
    }
    50% {
        -webkit-transform: translateY(-5px) translateX(-3px);
        transform: translateY(-5px) translateX(-3px);
    }
    75% {
        -webkit-transform: translateY(-8px) translateX(3px);
        transform: translateY(-8px) translateX(3px);
    }
}

@keyframes float-vertical {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
    }
    25% {
        transform: translateY(-60%) translateX(5px);
    }
    50% {
        transform: translateY(-45%) translateX(-3px);
    }
    75% {
        transform: translateY(-55%) translateX(3px);
    }
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .about-image-wrapper {
        max-width: 300px;
    }
    
    .about-team-photo {
        width: 60px;
        height: 60px;
    }
    
    .team-photo-1 {
        top: -15px;
        right: -5px;
    }
    
    .team-photo-2 {
        bottom: 15px;
        left: -10px;
        width: 55px;
        height: 55px;
    }
    
    .team-photo-3 {
        right: -15px;
        width: 50px;
        height: 50px;
    }
    
    .team-photo-4 {
        bottom: -10px;
        right: 5px;
        width: 55px;
        height: 55px;
    }
    
    .team-photo-5 {
        top: 5px;
        left: -15px;
        width: 55px;
        height: 55px;
    }
}

.about-content {
    text-align: center;
}

.about-text {
    font-size: var(--font-size-lg);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.about-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.about-instagram {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--accent-primary);
    font-weight: 600;
    font-size: var(--font-size-lg);
    margin-top: var(--spacing-lg);
    padding: var(--spacing-sm) var(--spacing-lg);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: var(--radius-sm);
    background: transparent;
    transition: all var(--transition-base);
}

.about-instagram:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(57, 255, 20, 0.5);
    transform: translateY(-2px);
}

.about-instagram svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

/* ============================================
   CTA FLUTUANTE
   ============================================ */
.cta-floating {
    position: fixed;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - var(--spacing-xl));
    max-width: 600px;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    pointer-events: none;
}

.cta-floating.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.cta-floating-btn {
    width: 100%;
    margin: 0;
    box-shadow: var(--shadow-xl);
    animation: pulse 2s infinite;
}

/* ============================================
   UTILITIES
   ============================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.star-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    opacity: 0.6;
    transition: opacity var(--transition-base);
}

.star-icon:hover {
    opacity: 1;
}

html { overflow-x: hidden; }
body { overflow-x: hidden; }

@supports (overflow: clip) {
  html, body { overflow-x: clip; }
}
