/* BotBrasil - Midnight Soft Design System */
/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Accessibility Focus States */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
    border-radius: 4px;
}

:root {
    /* Colors - Premium Tech Theme with Gradients */
    --bg-dark: #0B0F14;
    --bg-darker: #070A0E;
    --bg-surface: #141B22;
    --bg-surface-hover: #1C252E;
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);

    /* Primary Gradient Colors */
    --primary: #10B981;
    --primary-light: #34D399;
    --primary-dark: #059669;
    --primary-glow: rgba(16, 185, 129, 0.25);

    /* Accent Colors */
    --accent: #14B8A6;
    --accent-light: #2DD4BF;
    --accent-glow: rgba(20, 184, 166, 0.2);
    --accent-purple: #8B5CF6;
    --accent-blue: #3B82F6;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #10B981 0%, #14B8A6 50%, #0EA5E9 100%);
    --gradient-cta: linear-gradient(135deg, #059669 0%, #10B981 50%, #14B8A6 100%);
    --gradient-text: linear-gradient(135deg, #34D399 0%, #2DD4BF 50%, #38BDF8 100%);
    --gradient-subtle: linear-gradient(180deg, rgba(16, 185, 129, 0.08) 0%, transparent 100%);

    --text-white: #F8FAFC;
    --text-light: #E2E8F0;
    --text-muted: #94A3B8;
    --text-subtle: #64748B;

    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;

    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing - Balanced */
    --section-padding: 7rem 0;
    --container-max: 1280px;

    /* Effects */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;
    --shadow-glow: 0 0 80px var(--primary-glow);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    /* Offset for fixed header */
}

body {
    font-family: var(--font-main);
    background: var(--bg-dark);
    color: var(--text-muted);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    color: var(--text-white);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    max-width: 65ch;
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--primary-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
    background: var(--bg-surface);
    border-color: var(--border-hover);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(26, 31, 46, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

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

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

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

.nav-cta {
    padding: 10px 20px;
    background: var(--primary);
    color: white !important;
    border-radius: var(--radius-sm);
}

.nav-cta:hover {
    background: var(--primary-light);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 500px;
    background: var(--bg-darker);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 1001;
    margin-top: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.dropdown-grid a {
    padding: 10px 12px !important;
    border-radius: 8px;
    font-size: 0.85rem !important;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.dropdown-grid a:hover {
    background: var(--bg-surface);
}

/* Compact Niche Grid */
.niche-compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

.niche-compact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 12px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.2s ease;
}

.niche-compact-card:hover {
    background: var(--bg-surface-hover);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.niche-icon-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);
    border-radius: 12px;
    margin-bottom: 12px;
}

.niche-icon-wrapper svg {
    color: var(--primary);
    transition: color 0.2s ease;
}

.niche-compact-card:hover .niche-icon-wrapper {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(20, 184, 166, 0.2) 100%);
}

.niche-compact-card:hover .niche-icon-wrapper svg {
    color: var(--primary-light);
}

.niche-compact-card span {
    font-size: 2rem;
    margin-bottom: 8px;
}

.niche-compact-card strong {
    color: var(--text-white);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.niche-compact-card small {
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* Niche Image Grid Cards */
.niche-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.niche-image-card {
    position: relative;
    display: block;
    height: 160px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-subtle);
}

.niche-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 15%, rgba(0, 0, 0, 0.7) 60%, transparent 100%);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 3;
    transition: all 0.3s ease;
}

.niche-image-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--primary);
}

.niche-image-card:hover .niche-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 0.8) 70%, transparent 100%);
    padding-bottom: 32px;
}

.niche-overlay strong {
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 4px;
}

.niche-overlay small {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.niche-overlay small::after {
    content: '→';
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
    color: var(--primary);
    font-weight: bold;
}

.niche-image-card:hover .niche-overlay small::after {
    opacity: 1;
    transform: translateX(0);
}



@media (max-width: 768px) {

    .niche-image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .niche-image-card {
        height: 140px;
    }

    .niche-overlay {
        padding: 12px;
    }

    .niche-overlay strong {
        font-size: 0.95rem;
    }

    .niche-overlay small {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .dropdown-menu {
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        transform: none;
        min-width: 100%;
        border-radius: 0;
        max-height: 70vh;
        overflow-y: auto;
    }

    .dropdown-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .niche-compact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================
   7. Utility Classes (Refactor)
   ========================================== */
.pt-0 {
    padding-top: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.text-sm {
    font-size: 0.9rem !important;
}

.text-xs {
    font-size: 0.75rem !important;
}

.opacity-70 {
    opacity: 0.7;
}

.opacity-90 {
    opacity: 0.9;
}

.mt-1 {
    margin-top: 0.25rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mt-4 {
    margin-top: 1rem !important;
}

.mt-8 {
    margin-top: 2rem !important;
}

.mb-4 {
    margin-bottom: 1rem !important;
}

.mb-8 {
    margin-bottom: 2rem !important;
}

.gap-2 {
    gap: 0.5rem !important;
}

.justify-center {
    justify-content: center !important;
}

.d-flex {
    display: flex !important;
}

.w-full {
    width: 100% !important;
}



/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    /* Reduced to pull content up */
    padding-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -60%;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    /* Reduced from 6rem to fit better */
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    margin-bottom: 1rem;
    /* Reduced from 1.5rem */
}

.hero-content p {
    font-size: 1.15rem;
    /* Slightly smaller for compactness */
    margin-bottom: 1.5rem;
    /* Reduced from 2rem */
    line-height: 1.5;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    backdrop-filter: blur(8px);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Hero Guarantee Badge */
.hero-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 1rem;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(4px);
    width: fit-content;
    max-width: 100%;
}

.hero-guarantee strong {
    color: var(--primary-light);
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glow);
}

/* Social Proof Bar */
.proof-bar {
    padding: 3rem 0;
    background: var(--bg-darker);
    border-bottom: 1px solid var(--border-subtle);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.proof-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.proof-item p {
    font-size: 0.9rem;
    color: var(--text-subtle);
}

/* Problem Section */
.problem-section {
    padding: var(--section-padding);
    text-align: center;
    background: var(--bg-dark);
}

.problem-section h2 {
    margin-bottom: 1rem;
}

.problem-section>.container>p {
    text-align: center;
    margin: 0 auto 3rem;
    max-width: 700px;
}

.problem-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.problem-image {
    position: relative;
}

.problem-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: left;
}

/* Redesigned Problem Items */
.problem-item {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.03) 0%, rgba(20, 20, 20, 0.4) 100%);
    border: 1px solid var(--border-subtle);
    border-left: 4px solid var(--danger);
    padding: 20px;
    border-radius: var(--radius-md);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.problem-item:hover {
    transform: translateY(-2px);
    border-color: rgba(239, 68, 68, 0.3);
}

.icon-box.danger {
    min-width: 44px;
    height: 44px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--danger);
}

.problem-item h4 {
    color: var(--text-white);
    margin-bottom: 4px;
    font-size: 1.05rem;
}

/* Problem Quote Callout */
.problem-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
    padding: 1.5rem 2.5rem;
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.08) 0%, transparent 100%);
    border-left: 4px solid var(--danger);
    border-radius: var(--radius-sm);
}

.problem-quote p {
    font-size: 1.2rem;
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
}

.problem-quote strong {
    color: var(--text-white);
    font-weight: 600;
}

/* Story Sections (Zig-Zag) */
.story-section {
    padding: var(--section-padding);
    background: var(--bg-darker);
}

.story-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.story-row:last-child {
    margin-bottom: 0;
}

.story-row:nth-child(even) {
    direction: rtl;
}

.story-row:nth-child(even)>* {
    direction: ltr;
}

.story-content {
    max-width: 520px;
}

.story-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid var(--primary);
    color: var(--primary-light);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.story-content h3 {
    margin-bottom: 1rem;
}

.story-content p {
    margin-bottom: 1.5rem;
}

.story-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.story-list-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.story-list-item .check {
    width: 24px;
    height: 24px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.story-row:hover .story-image img {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

/* Niche Section */
.niche-section {
    padding: var(--section-padding);
    background: var(--bg-dark);
}

.niche-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.niche-section>.container>p {
    text-align: center;
    margin: 0 auto 3rem;
    max-width: 600px;
}

.niche-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.niche-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.niche-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.2);
}

.niche-image {
    height: 200px;
    overflow: hidden;
}

.niche-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.niche-card:hover .niche-image img {
    transform: scale(1.05);
}

.niche-content {
    padding: 1.5rem;
}

.niche-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
}

.niche-content h4 {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.niche-content>p {
    font-size: 0.9rem;
    color: var(--text-subtle);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.niche-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.niche-features li {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.niche-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
}

/* Platform Section */
.platform-section {
    padding: var(--section-padding);
    text-align: center;
    background: linear-gradient(180deg, var(--bg-darker) 0%, rgba(16, 185, 129, 0.06) 100%);
}

.platform-header {
    margin-bottom: 3rem;
}

.platform-section h2 {
    margin-bottom: 1rem;
}

.platform-subtitle {
    text-align: center;
    margin: 0 auto;
    max-width: 700px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Platform Features Grid */
.platform-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.platform-feature {
    padding: 1.5rem;
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
    text-align: center;
}

.platform-feature:hover {
    background: var(--bg-surface-hover);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    color: var(--primary-light);
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.3));
    transition: transform 0.3s ease;
}

.platform-feature:hover .feature-icon {
    transform: scale(1.1);
    color: var(--primary);
}

.platform-feature h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.platform-feature p {
    font-size: 0.85rem;
    color: var(--text-subtle);
    margin: 0 auto;
}

/* Divider */
.platform-divider {
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 3rem auto;
    border-radius: 2px;
}

/* Partnership Section */
.partnership-header {
    margin-bottom: 2rem;
}

.partnership-header h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.75rem;
}

.partnership-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.partnership-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    text-align: left;
    transition: var(--transition);
}

.partnership-item:hover {
    background: var(--bg-surface-hover);
    transform: translateY(-4px);
    border-color: var(--primary);
}

.partnership-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    flex-shrink: 0;
}

.partnership-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-white);
}

.partnership-item p {
    font-size: 0.9rem;
    color: var(--text-subtle);
    margin: 0;
}

/* Final CTA */
.cta-section {
    padding: var(--section-padding);
    text-align: center;
    background: var(--gradient-cta);
    position: relative;
    overflow: hidden;
}

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

.cta-section h2 {
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.cta-section>.container>p {
    text-align: center;
    margin: 0 auto 2rem;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
}

.cta-section .btn {
    background: white;
    color: var(--primary);
    font-size: 1.1rem;
    padding: 18px 36px;
    position: relative;
    z-index: 2;
}

.cta-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.cta-badges span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: var(--bg-darker);
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

.footer p {
    color: var(--text-subtle);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {

    .hero-grid,
    .trust-grid,
    .problem-container {
        grid-template-columns: 1fr;
    }

    .story-row {
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }

    .story-row:nth-child(even) {
        direction: ltr;
        /* Reset direction */
        flex-direction: column;
        /* Ensure Standard Column Stack */
    }

    .story-content {
        order: -1;
        /* Always put Text First on Mobile */
        max-width: 100%;
    }

    /* Fix Grid Spacing & Columns for Mobile */
    .platform-features,
    .partnership-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        /* Force Single Column */
        gap: 2rem;
    }

    .platform-feature,
    .partnership-item {
        max-width: 100%;
        /* Ensure full width */
    }

    .partnership-header {
        margin-top: 4rem;
        margin-bottom: 3rem;
    }

    /* Remove the order property as we are using column-reverse */
    .story-row:nth-child(even) .story-content {
        order: unset;
    }

    /* Fix Spacing for Platform Features and Partnership */
    .platform-features,
    .partnership-grid {
        gap: 2rem;
        /* Ensure consistent gap */
    }

    .partnership-header {
        margin-top: 4rem;
        margin-bottom: 3rem;
    }

    .story-content {
        max-width: 100%;
    }

    .trust-list {
        grid-template-columns: 1fr;
    }

    .niche-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .mobile-toggle {
        display: block;
    }

    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .cta-badges {
        flex-direction: column;
        gap: 1rem;
    }

    .niche-grid {
        grid-template-columns: 1fr;
    }

    .niche-image {
        height: 180px;
    }
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding);
    background: var(--bg-surface);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-dark);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
}

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

.faq-item details {
    padding: 1.5rem;
    cursor: pointer;
}

.faq-item summary {
    font-weight: 600;
    color: var(--text-white);
    list-style: none;
    position: relative;
    padding-right: 2rem;
}

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

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.faq-item details[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
    margin-top: 1rem;
    color: var(--text-subtle);
    line-height: 1.6;
    padding-right: 1rem;
}

/* Turning Point (Storytelling Bridge) */
.turning-point {
    padding: 6rem 0 4rem;
    background: var(--bg-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.turning-point::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, var(--danger), var(--bg-dark));
    opacity: 0.5;
}

.connector-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--primary));
    margin: 0 auto 2rem;
}

.turning-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(90deg, #fff, #ccc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.manifesto-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.manifesto-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.manifesto-text strong {
    color: var(--text-white);
    font-weight: 600;
}

.manifesto-text.highlight {
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 0;
    font-weight: 500;
}

.manifesto-text.highlight strong {
    color: var(--primary-light);
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.connector-arrow {
    margin-top: 3rem;
    color: var(--primary);
    animation: bounce 2s infinite;
}

/* Scroll Hook - Hero */
.scroll-hook {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 5;
    width: 100%;
    pointer-events: none;
    /* Let clicks pass through */
}

.scroll-hook p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.scroll-arrow {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    pointer-events: auto;
}

/* Ensure bounce animation is defined if not already */
@keyframes bounce {

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

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

    60% {
        transform: translateY(-5px);
    }
}

/* Section Link/Connector */
.section-link {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
    margin-top: -2rem;
    /* Pull up to overlap/connect */
    padding-bottom: 2rem;
}

.link-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    opacity: 0.6;
}

@media (max-width: 768px) {
    .hero {
        padding-bottom: 3rem;
        /* Reduced from 8rem */
    }

    .problem-section {
        padding-top: 1rem;
        /* Tighter spacing */
    }
}

@keyframes bounce {

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

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

    60% {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .turning-content h2 {
        font-size: 2rem;
    }

    .manifesto-text {
        font-size: 1.1rem;
    }

}



/* Spacing adjustments for flow */
#funcionalidades {
    padding-bottom: 2rem;
}

.platform-section#consultoria {
    padding-top: 2rem;
}

@media (max-width: 768px) {
    #funcionalidades {
        padding-bottom: 1rem;
    }

    .platform-section#consultoria {
        padding-top: 1rem;
    }
}

/* =========================================
   MOBILE NAVIGATION & FLOATING CTA
   Added via QA Fix
   ========================================= */

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    /* Hidden on desktop */
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1002;
    padding: 8px;
    line-height: 1;
}

/* Mobile Navigation Menu Overlay */
.mobile-nav {
    position: fixed;
    top: 72px;
    /* Header height approx */
    left: 0;
    width: 100%;
    background: var(--bg-darker);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transform: translateY(-150%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    visibility: hidden;
}

.mobile-nav.active {
    transform: translateY(0);
    visibility: visible;
}

.mobile-nav a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 10px;
    border-radius: 8px;
    transition: background 0.2s;
    text-align: center;
}

.mobile-nav a:hover,
.mobile-nav a:active {
    background: var(--bg-surface);
    color: var(--primary);
}

/* Floating CTA Button - DISABLED (replaced by GHL Chat Widget) */
.floating-cta {
    display: none !important; /* Hidden - using GHL Chat Widget instead */
    /*
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 20px var(--primary-glow);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    */
}

.floating-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--primary-glow);
}

/* Float Animation */
@keyframes float {

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

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

.floating-cta {
    animation: float 3s ease-in-out infinite;
}

/* Mobile Media Query Adjustments */
@media (max-width: 768px) {
    .nav {
        display: none !important;
        /* Force hide desktop nav */
    }

    .mobile-toggle {
        display: block;
    }

    /* Adjust Floating CTA for Mobile */
    .floating-cta {
        bottom: 1.5rem;
        right: 1.5rem;
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
    }
}