/*
Theme Name: IQTRANK
Theme URI: https://iqtrank.com/
Description: Tema WordPress premium, moderno e ultra responsivo. Focado em alta conversão de leads e aquisição de clientes com estética Dark SaaS premium, detalhes em laranja neon e efeitos visuais avançados.
Version: 1.0.0
Author: IQTRANK
Author URI: https://iqtrank.com/
Text Domain: iqtrank
*/

/* ----------------------------------------------------
   1. SYSTEM DESIGN & CONSTANTS (CSS VARIABLES)
   ---------------------------------------------------- */
:root {
    --bg-dark: #030712; /* Deep gray-950 */
    --bg-dark-rgb: 3, 7, 18;
    --bg-surface: #0b0f19;
    --bg-surface-hover: #121826;
    
    /* Premium Orange Palette */
    --primary: #ff6c22; /* orange-500 */
    --primary-light: #ff9f43; /* orange-400 */
    --primary-rgb: 255, 108, 34;
    --primary-gradient: linear-gradient(135deg, #ff9f43 0%, #ff6c22 100%);
    --primary-glow: rgba(var(--primary-rgb), 0.4);
    
    --text-primary: #ffffff;
    --text-secondary: #d1d5db; /* text-gray-300 - Brighter for higher contrast */
    --text-muted: #6b7280; /* text-gray-500 */
    
    --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    
    --border-glass: rgba(255, 255, 255, 0.12); /* Brighter glass outline */
    --bg-glass: rgba(13, 18, 30, 0.85); /* Solid premium backing */
}

/* ----------------------------------------------------
   2. RESET & BASE STYLES
   ---------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
}

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

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

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

/* Custom Premium Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #111827;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Typography Headings */
h1, h2, h3, h4 {
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

/* Section Common Styles */
.section-padding {
    padding: 100px 24px;
}

.container-width {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-light);
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* ----------------------------------------------------
   3. HEADER / NAVIGATION (ORANGE REBRAND)
   ---------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    background: rgba(3, 7, 18, 0.95);
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Design */
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
}

.logo-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: white;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.logo-text {
    font-weight: 800;
}

.logo-text span {
    color: var(--primary-light);
}

/* Menu Items Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

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

.nav-menu a {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    padding: 8px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-light);
    transition: var(--transition-smooth);
}

.nav-menu a:hover,
.nav-menu .current-menu-item a {
    color: var(--text-primary);
}

.nav-menu .current-menu-item a {
    color: var(--primary-light);
}

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

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

/* Header CTAs */
.header-cta-sec {
    background: transparent;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.header-cta-sec:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-light);
    transform: translateY(-1px);
}

.main-nav-cta {
    display: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* ----------------------------------------------------
   4. HERO SECTION (DARK SAAS / SPLIT DESIGN)
   ---------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 24px 80px;
    background-color: var(--bg-dark);
    overflow: hidden;
}

/* Background image & gradient overlays */
.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.18;
    filter: grayscale(1) brightness(0.5);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% -20%, rgba(var(--primary-rgb), 0.25) 0%, transparent 60%),
        radial-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        radial-gradient(circle at 10% 90%, rgba(17, 24, 39, 0.8) 0%, transparent 50%),
        linear-gradient(180deg, rgba(var(--bg-dark-rgb), 0.6) 0%, rgba(var(--bg-dark-rgb), 0.98) 100%);
    background-size: 100% 100%, 28px 28px, 100% 100%, 100% 100%;
    z-index: 2;
}

/* Content Area */
.hero-container {
    position: relative;
    z-index: 10;
    max-width: 1140px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Subtitle Pill Badge */
.hero-badge-container {
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-light);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 10px var(--primary-light);
    animation: pulseGlow 2s infinite;
}

/* Hook Subtitle */
.hero-hook {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    max-width: 800px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

/* Main Heading */
.hero-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    max-width: 960px;
}

.hero-title span.accent-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    text-shadow: 0 0 40px rgba(var(--primary-rgb), 0.15);
}

/* Description Text */
.hero-description {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 880px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

/* Button Group */
.hero-actions-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 60px;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.hero-actions {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Primary Orange Button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-gradient);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 20px 40px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.35);
    transition: var(--transition-smooth);
}

.btn-primary svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
    transition: var(--transition-fast);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px var(--primary-glow);
    background: linear-gradient(135deg, #ffb061 0%, #e05315 100%);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

/* Objection Breaker Label */
.objection-breaker {
    font-size: 0.775rem;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.objection-breaker::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #ef4444; /* Alert red */
    border-radius: 50%;
    box-shadow: 0 0 6px #ef4444;
}

/* Bullets Filter Grid (bottom of hero) */
.hero-bullets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    text-align: left;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

.bullet-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
}

.bullet-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(var(--primary-rgb), 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.bullet-img-wrapper {
    width: 100%;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid var(--border-glass);
    background-color: var(--bg-surface);
}

.bullet-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.bullet-card:hover .bullet-img-wrapper img {
    transform: scale(1.06);
}

.bullet-card h2 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.bullet-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ----------------------------------------------------
   4.5. CLIENTS LOGOS SECTION
   ---------------------------------------------------- */
.clients-section {
    padding: 50px 24px;
    background-color: #040812;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    position: relative;
    z-index: 10;
}

.clients-title-small {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.clients-grid-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    opacity: 0.9;
}

.client-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 10px;
    transition: var(--transition-smooth);
}

.client-logo-wrapper:hover {
    transform: translateY(-3px);
}

.client-logo-wrapper img {
    max-height: 32px;
    width: auto;
    filter: grayscale(1) brightness(0.85) contrast(1.2);
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.client-logo-wrapper img[alt="LeveLimpo"] {
    max-height: 78px !important;
}

.client-logo-wrapper img[alt="Kelle Studio Express"] {
    max-height: 58px !important;
}

.client-logo-wrapper img[alt="Mobisig"] {
    max-height: 26px !important;
}

.client-logo-wrapper img[alt="Piemonte Plast"] {
    max-height: 42px !important;
}

.client-logo-wrapper:hover img {
    filter: grayscale(0) brightness(1) contrast(1);
    opacity: 1;
}

.client-logo-placeholder {
    font-size: 0.85rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1.5px;
    transition: var(--transition-smooth);
}

.client-logo-wrapper:hover .client-logo-placeholder {
    color: var(--primary-light);
    text-shadow: 0 0 10px rgba(var(--primary-rgb), 0.4);
}

@media (max-width: 768px) {
    .clients-section {
        padding: 40px 16px;
    }
    .clients-grid-flex {
        gap: 20px;
    }
    .client-logo-wrapper {
        min-width: 120px;
        height: 44px;
    }
}

/* Light mode adjustments for clients section */
.light-section.clients-section {
    border-top: 1px solid rgba(15, 23, 42, 0.08) !important;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08) !important;
}

.light-section .clients-title-small {
    color: #64748b !important;
}

.light-section .client-logo-wrapper {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.light-section .client-logo-wrapper:hover {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.light-section .client-logo-placeholder {
    color: rgba(15, 23, 42, 0.3) !important;
}

.light-section .client-logo-wrapper img {
    filter: grayscale(1) brightness(0.2) contrast(1.2) !important;
    opacity: 0.55 !important;
}

.light-section .client-logo-wrapper:hover img {
    filter: grayscale(0) brightness(1) contrast(1) !important;
    opacity: 1 !important;
}

/* ----------------------------------------------------
   5. AGITATION SECTION (PAS CONTRAST GRID)
   ---------------------------------------------------- */
.agitation-section {
    position: relative;
    background: 
        radial-gradient(circle at 80% 20%, rgba(var(--primary-rgb), 0.05) 0%, transparent 50%),
        radial-gradient(rgba(255, 255, 255, 0.008) 1px, transparent 1px),
        #02040a;
    background-size: 100% 100%, 32px 32px, 100% 100%;
}

.agitation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.agitation-card {
    border-radius: 24px;
    padding: 48px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Side 1: Vitrine Morta (Greyed/Red Alert vibe) */
.card-dead {
    background: rgba(18, 20, 30, 0.75);
    border: 1px solid rgba(239, 68, 68, 0.25); /* light red border */
}

.card-dead::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: #ef4444;
}

.card-dead .card-header-badge {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

/* Side 2: Infraestrutura Inteligente (Orange Glow vibe) */
.card-smart {
    background: rgba(var(--primary-rgb), 0.04);
    border: 1px solid rgba(var(--primary-rgb), 0.35);
    box-shadow: 0 0 40px rgba(var(--primary-rgb), 0.08);
}

.card-smart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-gradient);
}

.card-smart .card-header-badge {
    color: var(--primary-light);
    background: rgba(var(--primary-rgb), 0.1);
}

.card-header-badge {
    align-self: flex-start;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.agitation-card h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.agitation-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.agitation-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.agitation-list li svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.card-dead .agitation-list svg {
    color: #ef4444;
}

.card-smart .agitation-list svg {
    color: #10b981; /* Success Green */
}

/* ----------------------------------------------------
   6. METODOLOGIA SECTION (CONNECTED HORIZONTAL JOURNEY)
   ---------------------------------------------------- */
.methodology-section {
    position: relative;
    background: 
        radial-gradient(circle at 20% 50%, rgba(var(--primary-rgb), 0.04) 0%, transparent 60%),
        radial-gradient(rgba(255, 255, 255, 0.008) 1px, transparent 1px),
        #030712;
    background-size: 100% 100%, 32px 32px, 100% 100%;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 40px;
    position: relative;
}

.methodology-card {
    position: relative;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 36px 28px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
}

.methodology-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(var(--primary-rgb), 0.25);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 25px rgba(var(--primary-rgb), 0.08);
}

/* Horizontal connectors on large screens */
@media (min-width: 1024px) {
    .methodology-card:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 35%;
        right: -24px;
        width: 16px;
        height: 2px;
        background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
        z-index: 10;
        box-shadow: 0 0 8px var(--primary);
    }
}

.step-indicator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--primary-rgb), 0.1);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    color: var(--primary-light);
    font-size: 0.8rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: center;
    margin-bottom: 26px;
}

.methodology-visual {
    width: 100%;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    color: var(--primary-light);
    transition: var(--transition-smooth);
}

.methodology-visual svg {
    height: 100%;
    width: auto;
    max-width: 100%;
    display: block;
}

.methodology-icon {
    overflow: visible;
    filter: drop-shadow(0 0 16px rgba(var(--primary-rgb), 0.12));
}

.methodology-icon * {
    transform-box: fill-box;
    transform-origin: center;
}

.icon-panel,
.phone-shell,
.browser-window,
.crm-core {
    fill: rgba(var(--primary-rgb), 0.04);
    stroke: var(--primary);
    stroke-width: 2.5;
}

.icon-orbit,
.loop-ring {
    fill: none;
    stroke: rgba(var(--primary-rgb), 0.28);
    stroke-width: 1.5;
    stroke-dasharray: 4 7;
    animation: orbitSpin 8s linear infinite;
}

.intent-lens,
.phone-speaker,
.browser-top,
.page-line,
.loop-arrow,
.loop-arrow-head,
.crm-check {
    fill: none;
    stroke: var(--primary-light);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.intent-query {
    fill: none;
    stroke: #ffffff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 24;
    animation: queryScan 2.8s ease-in-out infinite;
}

.intent-query-short {
    stroke-dasharray: 16;
    animation-delay: 0.24s;
}

.signal-dot,
.data-node {
    fill: var(--primary-light);
    animation: dotPulse 2.4s ease-in-out infinite;
}

.dot-b {
    animation-delay: 0.35s;
}

.dot-c {
    animation-delay: 0.7s;
}

.phone-shell {
    animation: phoneFloat 3.6s ease-in-out infinite;
}

.feed-card,
.lead-card {
    fill: rgba(var(--primary-rgb), 0.14);
    stroke: var(--primary-light);
    stroke-width: 1.8;
}

.feed-card-one {
    animation: feedPulse 3s ease-in-out infinite;
}

.feed-card-two {
    animation: feedPulse 3s ease-in-out infinite 0.35s;
}

.heart-pop {
    fill: rgba(var(--primary-rgb), 0.22);
    stroke: var(--primary-light);
    stroke-width: 1.8;
    animation: heartRise 3.2s ease-in-out infinite;
}

.heart-two {
    animation-delay: 0.8s;
}

.window-dot.red {
    fill: #ef4444;
}

.window-dot.yellow {
    fill: #f59e0b;
}

.window-dot.green {
    fill: #10b981;
}

.page-line {
    stroke: rgba(255, 255, 255, 0.75);
    stroke-width: 3;
    stroke-dasharray: 36;
    animation: queryScan 3s ease-in-out infinite;
}

.line-two {
    stroke-dasharray: 26;
    animation-delay: 0.25s;
}

.cta-button {
    fill: var(--primary);
    animation: ctaPress 2.6s ease-in-out infinite;
}

.lead-card {
    animation: leadConfirm 2.6s ease-in-out infinite;
}

.cursor-path {
    fill: rgba(255, 255, 255, 0.9);
    stroke: var(--primary);
    stroke-width: 1.5;
    animation: cursorClick 2.6s ease-in-out infinite;
}

.loop-arrow,
.loop-arrow-head {
    stroke: var(--primary);
    stroke-dasharray: 68;
    animation: loopDraw 3.2s ease-in-out infinite;
}

.reverse,
.reverse-head {
    animation-delay: 0.45s;
}

.crm-core {
    fill: rgba(var(--primary-rgb), 0.16);
    animation: coreGlow 2.8s ease-in-out infinite;
}

.data-node {
    fill: #ffffff;
    stroke: var(--primary);
    stroke-width: 2;
}

.node-one {
    animation-delay: 0s;
}

.node-two {
    animation-delay: 0.25s;
}

.node-three {
    animation-delay: 0.5s;
}

.node-four {
    animation-delay: 0.75s;
}

.methodology-card:hover .methodology-visual {
    transform: translateY(-2px) scale(1.04);
    color: #ffffff;
}

.methodology-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.methodology-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Responsive configurations for methodology grid */
@media (max-width: 1023px) {
    .methodology-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .methodology-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .step-indicator {
        align-self: flex-start;
    }
    .methodology-visual {
        height: 81px;
        justify-content: flex-start;
        margin-bottom: 34px;
    }
}

@keyframes orbitSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes queryScan {
    0%, 100% {
        stroke-dashoffset: 24;
        opacity: 0.45;
    }
    45%, 70% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

@keyframes dotPulse {
    0%, 100% {
        opacity: 0.35;
        transform: scale(0.75);
    }
    50% {
        opacity: 1;
        transform: scale(1.25);
    }
}

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

@keyframes feedPulse {
    0%, 100% {
        opacity: 0.55;
        transform: translateY(0) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-2px) scale(1.04);
    }
}

@keyframes heartRise {
    0%, 100% {
        opacity: 0;
        transform: translateY(8px) scale(0.75);
    }
    35%, 70% {
        opacity: 1;
        transform: translateY(-2px) scale(1);
    }
}

@keyframes ctaPress {
    0%, 100% {
        opacity: 0.78;
        transform: scaleX(1);
    }
    45%, 62% {
        opacity: 1;
        transform: scaleX(1.08);
    }
}

@keyframes leadConfirm {
    0%, 100% {
        opacity: 0.55;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-4px);
    }
}

@keyframes cursorClick {
    0%, 100% {
        transform: translate(-7px, 7px) scale(0.92);
        opacity: 0.55;
    }
    45% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    60% {
        transform: translate(0, 0) scale(0.88);
        opacity: 1;
    }
}

@keyframes loopDraw {
    0%, 100% {
        stroke-dashoffset: 68;
        opacity: 0.55;
    }
    55%, 75% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

@keyframes coreGlow {
    0%, 100% {
        filter: drop-shadow(0 0 0 rgba(var(--primary-rgb), 0));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 12px rgba(var(--primary-rgb), 0.7));
        transform: scale(1.05);
    }
}

@media (prefers-reduced-motion: reduce) {
    .methodology-icon *,
    .methodology-card:hover .methodology-visual {
        animation: none !important;
        transform: none !important;
    }
}

/* ----------------------------------------------------
   7. DIFERENCIAIS SECTION (METRICS & CRM PARTNERS)
   ---------------------------------------------------- */
.differentials-section {
    position: relative;
    background: 
        radial-gradient(circle at 50% 50%, rgba(var(--primary-rgb), 0.05) 0%, transparent 60%),
        radial-gradient(rgba(255, 255, 255, 0.008) 1px, transparent 1px),
        #02040a;
    background-size: 100% 100%, 32px 32px, 100% 100%;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.metric-number {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    line-height: 1;
}

.metric-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.metric-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    max-width: 320px;
    margin: 0 auto;
}

/* Trust Badges & Integrations Partner Logo Styles */
.partners-wrapper {
    text-align: center;
    border-top: 1px solid var(--border-glass);
    padding-top: 80px;
}

.partners-title {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.partners-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.partner-logo-item {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-secondary);
    padding: 12px 24px;
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.01);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.partner-logo-item:hover {
    border-color: rgba(var(--primary-rgb), 0.2);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.partner-logo-item.highlight-partner {
    border-color: rgba(var(--primary-rgb), 0.3);
    background: rgba(var(--primary-rgb), 0.05);
    color: var(--primary-light);
}

.partner-logo-item svg {
    display: block;
    width: 150px;
    height: 36px;
}

.partner-logo-item.semrush-logo img {
    display: block;
    width: 150px;
    height: auto;
    max-height: 52px;
    object-fit: contain;
}

.partner-logo-item.meta-logo img {
    display: block;
    width: 140px;
    height: auto;
    max-height: 52px;
    object-fit: contain;
}

.partner-logo-item.google-logo img {
    display: block;
    width: 150px;
    height: auto;
    max-height: 52px;
    object-fit: contain;
}

.partner-logo-item.canva-logo img {
    display: block;
    width: 140px;
    height: auto;
    max-height: 52px;
    object-fit: contain;
}

.partner-logo-item.meta-logo svg,
.partner-logo-item.canva-logo svg {
    width: 140px;
}

.partner-logo-item.google-logo svg {
    width: 150px;
}

/* ----------------------------------------------------
   8. FAQ SECTION (INTERACTIVE ACCORDION)
   ---------------------------------------------------- */
.faq-section {
    position: relative;
    background: 
        radial-gradient(circle at 90% 80%, rgba(var(--primary-rgb), 0.05) 0%, transparent 60%),
        radial-gradient(rgba(255, 255, 255, 0.008) 1px, transparent 1px),
        #030712;
    background-size: 100% 100%, 32px 32px, 100% 100%;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(var(--primary-rgb), 0.15);
}

.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 30px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.faq-icon-box {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.faq-icon-box svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    transition: var(--transition-smooth);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content-inner {
    padding: 0 30px 24px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Active accordion styles (toggled via JS) */
.faq-item.active {
    border-color: rgba(var(--primary-rgb), 0.3);
    background: rgba(var(--primary-rgb), 0.01);
}

.faq-item.active .faq-icon-box {
    background: var(--primary-gradient);
    border-color: transparent;
    color: #fff;
}

.faq-item.active .faq-icon-box svg {
    transform: rotate(135deg);
}

/* ----------------------------------------------------
   9. UTILITIES & ANIMATIONS
   ---------------------------------------------------- */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.6);
    }
    70% {
        transform: scale(1.15);
        box-shadow: 0 0 0 10px rgba(var(--primary-rgb), 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0);
    }
}

/* ----------------------------------------------------
   9.5. LIGHT SECTION UTILITY & CONTENT STYLES
   ---------------------------------------------------- */
.light-section {
    background-color: #f8fafc !important; /* Premium off-white slate-50 */
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(var(--primary-rgb), 0.05) 0%, transparent 60%),
        radial-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px) !important;
    background-size: 100% 100%, 32px 32px !important;
    color: #0f172a !important; /* slate-900 */
}

/* Light Section Header overrides */
.light-section .section-tag {
    color: var(--primary) !important;
}

.light-section .section-title {
    color: #0f172a !important;
}

.light-section .section-desc {
    color: #475569 !important; /* slate-600 */
}

/* Agitation Section Specifics in Light Mode */
.light-section.agitation-section {
    background: 
        radial-gradient(circle at 80% 20%, rgba(var(--primary-rgb), 0.05) 0%, transparent 50%),
        radial-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
        #f8fafc !important;
    background-size: 100% 100%, 32px 32px, 100% 100% !important;
}

.light-section .agitation-card {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.light-section .card-dead {
    background: #ffffff !important;
    border: 1px solid rgba(239, 68, 68, 0.25) !important;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04) !important;
}

.light-section .card-dead h3 {
    color: #0f172a !important;
}

.light-section .card-dead .agitation-list li {
    color: #334155 !important;
}

.light-section .card-smart {
    background: #ffffff !important;
    border: 1px solid rgba(var(--primary-rgb), 0.3) !important;
    box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.06), 0 0 20px rgba(var(--primary-rgb), 0.02) !important;
}

.light-section .card-smart h3 {
    color: #0f172a !important;
}

.light-section .card-smart .agitation-list li {
    color: #334155 !important;
}

/* Differentials Section Specifics in Light Mode */
.light-section.differentials-section {
    background: 
        radial-gradient(circle at 50% 50%, rgba(var(--primary-rgb), 0.05) 0%, transparent 60%),
        radial-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
        #f8fafc !important;
    background-size: 100% 100%, 32px 32px, 100% 100% !important;
}

.light-section .metric-card {
    background: #ffffff !important;
    border: 1px solid rgba(15, 23, 42, 0.06) !important;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04) !important;
}

.light-section .metric-label {
    color: #0f172a !important;
}

.light-section .metric-desc {
    color: #475569 !important;
}

.light-section .partners-wrapper {
    border-top: 1px solid rgba(15, 23, 42, 0.08) !important;
    padding-top: 54px;
}

.light-section .partners-title {
    color: #64748b !important; /* slate-500 */
    margin-bottom: 24px;
}

.light-section .partner-logo-item {
    background: #ffffff !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    color: #334155 !important;
    min-height: 72px;
    padding: 16px 26px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.035) !important;
}

.light-section .partner-logo-item:hover {
    border-color: rgba(var(--primary-rgb), 0.25) !important;
    color: #0f172a !important;
    box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.06) !important;
}

.light-section .partner-logo-item.highlight-partner {
    border-color: rgba(var(--primary-rgb), 0.3) !important;
    background: rgba(var(--primary-rgb), 0.05) !important;
    color: var(--primary) !important;
}

.light-section .partner-logo-item svg {
    color: #0f172a;
}

/* ----------------------------------------------------
   9.6. DARK SECTION UTILITY & CONTENT STYLES
   ---------------------------------------------------- */
.dark-section {
    position: relative;
    background: 
        radial-gradient(circle at 50% 50%, rgba(var(--primary-rgb), 0.15) 0%, transparent 60%),
        linear-gradient(rgba(3, 7, 18, 0.88), rgba(3, 7, 18, 0.88)), 
        url('assets/images/fundo_iqt.webp') center/cover no-repeat !important;
    background-size: 100% 100%, 100% 100%, cover !important;
    color: var(--text-primary) !important;
    z-index: 1;
}

/* Ensure methodology-section retains its specific glow layout but adds the image background */
.methodology-section.dark-section {
    background: 
        radial-gradient(circle at 20% 50%, rgba(var(--primary-rgb), 0.18) 0%, transparent 60%),
        linear-gradient(rgba(3, 7, 18, 0.88), rgba(3, 7, 18, 0.88)), 
        url('assets/images/fundo_iqt.webp') center/cover no-repeat !important;
    background-size: 100% 100%, 100% 100%, cover !important;
}

/* Ensure faq-section retains its specific glow layout but adds the image background */
.faq-section.dark-section {
    background: 
        radial-gradient(circle at 90% 80%, rgba(var(--primary-rgb), 0.18) 0%, transparent 60%),
        linear-gradient(rgba(3, 7, 18, 0.88), rgba(3, 7, 18, 0.88)), 
        url('assets/images/fundo_iqt.webp') center/cover no-repeat !important;
    background-size: 100% 100%, 100% 100%, cover !important;
}

/* Ensure content on dark section retains high readability */
.dark-section .section-title {
    color: var(--text-primary) !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.dark-section .section-desc {
    color: var(--text-secondary) !important;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

/* ----------------------------------------------------
   10. RESPONSIVE DESIGN (MEDIA QUERIES)
   ---------------------------------------------------- */
@media (max-width: 991px) {
    .menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(3, 7, 18, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid var(--border-glass);
        z-index: 1000;
        padding: 100px 40px 40px;
        transition: var(--transition-smooth);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
        width: 100%;
        margin-bottom: 40px;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
    }
    
    .header-desktop-cta {
        display: none;
    }
    
    .main-nav-cta {
        display: flex !important;
        width: 100%;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Hero Bullets */
    .hero-bullets-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Agitation */
    .agitation-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 16px;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        margin-bottom: 46px;
    }

    .partners-wrapper {
        padding-top: 42px;
    }

    .partners-flex {
        gap: 16px;
    }

    .partner-logo-item {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .methodology-timeline {
        left: 20px;
    }
    
    .methodology-step {
        padding-left: 50px;
    }
    
    .step-number {
        left: -4px;
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }
    
    .hero-actions {
        width: 100%;
        max-width: 320px;
    }
    
    .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
    }
}

/* ----------------------------------------------------
   11. LGPD COOKIE CONSENT BANNER
   ---------------------------------------------------- */
.lgpd-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 99999;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(11, 15, 25, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    animation: lgpdSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.lgpd-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.lgpd-content p {
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.lgpd-content p a {
    color: var(--primary);
    text-decoration: underline;
    transition: var(--transition-smooth);
}

.lgpd-content p a:hover {
    color: var(--primary-light);
}

.lgpd-btn {
    background: var(--primary);
    color: #ffffff;
    border: none;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition-smooth);
}

.lgpd-btn:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
}

.lgpd-banner.lgpd-fade-out {
    animation: lgpdFadeOut 0.4s ease forwards;
}

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

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

@media (max-width: 640px) {
    .lgpd-banner {
        bottom: 16px;
        left: 16px;
        right: 16px;
        padding: 16px;
    }
    
    .lgpd-content {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        text-align: center;
    }
    
    .lgpd-btn {
        width: 100%;
        padding: 10px;
    }
}

.footer-socials a:hover {
    color: var(--primary) !important;
    transform: translateY(-2px);
}

.footer-contact a:hover,
.footer-link:hover {
    color: var(--primary) !important;
}

/* ----------------------------------------------------
   12. PRIVACY POLICY PAGE
   ---------------------------------------------------- */
.privacy-page-wrapper {
    position: relative;
    min-height: 100vh;
    background-color: var(--bg-dark);
    padding: 160px 24px 100px;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(var(--primary-rgb), 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(var(--primary-rgb), 0.05) 0%, transparent 45%),
        radial-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 28px 28px;
}

.privacy-container {
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
}

.privacy-hero {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.privacy-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(var(--primary-rgb), 0.08);
    border: 1px solid rgba(var(--primary-rgb), 0.25);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.privacy-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.privacy-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.privacy-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
}

/* Sidebar Navigation */
.privacy-sidebar {
    position: sticky;
    top: 100px;
    background: rgba(11, 15, 25, 0.6);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 10;
}

.privacy-sidebar-title {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.privacy-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.privacy-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 10px 12px;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.privacy-nav-link span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 700;
    width: 20px;
}

.privacy-nav-link:hover,
.privacy-nav-link.active {
    background: rgba(var(--primary-rgb), 0.08);
    color: #ffffff;
    padding-left: 16px;
}

.privacy-nav-link:hover span,
.privacy-nav-link.active span {
    color: var(--primary-light);
}

/* Main Content Area */
.privacy-content-card {
    background: rgba(11, 15, 25, 0.4);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 48px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.privacy-intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.privacy-section-block {
    scroll-margin-top: 120px;
    margin-bottom: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.privacy-section-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.privacy-section-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.privacy-section-heading span {
    font-size: 1.25rem;
    color: var(--primary-light);
    font-weight: 800;
}

.privacy-section-block p {
    font-size: 0.975rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.privacy-section-block p strong {
    color: #ffffff;
}

.privacy-section-block ul {
    list-style: none;
    margin: 20px 0 20px 10px;
}

.privacy-section-block li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 0.975rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.privacy-section-block li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: var(--primary-light);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--primary-light);
}

@media (max-width: 992px) {
    .privacy-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .privacy-sidebar {
        position: static;
        width: 100%;
    }
    
    .privacy-content-card {
        padding: 30px 20px;
    }
}

/* ----------------------------------------------------
   13. FOOTER STYLING
   ---------------------------------------------------- */
.site-footer {
    background-color: #030406;
    border-top: 1px solid var(--border-glass);
    padding: 40px 24px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 1.25rem;
    color: #fff;
    letter-spacing: -0.5px;
}

.footer-logo span {
    color: var(--primary);
}

.footer-socials {
    display: flex;
    gap: 16px;
    margin: 8px 0;
}

.footer-socials a {
    color: var(--text-muted);
    transition: color 0.3s, transform 0.3s;
    display: inline-flex;
}

.footer-contact {
    display: flex;
    gap: 24px;
    font-size: 0.85rem;
    margin: 8px 0 16px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-contact a {
    color: var(--text-muted);
    transition: color 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-contact a svg {
    color: var(--text-muted);
    transition: color 0.3s;
}

.footer-contact a:hover svg {
    color: var(--primary) !important;
}

/* 14. AGITATION SECTION UTILITIES */
.agitation-card-desc {
    margin-bottom: 24px;
    font-size: 0.95rem;
}

/* ----------------------------------------------------
   15. HERO SPLIT LAYOUT & DIAGNOSTIC FORM
   ---------------------------------------------------- */
.hero-split {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    width: 100%;
    align-items: center;
    text-align: left;
    margin-bottom: 60px;
    position: relative;
    z-index: 10;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

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

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

.hero-left-objections {
    margin-top: 10px;
}

/* Form Wrapper & Card */
.hero-form-wrapper {
    width: 100%;
}

.hero-form-card {
    background: rgba(13, 18, 30, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.hero-form-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(var(--primary-rgb), 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.form-card-header {
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.form-card-header h2 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-primary);
    line-height: 1.3;
}

.form-card-header p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.hero-form-card form {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition-fast);
}

.input-wrapper input,
.input-wrapper select {
    width: 100%;
    background: rgba(3, 7, 18, 0.6);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 14px 16px 14px 48px;
    color: #ffffff;
    font-family: var(--font-main);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-smooth);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Custom styles for select dropdown arrow */
.input-wrapper select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 48px;
}

.input-wrapper input:focus,
.input-wrapper select:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.15);
    background: rgba(3, 7, 18, 0.8);
}

.input-wrapper input:focus + .input-icon,
.input-wrapper select:focus + .input-icon {
    color: var(--primary-light);
}

/* Dropdown option styles in dark mode */
.input-wrapper select option {
    background-color: var(--bg-surface);
    color: #ffffff;
}

/* Placeholder color styling for dropdown */
.input-wrapper select:invalid,
.input-wrapper select option[value=""][disabled] {
    color: var(--text-muted);
}

.form-submit-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 30px;
    font-size: 0.9rem;
    margin-top: 8px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.form-submit-btn span {
    transition: var(--transition-fast);
}

.form-submit-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
    transition: var(--transition-fast);
}

.form-submit-btn:hover svg {
    transform: translateX(4px);
}

.form-privacy-note {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.4;
    margin-top: 4px;
}

/* Success State styling */
.form-success-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 10px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.success-icon-wrapper {
    width: 56px;
    height: 56px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
}

.success-icon-wrapper svg {
    width: 28px;
    height: 28px;
}

.form-success-message h4 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.form-success-message p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Loader styling */
.btn-loader {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.8s linear infinite;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -10px;
    margin-top: -10px;
}

/* Responsive configurations for split hero */
@media (max-width: 991px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-content .hero-title,
    .hero-content .hero-description {
        text-align: center;
    }
    
    .hero-form-card {
        padding: 30px 20px;
        max-width: 480px;
        margin: 0 auto;
    }
}

/* ----------------------------------------------------
   16. THANK YOU PAGE (/OBRIGADO) STYLING
   ---------------------------------------------------- */
.thankyou-page-wrapper {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 24px 100px;
    background-color: var(--bg-dark);
    overflow: hidden;
    background: 
        radial-gradient(circle at 50% 30%, rgba(var(--primary-rgb), 0.18) 0%, transparent 60%),
        linear-gradient(rgba(3, 7, 18, 0.95), rgba(3, 7, 18, 0.95)), 
        url('assets/images/fundo_iqt.webp') center/cover no-repeat !important;
    background-size: 100% 100%, 100% 100%, cover !important;
}

.thankyou-container {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.thankyou-card {
    background: rgba(13, 18, 30, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 50px 40px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.thankyou-badge-container {
    margin-bottom: 24px;
}

.thankyou-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #10b981;
}

.thankyou-badge .badge-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
}

.thankyou-icon-wrapper {
    width: 72px;
    height: 72px;
    background: rgba(255, 108, 34, 0.1);
    border: 1px solid rgba(255, 108, 34, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 28px;
    box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.15);
}

.thankyou-icon-wrapper svg {
    width: 36px;
    height: 36px;
}

.thankyou-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 20px;
}

.thankyou-title span.accent-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.thankyou-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

.thankyou-btn {
    width: auto;
    min-width: 280px;
    display: inline-flex;
    justify-content: center;
    padding: 18px 40px;
    font-size: 0.95rem;
}

.thankyou-footer-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 20px;
}

@media (max-width: 640px) {
    .thankyou-card {
        padding: 40px 24px;
    }
}
