/* ===================================
   INSIGHT CAPITAL - MODERN DESIGN
   Inspired by eden.so aesthetic
   =================================== */

/* Fontes Lufga */
@font-face {
    font-family: 'Lufga';
    src: url('assets/fonts/Lufga-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lufga';
    src: url('assets/fonts/Lufga-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lufga';
    src: url('assets/fonts/Lufga-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lufga';
    src: url('assets/fonts/Lufga-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lufga';
    src: url('assets/fonts/Lufga-Italic.woff') format('woff');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Lufga';
    src: url('assets/fonts/Lufga-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lufga';
    src: url('assets/fonts/Lufga-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lufga';
    src: url('assets/fonts/Lufga-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lufga';
    src: url('assets/fonts/Lufga-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lufga';
    src: url('assets/fonts/Lufga-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* CSS Variables */
:root {
    --lime: #CCFF00;
    --light-green: #E8F7D0;
    --white: #FFFFFF;
    --black: #0A0A0A;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-900: #111827;

    --font-primary: 'Lufga', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

html {
    font-size: 16px;
}

html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.7;
    color: var(--gray-900);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Particles Background */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 30%, rgba(204, 255, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(232, 247, 208, 0.05) 0%, transparent 50%);
}

.particles-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 2px 2px, rgba(0, 0, 0, 0.02) 1px, transparent 0);
    background-size: 40px 40px;
    animation: particleFloat 60s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-40px); }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
}

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

/* Containers */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow);
    background: rgba(255, 255, 255, 1);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid var(--gray-200);
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.logo-img:hover {
    opacity: 0.8;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-700);
    position: relative;
}

.nav-menu a:hover {
    color: var(--black);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--lime);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Nav Dropdowns */
.nav-item-dropdown {
    position: relative;
}

.nav-item-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.dropdown-arrow {
    width: 14px;
    height: 14px;
    margin-left: 2px;
    transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(10, 10, 10, 0.45);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    min-width: 220px;
    list-style: none;
    padding: 10px 0;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 15px;
    z-index: 1000;
}

/* Ponte para evitar que o dropdown feche ao mover o mouse para baixo */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
}

.dropdown-right {
    left: auto;
    right: 0;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0 !important;
    border: none !important;
    width: 100%;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: var(--white) !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
    white-space: nowrap;
}

.dropdown-menu a .dropdown-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0.7;
}

.dropdown-menu a:hover {
    background-color: rgba(204, 255, 0, 0.1);
    color: var(--lime) !important;
    padding-left: 25px;
}

.dropdown-menu a::after {
    display: none !important;
}

.dropdown-menu a.disabled-link {
    opacity: 0.4;
    cursor: default;
    pointer-events: none;
}

/* Client Area Button */
.btn-client-area {
    background-color: var(--lime);
    color: var(--black) !important;
    padding: 10px 22px !important;
    border-radius: 14px;
    font-weight: 700 !important;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease !important;
    text-shadow: none !important;
    line-height: 1 !important;
    white-space: nowrap;
}

.btn-client-area:hover {
    background-color: var(--white);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 5px 20px rgba(204, 255, 0, 0.4);
}

.btn-client-area::after {
    display: none !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    position: relative;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: var(--transition);
    border-radius: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-toggle span:nth-child(1) {
    top: 12px;
}

.nav-toggle span:nth-child(2) {
    top: 19px;
}

.nav-toggle span:nth-child(3) {
    top: 26px;
}

.nav-toggle.active span:nth-child(1) {
    top: 19px;
    transform: translateX(-50%) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    top: 19px;
    transform: translateX(-50%) rotate(-45deg);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 3rem;
    position: relative;
    background:
        radial-gradient(ellipse 80% 60% at 15% 20%, rgba(204, 255, 0, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 85% 25%, rgba(232, 247, 208, 0.4) 0%, transparent 55%),
        radial-gradient(ellipse 70% 55% at 50% 85%, rgba(204, 255, 0, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 90% 75%, rgba(210, 240, 180, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 55% 45% at 10% 70%, rgba(232, 247, 208, 0.25) 0%, transparent 55%),
        radial-gradient(ellipse 45% 35% at 40% 10%, rgba(204, 255, 0, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 65% 50% at 70% 50%, rgba(232, 247, 208, 0.3) 0%, transparent 55%),
        radial-gradient(ellipse 40% 55% at 25% 55%, rgba(210, 240, 180, 0.22) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 60% 30%, rgba(204, 255, 0, 0.15) 0%, transparent 55%),
        radial-gradient(ellipse 45% 50% at 75% 90%, rgba(232, 247, 208, 0.28) 0%, transparent 50%),
        radial-gradient(ellipse 35% 30% at 5% 45%, rgba(204, 255, 0, 0.12) 0%, transparent 45%),
        radial-gradient(ellipse 55% 40% at 50% 50%, rgba(210, 240, 180, 0.2) 0%, transparent 50%),
        linear-gradient(180deg, var(--white) 0%, var(--light-green) 100%);
    overflow: hidden;
}

/* Animated Mesh Gradient Background */
.mesh-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(at 20% 30%, rgba(204, 255, 0, 0.3) 0px, transparent 50%),
        radial-gradient(at 80% 20%, rgba(232, 247, 208, 0.4) 0px, transparent 50%),
        radial-gradient(at 50% 80%, rgba(204, 255, 0, 0.25) 0px, transparent 50%),
        radial-gradient(at 90% 70%, rgba(232, 247, 208, 0.35) 0px, transparent 50%),
        radial-gradient(at 10% 90%, rgba(204, 255, 0, 0.2) 0px, transparent 50%);
    animation: meshMove 20s ease infinite;
    filter: blur(60px);
    z-index: 0;
}

@keyframes meshMove {
    0%, 100% {
        transform: scale(1) translate(0, 0);
    }
    33% {
        transform: scale(1.1) translate(5%, -5%);
    }
    66% {
        transform: scale(0.95) translate(-5%, 5%);
    }
}

/* Grid overlay */
.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(204, 255, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(204, 255, 0, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.5;
    z-index: 0;
}

.hero-container {
    max-width: 1100px;
    text-align: center;
    position: relative;
    z-index: 10;
    margin-bottom: 2rem;
    margin-top: 10rem;
    flex: 0 0 auto;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.25;
    color: var(--black);
    margin-bottom: 2rem;
    margin-top: 0;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title .accent {
    background: linear-gradient(135deg, #ccff00, #7ab800, #ccff00);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

/* Typewriter */
.typewriter-wrapper {
    display: inline;
}

.typewriter-text {
    min-width: 0;
}

.typewriter-cursor {
    display: inline-block;
    width: 3px;
    height: 0.85em;
    background: linear-gradient(135deg, #ccff00, #7ab800);
    margin-left: 2px;
    vertical-align: baseline;
    animation: cursorBlink 0.75s step-end infinite;
    border-radius: 1px;
}

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

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-cta-group {
    animation: fadeInUp 0.8s ease 0.4s both;
    margin-bottom: 1rem;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: var(--black);
    color: var(--white);
    font-size: 1.0625rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.hero-cta-primary:hover {
    background: var(--lime);
    color: var(--black);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.cta-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.hero-cta-primary:hover .cta-icon {
    transform: translateX(4px);
}

/* Hero Clients Section */
.hero-clients {
    width: 100%;
    padding: 2rem 2rem 4rem;
    animation: fadeInUp 0.8s ease 0.6s both;
    flex: 0 0 auto;
    position: relative;
    z-index: 10;
}

.clients-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.clients-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6rem;
    flex-wrap: wrap;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.client-logo img {
    max-width: 350px;
    height: auto;
    max-height: 120px;
    object-fit: contain;
    filter: grayscale(0%);
    opacity: 0.9;
    transition: var(--transition);
}

.client-logo:hover img {
    opacity: 1;
    transform: scale(1.05);
}

/* Pillars Section */
.section-pillars {
    background: var(--white);
    padding: 6rem 0 8rem;
    position: relative;
    overflow: visible;
}

/* Pillars Grid */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Pillar Card */
.pillar-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
    border-color: var(--lime);
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--lime), #7ab800);
}

/* Pillar Card Icon */
.pillar-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--lime), #7ab800);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.pillar-card-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

/* Pillar Header */
.pillar-header {
    margin-bottom: 1rem;
}

.pillar-title {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ccff00, #7ab800, #ccff00);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: lowercase;
    margin: 0;
    animation: shimmer 3s linear infinite;
}

/* Pillar Description */
.pillar-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 1.75rem;
}

/* Pillar Features List */
.pillar-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.pillar-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.5;
}

.pillar-features li svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    color: #000000;
    margin-top: 2px;
}

/* Profissional Card - Special Styles */
.pillar-card.profissional .pillar-description {
    margin-bottom: 2rem;
}

.expertise-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-600);
    margin-bottom: 1.25rem;
}

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

.logo-item {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 1.25rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    transition: all 0.2s ease;
    border: 1px solid var(--gray-100);
}

.logo-item:hover {
    background: var(--gray-100);
    border-color: var(--gray-200);
}

.logo-item img {
    max-width: 100%;
    max-height: 40px;
    object-fit: contain;
    filter: grayscale(20%);
    opacity: 0.85;
    transition: var(--transition);
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Highlight Badge */
.highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(204, 255, 0, 0.15);
    color: #7ab800;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 20px;
    margin-top: 1.5rem;
}

.highlight-badge svg {
    width: 14px;
    height: 14px;
}

/* Responsive for Pillars Section */
@media (max-width: 1024px) {
    .section-pillars {
        padding: 5rem 0 6rem;
    }

    .pillars-grid {
        gap: 1.25rem;
    }

    .pillar-card {
        padding: 2rem 1.75rem;
    }

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

    .pillar-card-icon {
        width: 48px;
        height: 48px;
    }

    .pillar-card-icon svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 900px) {
    .pillars-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .section-pillars {
        padding: 4rem 0 5rem;
    }

    .pillars-header {
        margin-bottom: 2.5rem;
    }

    .pillars-header h2 {
        font-size: 1.75rem;
    }

    .pillars-header p {
        font-size: 1rem;
    }

    .flying-word {
        /* Mantém visível em mobile para animação */
    }

    .pillar-header.waiting .pillar-title {
        opacity: 0;
    }

    .pillars-grid {
        opacity: 0;
        transform: translateY(50px);
    }

    .pillars-grid.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .pillar-card {
        padding: 2rem 1.5rem;
    }

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

    .pillar-description {
        font-size: 0.9rem;
    }

    .pillar-features li {
        font-size: 0.875rem;
    }

    .logos-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .logo-item {
        padding: 1rem;
        min-height: 60px;
    }

    .logo-item img {
        max-height: 35px;
    }
}

@media (max-width: 480px) {
    .section-pillars {
        padding: 3rem 0 4rem;
    }

    .pillar-card {
        padding: 1.75rem 1.25rem;
    }

    .pillar-card-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 1.25rem;
    }

    .pillar-card-icon svg {
        width: 22px;
        height: 22px;
    }

    .pillar-title {
        font-size: 1.35rem;
    }

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

/* Sections */
.section {
    padding: 7rem 0;
    position: relative;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header.centered {
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--black);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.1875rem;
    color: var(--gray-600);
    line-height: 1.8;
    max-width: 700px;
}

.section-header.centered .section-description {
    margin-left: auto;
    margin-right: auto;
}

/* Statement Section */
.section-statement {
    background: var(--gray-50);
    padding: 6rem 0;
}

.statement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.statement-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 20px;
    transition: var(--transition);
}

.statement-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: #FF6B6B;
}

.statement-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.statement-icon.error {
    background: rgba(255, 107, 107, 0.1);
    color: #FF6B6B;
}

.statement-text {
    font-size: 1.25rem;
    color: var(--gray-700);
    line-height: 1.6;
}

.statement-text strong {
    color: var(--black);
    font-weight: 700;
}

.statement-solution {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--lime);
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
}

.solution-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--black);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.solution-subtitle {
    font-size: 1.25rem;
    color: var(--gray-900);
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Section */
.section-services {
    background: var(--white);
}

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

.service-card {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--lime);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--lime);
}

.service-number {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 200;
    color: var(--gray-300);
    margin-bottom: 1rem;
    line-height: 1;
}

.service-icon {
    width: 48px;
    height: 48px;
    color: var(--lime);
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}

.service-description {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--black);
    transition: var(--transition);
    margin-top: auto;
}

.service-card:hover .service-link {
    gap: 0.75rem;
    color: var(--lime);
}

.link-arrow {
    width: 16px;
    height: 16px;
    transition: var(--transition);
}

.service-card:hover .link-arrow {
    transform: translateX(4px);
}

/* No Tools Section */
.section-no-tools {
    background: var(--black);
    padding: 10rem 2rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-no-tools::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(204, 255, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(204, 255, 0, 0.03) 0%, transparent 50%);
    opacity: 1;
    pointer-events: none;
}

.section-no-tools .container {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-tools-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    opacity: 1;
    transition: opacity 0.6s ease;
}

.no-tools-content.fade-out {
    opacity: 0;
}

.no-tools-final {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.6s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    width: 90%;
    max-width: 900px;
    pointer-events: none;
}

.no-tools-final.fade-in {
    opacity: 1;
    pointer-events: auto;
}

.no-tools-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.no-tools-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--lime);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease both;
}

.no-tools-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.no-tools-description-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 3rem;
    max-width: 900px;
    margin: 0 auto 3rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.no-tools-item {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

.no-tools-conclusion {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--lime);
    font-style: italic;
    font-weight: 600;
    max-width: 600px;
    line-height: 1.4;
}

/* Floating Icons */
.floating-icon {
    position: absolute;
    left: var(--x);
    top: var(--y);
    animation: float var(--duration) ease-in-out var(--delay) infinite;
    z-index: 1;
    opacity: 1;
    transform: translate(0, 0) rotate(0deg) scale(1);
    will-change: transform, opacity;
}

.floating-icon.explode {
    animation: none !important;
    pointer-events: none;
    transition: opacity 1s ease-out;
    opacity: 0;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(0, -20px) rotate(5deg);
    }
    50% {
        transform: translate(0, -10px) rotate(-5deg);
    }
    75% {
        transform: translate(0, -30px) rotate(3deg);
    }
}

.icon-card {
    width: 64px;
    height: 64px;
    background: rgba(204, 255, 0, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(204, 255, 0, 0.3);
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(204, 255, 0, 0.2);
}

.floating-icon.explode .icon-card {
    box-shadow: 0 0 60px rgba(204, 255, 0, 0.6), 0 0 100px rgba(204, 255, 0, 0.4);
    border-color: var(--lime);
}

.icon-card:hover {
    background: rgba(204, 255, 0, 0.2);
    border-color: var(--lime);
    transform: scale(1.1);
}

.icon-card svg {
    width: 32px;
    height: 32px;
    color: var(--lime);
}

/* Workflow Section V2 */
.wf2-header-area {
    padding: 7rem 0 4rem;
    text-align: center;
    background: var(--white);
}

.wf2-centered {
    margin: 0 auto;
}

/* Phase Row */
.phase-row {
    padding: 5rem 0;
    position: relative;
}

.phase-row.phase-1 { background: var(--white); }
.phase-row.phase-2 { background: var(--gray-50); }
.phase-row.phase-3 { background: var(--black); color: var(--white); }

.phase-row-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 4rem;
    align-items: start;
}

/* Left: Phase Info */
.phase-info {
    position: sticky;
    top: calc(50vh - 10rem);
}

.phase-step {
    font-size: 7rem;
    font-weight: 100;
    line-height: 1;
    margin-bottom: 1rem;
}

.phase-1 .phase-step { color: var(--gray-200); }
.phase-2 .phase-step { color: var(--gray-300); }
.phase-3 .phase-step { color: #ffffff; }

.phase-badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    margin-bottom: 1.25rem;
}

.phase-1 .phase-badge { background: var(--gray-100); color: var(--gray-600); }
.phase-2 .phase-badge { background: rgba(204,255,0,0.15); color: var(--gray-900); }
.phase-3 .phase-badge { background: var(--lime); color: var(--black); }

.phase-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.phase-3 .phase-title { color: var(--white); }

.phase-tagline {
    font-size: 1.0625rem;
    line-height: 1.6;
}

.phase-1 .phase-tagline,
.phase-2 .phase-tagline { color: var(--gray-600); }
.phase-3 .phase-tagline { color: rgba(255,255,255,0.6); }

/* Right: Items */
.items-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.item-row {
    display: flex;
    gap: 1.25rem;
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.phase-1 .item-row {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
}
.phase-1 .item-row:hover {
    border-color: var(--lime);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.phase-2 .item-row {
    background: var(--white);
    border: 1px solid var(--gray-200);
}
.phase-2 .item-row:hover {
    border-color: var(--lime);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.phase-3 .item-row {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}
.phase-3 .item-row:hover {
    border-color: rgba(204,255,0,0.3);
    background: rgba(255,255,255,0.07);
}

/* Item Number */
.item-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-400);
    flex-shrink: 0;
    min-width: 1.25rem;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.125rem;
}

.phase-3 .item-number { color: var(--lime); }

/* Item Icon */
.item-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.phase-1 .item-icon,
.phase-2 .item-icon {
    background: var(--gray-900);
}

.phase-3 .item-icon {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
}

.item-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--lime);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.item-content {
    flex: 1;
    min-width: 0;
}

.item-top {
    margin-bottom: 0.5rem;
}

.item-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
}

.phase-3 .item-title { color: var(--white); }

/* Why Toggle */
.why-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0;
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
}

.phase-1 .why-toggle,
.phase-2 .why-toggle { color: var(--gray-400); }
.phase-1 .why-toggle:hover,
.phase-2 .why-toggle:hover { color: var(--gray-600); }
.phase-3 .why-toggle { color: #ccff00; }
.phase-3 .why-toggle:hover { color: #ccff00; }

.why-toggle svg {
    width: 12px;
    height: 12px;
    transition: transform 0.25s ease;
}

.item-row.why-open .why-toggle svg {
    transform: rotate(90deg);
}

/* Collapsible Why */
.item-why {
    border-radius: 0 8px 8px 0;
    font-size: 1rem;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 1rem;
    margin-top: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease, margin-top 0.3s ease;
}

.item-row.why-open .item-why {
    max-height: 12rem;
    opacity: 1;
    padding: 0.875rem 1rem;
    margin-top: 0.5rem;
}

.phase-1 .item-why {
    background: rgba(204,255,0,0.08);
    border-left: 3px solid var(--lime);
    color: var(--gray-400);
}
.phase-2 .item-why {
    background: rgba(204,255,0,0.08);
    border-left: 3px solid var(--lime);
    color: var(--gray-400);
}
.phase-3 .item-why {
    background: rgba(204,255,0,0.06);
    border-left: 3px solid rgba(204,255,0,0.5);
    color: rgba(255,255,255,0.75);
}

/* Dashboard Embed (Phase 2) */
.dashboard-embed {
    margin-top: 0.5rem;
}

.dashboard-embed-frame {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--gray-200);
    background: var(--white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.dashboard-embed-frame:hover {
    border-color: var(--lime);
    box-shadow: 0 20px 60px rgba(204, 255, 0, 0.1), 0 8px 24px rgba(0, 0, 0, 0.04);
}

.dashboard-embed-toolbar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 14px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
}

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

.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }

.toolbar-label {
    margin-left: 0.75rem;
    font-size: 0.75rem;
    color: var(--gray-400);
    font-weight: 500;
}

.dashboard-embed-frame iframe {
    display: block;
    width: 100%;
    border: none;
}

.dashboard-embed-hint {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(204, 255, 0, 0.06);
    border-bottom: 1px solid var(--gray-200);
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.dashboard-embed-hint svg {
    width: 22px;
    height: 22px;
    min-width: 22px;
    color: var(--lime);
}

.dashboard-embed-hint strong {
    color: var(--black);
}

@media (max-width: 768px) {
    .dashboard-embed-frame {
        border-radius: 14px;
    }

    .dashboard-embed-frame iframe {
        height: 360px;
    }

    .dashboard-embed-hint {
        font-size: 0.75rem;
        padding: 0.875rem 1rem;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .dashboard-embed-frame iframe {
        height: 280px;
    }
}

/* Phase Divider */
.phase-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0;
    background: var(--white);
}

.phase-divider.phase-divider-2 { background: var(--gray-50); }

.divider-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--lime);
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider-arrow svg {
    width: 20px;
    height: 20px;
    color: var(--black);
    transform: rotate(90deg);
}

/* Workflow V2 Responsive */
@media (max-width: 1024px) {
    .phase-row-inner {
        grid-template-columns: 300px 1fr;
        gap: 3rem;
    }

    .phase-step {
        font-size: 5rem;
    }

    .phase-title {
        font-size: 1.875rem;
    }
}

@media (max-width: 768px) {
    .wf2-header-area {
        padding: 4rem 0 2rem;
    }

    .phase-row {
        padding: 3rem 0;
    }

    .phase-row-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .phase-info {
        position: static;
    }

    .phase-step {
        font-size: 4rem;
    }

    .phase-title {
        font-size: 1.75rem;
    }

    .item-row {
        padding: 1.5rem;
    }

    .item-number {
        height: 44px;
    }

    .item-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .item-icon svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .wf2-header-area {
        padding: 3rem 0 1.5rem;
    }

    .phase-row {
        padding: 2.5rem 0;
    }

    .phase-step {
        font-size: 3rem;
    }

    .item-row {
        padding: 1.25rem;
        gap: 1rem;
    }

    .item-number {
        display: none;
    }

    .item-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .item-icon svg {
        width: 20px;
        height: 20px;
    }

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

    .divider-arrow {
        width: 40px;
        height: 40px;
    }

    .divider-arrow svg {
        width: 16px;
        height: 16px;
    }
}

/* Tabela Comparativa */
.section-comparison {
    background: var(--white);
    color: var(--black);
    padding: 7rem 0;
}

.comparison-table-wrapper {
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 1.15rem;
}

.comparison-table thead tr {
    background: none;
}

.comparison-table th:not(.insight-column) {
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
}

.comparison-table th {
    padding: 18px 15px;
    text-align: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--black);
    border-bottom: 2px solid rgba(204, 255, 0, 0.3);
}

.comparison-table th.feature-column {
    text-align: left;
    color: #4a7a00;
    font-size: 1.2rem;
}

.comparison-table th.insight-column {
    background: none;
    color: var(--black);
    font-size: 1.3rem;
    position: relative;
    border-bottom: none;
    isolation: isolate;
}

.comparison-table th.insight-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(0,0,0,0.05)" stroke-width="2"/></svg>');
    background-size: 25px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

.comparison-table th.insight-column::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2000px;
    background: linear-gradient(180deg, #E8F7D0 0%, #CCFF00 100%);
    z-index: -1;
    pointer-events: none;
}

.comparison-table tbody tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
}

.comparison-table tbody tr:hover td:not(.highlight) {
    background-color: rgba(204, 255, 0, 0.05);
}

.comparison-table td {
    padding: 25px 12px;
    text-align: center;
    vertical-align: middle;
    color: rgba(0, 0, 0, 0.8);
}

.comparison-table td.feature-name {
    text-align: left;
    font-weight: 600;
    color: var(--black);
    font-size: 1.15rem;
    padding-left: 20px;
}

.comparison-table .check-yes {
    color: #059669;
    font-weight: 600;
}

.comparison-table .check-no {
    color: #dc2626;
    font-weight: 600;
}

.comparison-table .check-partial {
    color: rgba(0, 0, 0, 0.5);
    font-size: 0.85rem;
    font-style: italic;
}

.comparison-table .check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    font-size: 1rem;
    font-weight: bold;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.3);
}

.comparison-table .x-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(239, 68, 68, 0.15);
    border-radius: 50%;
    font-size: 1rem;
    font-weight: bold;
    box-shadow: 0 0 12px rgba(239, 68, 68, 0.3);
}

.comparison-table td.highlight {
    background: transparent;
    position: relative;
    z-index: 1;
}

.comparison-table td.highlight .check-icon {
    background: rgba(0, 0, 0, 0.8);
    color: var(--lime);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    font-size: 1.1rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

/* ===== CLT vs BPO Section ===== */
.section-clt-bpo {
    background: var(--white);
}

.clt-bpo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
    margin-top: 3rem;
}

/* Card base */
.clt-bpo-card {
    padding: 2.5rem;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
}

/* Label (top of card) */
.clt-bpo-card-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.clt-bpo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* CLT card */
.clt-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
}

.clt-dot { background: #e74c3c; }

.clt-card .clt-bpo-price {
    color: var(--gray-700);
}

/* BPO card */
.bpo-card {
    background: var(--light-green);
    border: 2px solid var(--lime);
}

.bpo-dot { background: var(--lime); }

.bpo-label { color: var(--gray-700); }

.bpo-price {
    color: var(--black);
}

/* Price */
.clt-bpo-price {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

/* Annual cost pill */
.clt-bpo-annual {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin: 0.75rem 0;
}

.clt-annual {
    background: rgba(231, 76, 60, 0.08);
    color: #c0392b;
    border: 1px solid rgba(231, 76, 60, 0.2);
}

.bpo-annual {
    background: rgba(204, 255, 0, 0.3);
    color: var(--black);
    border: 1px solid rgba(204, 255, 0, 0.5);
}

/* Price description */
.clt-bpo-price-desc {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

/* Divider */
.clt-bpo-divider {
    height: 1px;
    margin-bottom: 1.5rem;
}

.clt-divider { background: var(--gray-200); }
.bpo-divider { background: rgba(204, 255, 0, 0.4); }

/* Features title */
.clt-bpo-features-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.bpo-card .clt-bpo-features-title {
    color: var(--gray-600);
}

/* CLT feature items (red) */
.clt-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    font-size: 0.9rem;
    color: var(--gray-500);
}

.clt-feature-item svg {
    color: #e74c3c;
    flex-shrink: 0;
    margin-top: 2px;
}

/* BPO feature items (black/dark) */
.bpo-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.bpo-feature-item svg {
    color: var(--black);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Economy bar */
.bpo-economy-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem;
    border-radius: 12px;
    background: var(--lime);
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--black);
    margin-top: auto;
}

/* Disclaimer */
.clt-bpo-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .clt-bpo-grid {
        grid-template-columns: 1fr;
    }

    .clt-bpo-card {
        padding: 2rem 1.5rem;
    }

    .clt-bpo-price {
        font-size: 2.25rem;
    }
}

/* Why Section */
.section-why {
    background: var(--light-green);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.why-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--lime);
}

.why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lime);
    border-radius: 50%;
}

.why-icon svg {
    width: 32px;
    height: 32px;
    color: var(--black);
}

.why-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.why-card p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Method Section */
.section-method {
    background: var(--white);
}

.method-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.method-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-200);
}

.timeline-item {
    position: relative;
    padding-left: 100px;
    margin-bottom: 4rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lime);
    border: 4px solid var(--white);
    border-radius: 50%;
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

.timeline-content h3 {
    font-family: var(--font-primary);
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}

.timeline-content p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info h3 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--black);
    font-weight: 700;
}

.contact-info p {
    margin-bottom: 30px;
    opacity: 0.85;
    line-height: 1.8;
    font-size: 1.1rem;
}

.contact-details {
    margin-top: 40px;
    padding: 30px;
    background: var(--gray-50);
    border-radius: 20px;
    border-left: 4px solid var(--lime);
}

.contact-details p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.contact-details strong {
    color: var(--black);
    font-weight: 700;
    min-width: 80px;
}

.contact-form {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(30, 30, 30, 0.95) 100%);
    padding: 50px;
    border-radius: 32px;
    border: 2px solid rgba(204, 255, 0, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(204, 255, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.form-group {
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    font-size: 1rem;
    font-family: inherit;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--lime);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(204, 255, 0, 0.1), 0 8px 20px rgba(204, 255, 0, 0.15);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--lime) 0%, #a3d900 100%);
    color: var(--black);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(204, 255, 0, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.form-submit:hover::before {
    left: 100%;
}

.form-submit:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(204, 255, 0, 0.5);
}

.form-submit:active {
    transform: translateY(-1px) scale(0.98);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-feedback {
    margin-top: 16px;
    padding: 0;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-feedback-success {
    padding: 14px;
    color: #111;
    background: var(--lime);
}

.form-feedback-error {
    padding: 14px;
    color: #fff;
    background: #e74c3c;
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 30px;
    }
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 2rem 0 3rem;
}

.footer-top {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 35px;
    display: inline-block;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-nav a {
    font-size: 0.9375rem;
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--lime);
}

.footer-address {
    text-align: center;
    padding: 1.5rem 0;
    max-width: 500px;
    margin: 0 auto;
}

.footer-address-divider {
    width: 8rem;
    border-bottom: 1px dashed var(--gray-600);
    margin: 0 auto 1rem;
}

.footer-address p {
    font-size: 0.9375rem;
    color: var(--white);
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.footer-tagline {
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section {
        padding: 5rem 0;
    }

    .section-comparison {
        padding: 5rem 0;
    }

    .comparison-table {
        font-size: 0.82rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
    }

    .comparison-table th {
        font-size: 0.88rem;
    }

    .comparison-table td.feature-name {
        font-size: 0.82rem;
        min-width: 180px;
    }

    .comparison-table .check-icon,
    .comparison-table .x-icon {
        width: 26px;
        height: 26px;
        font-size: 0.95rem;
    }

    .no-tools-description-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .no-tools-logo {
        max-width: 320px;
    }

    .method-timeline::before {
        left: 30px;
    }

    .timeline-marker {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .timeline-item {
        padding-left: 80px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height, 80px);
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.45);
        backdrop-filter: blur(40px) saturate(180%);
        -webkit-backdrop-filter: blur(40px) saturate(180%);
        padding: 0;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        max-height: calc(100vh - var(--header-height, 80px));
        overflow-y: auto;
    }

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

    .nav-menu li {
        padding: 15px 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        text-align: center;
    }

    .nav-menu > li > a {
        color: var(--white) !important;
    }

    .nav-item-dropdown > a {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
        width: 100%;
    }

    .nav-item-dropdown {
        flex-direction: column;
        align-items: center;
        padding: 15px 24px !important;
    }

    .btn-client-area {
        width: auto;
        display: inline-flex;
        justify-content: center;
        gap: 6px;
        margin: 0;
        border-radius: 0;
        padding: 15px 24px !important;
        background-color: transparent;
        color: var(--white) !important;
    }

    .btn-client-area:hover {
        background-color: rgba(204, 255, 0, 0.1);
        transform: none;
        box-shadow: none;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
        background-color: rgba(0, 0, 0, 0.35);
        box-shadow: inset 0 8px 16px rgba(0, 0, 0, 0.4), inset 0 -4px 10px rgba(0, 0, 0, 0.15);
        margin-top: 8px;
        padding: 0;
        border-radius: 10px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, margin 0.35s ease;
        opacity: 0;
    }

    .dropdown-menu::before {
        display: none;
    }

    .nav-item-dropdown.active .dropdown-menu,
    .nav-item-dropdown:hover .dropdown-menu {
        max-height: 500px;
        opacity: 1;
        margin-top: 8px;
        margin-bottom: 4px;
    }

    .nav-item-dropdown.active .dropdown-arrow,
    .nav-item-dropdown:hover .dropdown-arrow {
        transform: rotate(180deg);
    }

    .dropdown-menu a {
        padding: 12px 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 1.5rem 2rem;
    }

    .hero-container {
        margin-bottom: 3rem;
        margin-top: 4rem;
    }

    .hero-clients {
        padding: 2rem 1.5rem 1rem;
    }

    .clients-title {
        font-size: 1.25rem;
        margin-bottom: 3rem;
    }

    .clients-logos {
        gap: 4rem;
    }

    .client-logo img {
        max-width: 250px;
        max-height: 90px;
    }

    .section {
        padding: 4rem 0;
    }

    .section-comparison {
        padding: 4rem 0;
    }

    .comparison-table-wrapper {
        padding: 0;
        border-radius: 16px;
        overflow: visible;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .comparison-table {
        display: block;
        width: 100%;
    }

    .comparison-table thead {
        display: none;
    }

    .comparison-table tbody {
        display: block;
    }

    .comparison-table tbody tr {
        display: block;
        margin-bottom: 1rem;
        background: var(--white);
        border-radius: 12px;
        padding: 1rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        border: 1px solid var(--gray-200);
    }

    .comparison-table tbody tr:hover {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }

    .comparison-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--gray-100);
        text-align: left;
    }

    .comparison-table td:last-child {
        border-bottom: none;
    }

    .comparison-table td.feature-name {
        display: block;
        font-size: 1rem;
        font-weight: 700;
        color: var(--black);
        padding: 0 0 1rem 0;
        border-bottom: 2px solid var(--lime);
        margin-bottom: 0.75rem;
        text-align: left;
    }

    .comparison-table td:not(.feature-name)::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--gray-600);
        font-size: 0.85rem;
        flex-shrink: 0;
        margin-right: 1rem;
    }

    .comparison-table td.highlight::before {
        color: var(--black);
    }

    .comparison-table td.highlight {
        background: linear-gradient(90deg, rgba(232, 247, 208, 0.3), rgba(204, 255, 0, 0.2));
        margin: 0 -1rem;
        padding: 0.75rem 1rem;
        border-radius: 8px;
    }

    .comparison-table .check-icon,
    .comparison-table .x-icon {
        width: 28px;
        height: 28px;
        font-size: 0.95rem;
    }

    .comparison-table .check-partial {
        font-size: 0.85rem;
        font-style: italic;
    }

    .section-no-tools {
        padding: 6rem 1.5rem;
        min-height: 80vh;
    }

    .section-no-tools .container {
        min-height: 500px;
    }

    .no-tools-label {
        font-size: 0.75rem;
    }

    .no-tools-title {
        font-size: 2rem;
    }

    .no-tools-description-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .no-tools-item {
        font-size: 1rem;
    }

    .no-tools-logo {
        max-width: 280px;
    }

    .no-tools-final {
        gap: 2rem;
        width: 90%;
    }

    .no-tools-conclusion {
        font-size: 1.25rem;
    }

    .floating-icon {
        display: none;
    }

    .floating-icon.explode:nth-child(1),
    .floating-icon.explode:nth-child(2),
    .floating-icon.explode:nth-child(3),
    .floating-icon.explode:nth-child(4),
    .floating-icon.explode:nth-child(5),
    .floating-icon.explode:nth-child(6),
    .floating-icon.explode:nth-child(7) {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 1;
    }

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

    .services-grid,
    .why-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-info-card {
        padding: 2rem;
        gap: 1.5rem;
    }

    .method-timeline::before {
        display: none;
    }

    .timeline-item {
        padding-left: 0;
        padding-top: 5rem;
    }

    .timeline-marker {
        left: 50%;
        transform: translateX(-50%);
    }

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

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

    .footer-nav {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container,
    .container-narrow {
        padding: 0 1.25rem;
    }

    .header-container {
        padding: 1rem 1.25rem;
    }

    .logo-img {
        height: 32px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    /* Mantém o layout de cards também para telas muito pequenas */
    .comparison-table td.feature-name {
        font-size: 0.95rem;
    }

    .comparison-table td:not(.feature-name)::before {
        font-size: 0.8rem;
    }

    .comparison-table .check-icon,
    .comparison-table .x-icon {
        width: 26px;
        height: 26px;
        font-size: 0.9rem;
    }

    .comparison-table .check-partial {
        font-size: 0.8rem;
    }

    .service-card,
    .why-card,
    .contact-info-card {
        padding: 1.5rem;
        gap: 1.25rem;
    }

    .contact-info-text h4 {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }

    .contact-info-text a,
    .contact-info-text p {
        font-size: 1rem;
    }

    .contact-icon {
        width: 44px;
        height: 44px;
    }
}

/* ===== Mobile Landscape Optimization ===== */
@media (max-height: 500px) and (orientation: landscape) {

    /* Header compacto */
    .header-container {
        padding: 0.5rem 1.25rem;
    }

    /* Hero sem altura forçada */
    .hero {
        min-height: auto;
        padding: 3.5rem 1.5rem 1.5rem;
    }

    .hero-container {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: clamp(0.95rem, 1.8vw, 1.125rem);
        margin-bottom: 1.5rem;
    }

    .hero-clients {
        padding: 1rem 1.5rem 1.5rem;
    }

    /* Seções com padding reduzido */
    .section,
    .section-pillars,
    .section-statement,
    .section-comparison {
        padding: 2rem 0;
    }

    .section-header {
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 3.5vw, 2rem);
    }

    /* No-Tools sem 100vh */
    .section-no-tools {
        min-height: auto;
        padding: 3rem 1.5rem;
    }

    .no-tools-title {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
    }

    .no-tools-description-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem 2rem;
    }

    /* Workflow / Phases */
    .phase-info {
        position: static;
    }

    .phase-row {
        padding: 2rem 0;
    }

    .phase-row-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Menu mobile otimizado */
    .nav-menu {
        max-height: calc(100vh - 50px);
    }

    .nav-menu li {
        padding: 8px 24px;
    }

    /* Footer comprimido */
    .footer {
        padding: 1.5rem 0 2rem;
    }
}

/* ===== Dark Page Variant (Product Pages) ===== */
body.page-dark {
    background-color: var(--black);
    color: var(--white);
}

body.page-dark h1,
body.page-dark h2,
body.page-dark h3,
body.page-dark h4,
body.page-dark h5,
body.page-dark h6 {
    color: var(--white);
}

body.page-dark .header {
    background: transparent;
}

body.page-dark .header.scrolled {
    background: rgba(10, 10, 10, 1);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

body.page-dark .nav-menu > li > a {
    color: rgba(255, 255, 255, 0.85);
}

body.page-dark .nav-menu > li > a:hover {
    color: var(--white);
}

body.page-dark .nav-toggle span {
    background: var(--white);
}

body.page-dark .footer {
    background-color: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

body.page-dark .footer-nav a,
body.page-dark .footer-address p {
    color: rgba(255, 255, 255, 0.7);
}

body.page-dark .footer-nav a:hover {
    color: var(--lime);
}

body.page-dark .footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   Product Pages – Shared Styles
   ======================================== */

/* Accent utility classes */
.accent { color: #ccff00; }
.bg-accent { background: #ccff00; color: #000; }
.accent-color { color: #ccff00; }
.bg-accent-color { background-color: #ccff00; }

/* Glass effect */
.glass {
    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

/* Section title with underline decoration */
.section-title-decorated {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title-decorated::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #ccff00;
    border-radius: 2px;
}

/* Hero background base (background-image set per page) */
.hero-background-image {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    padding-top: 8rem;
    padding-bottom: 6rem;
    margin-top: 0;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
}

.hero-background-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.70);
    z-index: 1;
    pointer-events: none;
}

/* Appear-up animation */
.appear-up {
    transform: translateY(8px);
    opacity: 0;
    transition: all .6s cubic-bezier(.2, .9, .2, 1);
}

.appear-up.show {
    transform: translateY(0);
    opacity: 1;
}

/* CTA button hover */
.cta-button {
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    background-color: #ffffff;
    color: #000000;
    box-shadow: 0 0 15px rgba(204, 255, 0, 0.5), 0 0 5px rgba(204, 255, 0, 0.3);
}

/* Scroll arrow */
.scroll-arrow {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-arrow.hidden {
    opacity: 0;
    pointer-events: none;
}

.scroll-arrow svg {
    width: 2.5rem;
    height: 2.5rem;
    color: #ccff00;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.scroll-arrow:hover svg {
    color: #ffffff;
    transform: translateY(5px);
}
