/* ========================================
   LPMAX - Landing Page Premium
   Design System & Styles
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
    --primary: #0D9B5C;
    --primary-light: #2EBD78;
    --primary-dark: #087A45;
    --accent: #D4A520;
    --accent-dark: #B8901A;
    --bg-dark: #040F0B;
    --bg-card: #081C12;
    --bg-card-hover: #0F2A1A;
    --surface: #0A2217;
    --text: #E8F0EC;
    --text-muted: #9CAFA3;
    --text-heading: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #0D9B5C 0%, #D4A520 100%);
    --gradient-hero: linear-gradient(160deg, #040F0B 0%, #081E12 40%, #040F0B 100%);
    --gradient-card: linear-gradient(145deg, rgba(13, 155, 92, 0.08) 0%, rgba(212, 165, 32, 0.05) 100%);
    --shadow-glow: 0 0 40px rgba(13, 155, 92, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

html {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-dark);
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-heading);
    line-height: 1.2;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Utility --- */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: rgba(13, 155, 92, 0.15);
    color: var(--primary-light);
    border: 1px solid rgba(13, 155, 92, 0.25);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 24px rgba(13, 155, 92, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 36px rgba(13, 155, 92, 0.55);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: 0.5s;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
    background: #20BD5A;
    transform: translateY(-3px);
    box-shadow: 0 8px 36px rgba(37, 211, 102, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid rgba(13, 155, 92, 0.5);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(13, 155, 92, 0.1);
    transform: translateY(-2px);
}

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 64px;
    height: 64px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.12);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

@keyframes pulse-whatsapp {

    0%,
    100% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 6px 40px rgba(37, 211, 102, 0.8);
    }
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    top: 0;
    background: rgba(4, 15, 11, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(13, 155, 92, 0.15);
    padding: 10px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text-heading);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.5px !important;
    color: #fff !important;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
}

.mobile-toggle span {
    width: 26px;
    height: 2.5px;
    background: var(--text);
    border-radius: 4px;
    transition: var(--transition);
}

/* --- Logo (substitua a imagem pelo seu SVG) --- */
.logo {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 900;
    font-size: 1.6rem;
    letter-spacing: -0.5px;
    user-select: none;
}

/* SUBSTITUA: Imagem do logo — tamanho recomendado: 36x36px (SVG preferível) */
.logo-img {
    width: 36px;
    height: 36px;
    margin-right: 8px;
    object-fit: contain;
}

.logo-lp {
    color: var(--text-heading);
}

.logo-max {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-hero);
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 155, 92, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: float-orb 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 165, 32, 0.1) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: float-orb 10s ease-in-out infinite reverse;
}

@keyframes float-orb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -40px) scale(1.1);
    }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-content .badge {
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    min-height: 2.4em;
}

/* --- Typed cursor --- */
.typed-wrapper {
    display: inline;
    position: relative;
}

.typed-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background: var(--accent);
    margin-left: 2px;
    vertical-align: text-bottom;
    animation: blink-cursor 0.75s step-end infinite;
}

@keyframes blink-cursor {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 800;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-visual {
    position: relative;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-mockup {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid rgba(13, 155, 92, 0.2);
    box-shadow: var(--shadow-glow), var(--shadow-card);
    position: relative;
    overflow: hidden;
    background: var(--bg-card);
    aspect-ratio: 16/10;
}

.mockup-header {
    display: flex;
    gap: 6px;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-dot:nth-child(1) {
    background: #FF5F57;
}

.mockup-dot:nth-child(2) {
    background: #FFBD2E;
}

.mockup-dot:nth-child(3) {
    background: #28CA42;
}

.mockup-body {
    padding: 0;
    position: relative;
    height: calc(100% - 38px);
    overflow: hidden;
}

/* --- Animated Mockup Scene --- */
.mockup-scene {
    padding: 14px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: opacity 0.5s ease;
}

.mockup-scene.fade-out {
    opacity: 0;
}

.mockup-scene.fade-in {
    opacity: 1;
}

/* Wireframe elements */
.wf-el {
    border-radius: 4px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.wf-el.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Wireframe types */
.wf-navbar {
    height: 16px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    border-radius: 3px;
}

.wf-logo {
    height: 14px;
    border-radius: 3px;
    padding: 0;
    display: flex;
    align-items: center;
    font-size: 7px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
    white-space: nowrap;
    font-family: 'Space Grotesk', sans-serif;
}

.wf-hero-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
}

.wf-title {
    height: 14px;
    width: 75%;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 3px;
}

.wf-subtitle {
    height: 8px;
    width: 60%;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
}

.wf-text-line {
    height: 5px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 2px;
}

.wf-cta {
    height: 26px;
    width: 55%;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    font-family: 'Space Grotesk', sans-serif;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    margin-top: 4px;
}

.wf-cta.clicked {
    transform: scale(0.92);
    box-shadow: 0 0 20px rgba(13, 155, 92, 0.6);
}

.wf-cards-row {
    display: flex;
    gap: 6px;
    width: 100%;
}

.wf-card {
    flex: 1;
    height: 34px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
}

.wf-img-placeholder {
    height: 30px;
    background: rgba(13, 155, 92, 0.08);
    border-radius: 4px;
    border: 1px dashed rgba(13, 155, 92, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7px;
    color: rgba(255, 255, 255, 0.25);
    font-family: 'Inter', sans-serif;
}

.wf-footer {
    height: 8px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 2px;
    margin-top: auto;
}

/* --- Mockup Cursor --- */
.mockup-cursor {
    position: absolute;
    top: 50%;
    left: 30%;
    z-index: 10;
    pointer-events: none;
    transition: top 0.8s cubic-bezier(0.4, 0, 0.2, 1), left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.mockup-cursor.click::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(13, 155, 92, 0.4);
    animation: cursor-click 0.4s ease-out forwards;
}

@keyframes cursor-click {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.floating-badge {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid rgba(13, 155, 92, 0.2);
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-card);
    animation: float 4s ease-in-out infinite;
}

.floating-badge.top-right {
    top: -20px;
    right: -20px;
}

.floating-badge.bottom-left {
    bottom: -20px;
    left: -20px;
    animation-delay: 1s;
}

.floating-badge .icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.floating-badge .icon.green {
    background: rgba(212, 165, 32, 0.15);
}

.floating-badge .icon.purple {
    background: rgba(13, 155, 92, 0.15);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Section Styling --- */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header .badge {
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* --- Benefits --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    background: var(--gradient-card);
    border: 1px solid rgba(13, 155, 92, 0.1);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-6px);
    border-color: rgba(13, 155, 92, 0.3);
    box-shadow: var(--shadow-glow);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(13, 155, 92, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* --- How it Works --- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 12%;
    width: 76%;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0.25;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    position: relative;
    z-index: 2;
}

.step-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
}

/* --- Portfolio --- */
.portfolio-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.portfolio-tab {
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    background: rgba(13, 155, 92, 0.08);
    border: 1px solid rgba(13, 155, 92, 0.15);
    color: var(--text-muted);
}

.portfolio-tab.active,
.portfolio-tab:hover {
    background: var(--gradient-primary);
    color: #fff;
    border-color: transparent;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.portfolio-card {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(13, 155, 92, 0.12);
    background: var(--bg-card);
    transition: var(--transition);
    cursor: pointer;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(13, 155, 92, 0.3);
}

.portfolio-thumb {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.portfolio-thumb .overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 155, 92, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-card:hover .overlay {
    opacity: 1;
}

.portfolio-thumb .overlay span {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 10px 24px;
    border: 2px solid #fff;
    border-radius: 50px;
}

.portfolio-info {
    padding: 20px;
}

.portfolio-info h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.portfolio-info span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* --- Pricing --- */
.pricing-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card {
    background: var(--gradient-card);
    border: 1px solid rgba(13, 155, 92, 0.12);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-card.featured {
    border-color: rgba(13, 155, 92, 0.4);
    background: linear-gradient(145deg, rgba(13, 155, 92, 0.15) 0%, rgba(212, 165, 32, 0.08) 100%);
}

.pricing-card.featured::before {
    content: 'MAIS POPULAR';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 20px;
    border-radius: 50px;
    letter-spacing: 1px;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

.pricing-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.pricing-card .desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 24px;
}

.pricing-value {
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 24px;
}

.pricing-value .currency {
    font-size: 1.2rem;
    font-weight: 600;
    vertical-align: super;
}

.pricing-value .amount {
    font-size: 3.5rem;
    font-weight: 900;
}

.pricing-value .period {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pricing-features {
    margin-bottom: 32px;
    text-align: left;
    flex: 1;
    width: 100%;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-features li .check {
    color: var(--accent);
    font-weight: 700;
}

/* --- Testimonials / Social Proof --- */
.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.proof-card {
    background: var(--gradient-card);
    border: 1px solid rgba(13, 155, 92, 0.1);
    border-radius: var(--radius);
    padding: 32px 24px;
    transition: var(--transition);
}

.proof-card:hover {
    border-color: rgba(13, 155, 92, 0.3);
}

.proof-stars {
    color: #F59E0B;
    font-size: 0.9rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.proof-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-style: italic;
}

.proof-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.proof-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
}

.proof-name {
    font-weight: 600;
    font-size: 0.88rem;
}

.proof-role {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* --- FAQ --- */
.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(13, 155, 92, 0.1);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--gradient-card);
    transition: var(--transition);
}

.faq-item.active {
    border-color: rgba(13, 155, 92, 0.3);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-light);
}

.faq-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(13, 155, 92, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
    font-size: 0.9rem;
    color: var(--primary-light);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--primary);
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- CTA Final --- */
.cta-section {
    background: linear-gradient(145deg, rgba(13, 155, 92, 0.12) 0%, rgba(212, 165, 32, 0.06) 100%);
    border-top: 1px solid rgba(13, 155, 92, 0.12);
    border-bottom: 1px solid rgba(13, 155, 92, 0.12);
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 16px;
}

.cta-section p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 32px;
    font-size: 1.05rem;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Footer --- */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-top: 16px;
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    font-size: 0.88rem;
    padding: 4px 0;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--primary-light);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom .handmade {
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.6;
}

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Urgency Bar (fixed top, pushes navbar below) --- */
.urgency-bar {
    background: var(--gradient-primary);
    text-align: center;
    padding: 10px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1002;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.urgency-bar span {
    font-weight: 800;
}

/* --- Custom Marquee --- */
.brands-marquee {
    overflow: hidden;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.marquee-track {
    display: flex;
    gap: 60px;
    animation: marquee 25s linear infinite;
    width: max-content;
}

.marquee-item {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.12);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 3px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        max-width: 550px;
        margin: 0 auto;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid::before {
        display: none;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(4, 15, 11, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
        z-index: 999;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

    .mobile-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .pricing-wrapper {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-6px);
    }

    .proof-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .hero {
        padding: 100px 0 60px;
    }
}

/* ========================================
   SECTION BACKGROUND IMAGES
   SUBSTITUA: Troque as imagens na pasta img/
   por fotos reais do seu negócio.
   Tamanho recomendado: 1920x1080px (JPG/WebP)
   ======================================== */

/* --- Utility: section with bg image --- */
.section-bg {
    position: relative;
    z-index: 1;
}

.section-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.07;
    z-index: -1;
    pointer-events: none;
}

/* Hero background image */
.hero {
    background: var(--gradient-hero);
}

.hero .hero-bg-img {
    position: absolute;
    inset: 0;
    background: url('img/hero-bg.png') center/cover no-repeat;
    opacity: 0.02;
    z-index: 0;
    pointer-events: none;
}

/* Benefits section */
.section-bg--benefits::after {
    background-image: url('img/benefits-bg.png');
    opacity: 0.015;
}

/* Nichos / "Pare e Pense" section */
.section-bg--nichos::after {
    background-image: url('img/nichos-bg.png');
    opacity: 0.02;
}

/* CTA section */
.section-bg--cta::after {
    background-image: url('img/cta-bg.png');
    opacity: 0.025;
}