/* ============================================
   VENDENDO COM TRAFEGO PAGO — Home Site
   Complete Design System
   Base: Google Ads site + Meta Ads + Consultoria
   ============================================ */

/* =============================================
   1. CSS VARIABLES
   ============================================= */
:root {
    /* Base palette */
    --bg-color: #0f1729;
    --card-bg: #1a2236;
    --card-bg-hover: #222d45;
    --primary-color: #007bff;
    --accent-color: #28a745;
    --text-color: #f0f2f7;
    --text-muted: #b4bdd0;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.08);
    --gradient-primary: linear-gradient(135deg, #007bff 0%, #00c6ff 100%);
    --gradient-text: linear-gradient(90deg, #ffffff 0%, #007bff 50%, #28a745 100%);
    --gold: #FFDE21;
    --google-blue: #4285F4;
    --google-red: #EA4335;
    --google-yellow: #FBBC05;
    --google-green: #34A853;
    --transition: all 0.3s ease;
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.3);

    /* Meta / Instagram */
    --meta-blue: #0668E1;
    --instagram-pink: #E1306C;
    --instagram-orange: #F77737;
    --instagram-yellow: #FCAF45;
    --gradient-meta: linear-gradient(135deg, #0668E1 0%, #E1306C 50%, #FCAF45 100%);
    --gradient-instagram: linear-gradient(135deg, #E1306C 0%, #F77737 50%, #FCAF45 100%);
    --gradient-gold: linear-gradient(135deg, #FFDE21 0%, #E5C700 100%);
}

/* =============================================
   2. RESET & BASE
   ============================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul, ol {
    list-style: none;
}

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

button {
    border: none;
    outline: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

input, textarea, select {
    font-family: 'Inter', sans-serif;
    outline: none;
}

/* =============================================
   3. UTILITY CLASSES
   ============================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    margin-bottom: 16px;
}

.section-header h2 span {
    color: var(--primary-color);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

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

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

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

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

.gold-text {
    color: var(--gold);
    -webkit-text-fill-color: var(--gold);
}

.hero h1 .gold-text {
    background: linear-gradient(90deg, #FFDE21 0%, #FFF8DC 15%, #FFDE21 30%, #E5C700 50%, #FFDE21 70%, #FFF8DC 85%, #FFDE21 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gold-shimmer 3s ease-in-out infinite;
}

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

/* =============================================
   4. BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.3);
    animation: btn-glow-pulse 2.5s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 123, 255, 0.5);
}

.btn-outline {
    background: rgba(0, 123, 255, 0.08);
    color: var(--white);
    border: 2px solid rgba(0, 123, 255, 0.6);
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.1);
}

.btn-outline:hover {
    background: rgba(0, 123, 255, 0.15);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 0 30px rgba(0, 123, 255, 0.2);
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    background: transparent;
}

.btn-outline-light:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.btn-navigate {
    background: linear-gradient(135deg, #FFDE21, #FFDE21);
    color: #0a0a0f;
    font-weight: 700;
    border: none;
    box-shadow: 0 4px 20px rgba(245, 166, 35, 0.3);
}

.btn-navigate:hover {
    background: linear-gradient(135deg, #FFDE21, #FFDE21);
    color: #0a0a0f;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245, 166, 35, 0.5);
}

.btn-lg {
    padding: 18px 48px;
    font-size: 1.05rem;
    letter-spacing: 1px;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

/* =============================================
   5. HEADER
   ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.3s ease, box-shadow 0.4s ease;
}

.header.scrolled {
    background: rgba(5, 5, 7, 0.8);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    border-bottom: 1px solid rgba(0, 123, 255, 0.1);
    box-shadow: 0 1px 30px rgba(0, 123, 255, 0.05);
    padding: 10px 0;
}

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

.header-logo img {
    height: 44px;
    width: auto;
}

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

.header-nav a {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

/* Nav Sliding Underline */
.header-nav > a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

.nav-dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0;
    transition: color 0.3s;
}

.nav-dropdown .dropdown-toggle:hover {
    color: var(--white);
}

.nav-dropdown .dropdown-toggle svg {
    width: 12px;
    height: 12px;
    transition: transform 0.3s;
}

.nav-dropdown:hover .dropdown-toggle svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: -16px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 8px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.3s ease;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

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

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.dropdown-menu a:hover {
    background: var(--glass);
    color: var(--white);
}

.header-cta .btn {
    padding: 10px 24px;
    font-size: 0.85rem;
}

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

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 23, 41, 0.97);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

.mobile-menu a:hover {
    color: var(--primary-color);
}

.mobile-menu .btn {
    margin-top: 16px;
}

/* =============================================
   6. HERO
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(0, 123, 255, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 80% 20%, rgba(40, 167, 69, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

/* Grid overlay — Living Grid Pulse */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 123, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 123, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    animation: grid-shift 20s linear infinite;
    mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 30%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    color: var(--google-blue);
}

/* Hero Badge Shimmer */
.hero-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.06) 50%, transparent 100%);
    animation: badge-shimmer 4s ease-in-out infinite;
    pointer-events: none;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero h1 .gold-text {
    display: inline;
}

.hero p.hero-sub {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 620px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

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

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stat .value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
}

.hero-stat .label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Glow effect */
.hero-glow {
    position: absolute;
    top: 20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: pulse-glow 4s ease-in-out infinite;
}

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

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 4px rgba(40, 167, 69, 0); }
}

/* =============================================
   7. AI DIFFERENTIALS (Google Ads style)
   ============================================= */
.ai-section {
    background: linear-gradient(180deg, var(--bg-color) 0%, rgba(0, 123, 255, 0.03) 50%, var(--bg-color) 100%);
}

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

.ai-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.06);
    border-left: 3px solid var(--primary-color);
    border-radius: 16px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ai-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ai-card:hover {
    background: var(--card-bg-hover);
    transform: translateY(-6px);
    border-color: rgba(0, 123, 255, 0.3);
    border-left-color: var(--gold);
    box-shadow: 0 12px 40px rgba(0,123,255,0.12);
}

.ai-card:hover::before {
    opacity: 1;
}

.ai-card-icon,
.ai-card .card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0,123,255,0.25), rgba(0,198,255,0.1));
    border: 1px solid rgba(0,123,255,0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #5ba3ff;
    font-size: 1.8rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0,123,255,0.15);
}

.ai-card:hover .ai-card-icon,
.ai-card:hover .card-icon {
    background: linear-gradient(135deg, rgba(0,123,255,0.4), rgba(0,198,255,0.2));
    box-shadow: 0 6px 30px rgba(0,123,255,0.3);
    transform: scale(1.1) rotate(-5deg);
    border-color: rgba(0,123,255,0.5);
}

.ai-card-icon svg {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 2px 4px rgba(0,123,255,0.3));
}

.ai-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.ai-card p {
    font-size: 0.95rem;
    color: #b4bdd0;
    line-height: 1.7;
}

/* =============================================
   8. SERVICE CARDS
   ============================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    background: var(--card-bg-hover);
    transform: translateY(-4px);
    border-color: rgba(0, 123, 255, 0.2);
}

.service-card-icon {
    width: 56px;
    height: 56px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.service-card-icon svg {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex: 1;
}

.service-card .card-link {
    color: #FFDE21;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.service-card:hover .card-link {
    gap: 10px;
}

/* =============================================
   9. SERVICES MINI CARDS (Home — 5 Google Ads services)
   ============================================= */
.services-mini-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.service-mini-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.service-mini-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-mini-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0,123,255,0.25);
    box-shadow: 0 8px 30px rgba(0,123,255,0.1);
}

.service-mini-card:hover::after {
    opacity: 1;
}

.service-mini-card .mini-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(0,123,255,0.2), rgba(0,198,255,0.08));
    border: 1px solid rgba(0,123,255,0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #5ba3ff;
    transition: all 0.4s ease;
    box-shadow: 0 4px 16px rgba(0,123,255,0.1);
}

.service-mini-card:hover .mini-icon {
    background: linear-gradient(135deg, rgba(0,123,255,0.35), rgba(0,198,255,0.15));
    box-shadow: 0 6px 24px rgba(0,123,255,0.25);
    transform: scale(1.1) rotate(-5deg);
}

.service-mini-card .mini-icon svg {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 4px rgba(0,123,255,0.3));
}

.service-mini-card h3 {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.service-mini-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.mini-cta {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: auto;
    transition: letter-spacing 0.3s ease;
}

.service-mini-card:hover .mini-cta {
    letter-spacing: 1px;
}

/* =============================================
   10. FUNNEL CARDS (Meta Ads on Home)
   ============================================= */
.funnel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.funnel-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.funnel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-meta);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.funnel-card:hover {
    transform: translateY(-6px);
    border-color: rgba(225,48,108,0.3);
    box-shadow: 0 8px 30px rgba(225,48,108,0.1);
}

.funnel-card:hover::before {
    opacity: 1;
}

.funnel-card .funnel-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(225,48,108,0.2), rgba(252,175,69,0.1));
    border: 1px solid rgba(225,48,108,0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E1306C;
    margin-bottom: 16px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 16px rgba(225,48,108,0.1);
}

.funnel-card:hover .funnel-icon {
    background: linear-gradient(135deg, rgba(225,48,108,0.35), rgba(252,175,69,0.15));
    box-shadow: 0 6px 24px rgba(225,48,108,0.25);
    transform: scale(1.1) rotate(-5deg);
}

.funnel-card .funnel-icon svg {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 4px rgba(225,48,108,0.3));
}

.funnel-card .funnel-step {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.funnel-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.funnel-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.funnel-card .funnel-cta {
    color: #FFDE21;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.funnel-card:hover .funnel-cta {
    gap: 10px;
}

/* =============================================
   11. AI SECTION — Split Layout (Home)
   ============================================= */
.ai-split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ai-split-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 24px;
}

.ai-split-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.ai-point {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.ai-point-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(0, 123, 255, 0.1);
    border: 1px solid rgba(0, 123, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.ai-point-icon svg {
    width: 24px;
    height: 24px;
}

.ai-point-text h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.ai-point-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

.ai-note {
    border-left: 3px solid var(--primary-color);
    padding: 16px 20px;
    background: rgba(0, 123, 255, 0.04);
    border-radius: 0 12px 12px 0;
    margin-top: 32px;
}

.ai-note p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

.ai-visual {
    position: relative;
}

.ai-visual img {
    border-radius: 16px;
    border: 1px solid var(--border);
}

/* =============================================
   12. CONSULTING CARDS
   ============================================= */
.consulting-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.consulting-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.06);
    border-left: 3px solid var(--gold);
    border-radius: 16px;
    padding: 36px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.consulting-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.consulting-card:hover {
    background: var(--card-bg-hover);
    transform: translateY(-6px);
    border-color: rgba(255, 222, 33, 0.3);
    border-left-color: var(--gold);
    box-shadow: 0 12px 40px rgba(255,222,33,0.08);
}

.consulting-card:hover::before {
    opacity: 1;
}

.consulting-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.consulting-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.consulting-card .card-link {
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
    color: var(--gold);
}

.consulting-card:hover .card-link {
    gap: 10px;
}

.card-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.card-badge.pontual {
    background: rgba(255, 222, 33, 0.1);
    color: var(--gold);
    border: 1px solid rgba(255, 222, 33, 0.2);
}

.card-badge.recorrente {
    background: rgba(0, 123, 255, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(0, 123, 255, 0.2);
}

/* =============================================
   13. COMPARISON SECTION (Meta funnel vs just ads)
   ============================================= */
.comparison-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.comparison-wrong,
.comparison-right {
    padding: 20px 24px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.comparison-wrong {
    background: rgba(234, 67, 53, 0.06);
    border: 1px solid rgba(234, 67, 53, 0.15);
    color: rgba(255, 255, 255, 0.5);
}

.comparison-wrong .icon {
    color: #EA4335;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.comparison-right {
    background: rgba(40, 167, 69, 0.06);
    border: 1px solid rgba(40, 167, 69, 0.15);
    color: rgba(255, 255, 255, 0.85);
}

.comparison-right .icon {
    color: #28a745;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* =============================================
   14. METHODOLOGY
   ============================================= */
.methodology-section {
    background: linear-gradient(180deg, var(--bg-color) 0%, rgba(40, 167, 69, 0.03) 50%, var(--bg-color) 100%);
}

.methodology-steps {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.methodology-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 28px;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    opacity: 0.3;
}

.method-step {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.method-step:last-child {
    margin-bottom: 0;
}

.method-step-number {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: var(--card-bg);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    z-index: 1;
}

.method-step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.method-step-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* =============================================
   15. PLANS
   ============================================= */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.plan-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: visible;
}

.plan-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 123, 255, 0.3);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.plan-card.featured {
    border-color: var(--primary-color);
    border-width: 2px;
    box-shadow: 0 0 40px rgba(0, 123, 255, 0.15), 0 0 80px rgba(0, 123, 255, 0.05);
    background: linear-gradient(180deg, rgba(0, 123, 255, 0.06) 0%, var(--card-bg) 100%);
    padding-top: 24px;
    animation: featured-aura 3s ease-in-out infinite;
}

.plan-card.featured:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 50px rgba(0, 123, 255, 0.25), 0 0 100px rgba(0, 123, 255, 0.08);
}

.plan-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.plan-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.plan-price {
    margin-bottom: 24px;
}

.plan-price .currency {
    font-size: 1rem;
    color: var(--text-muted);
    vertical-align: super;
}

.plan-price .amount {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
}

.plan-price .period {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.plan-features {
    text-align: left;
    margin-bottom: 32px;
    flex: 1;
}

.plan-features li {
    padding: 12px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li svg {
    width: 18px;
    height: 18px;
    min-width: 18px;
    color: var(--accent-color);
    margin-top: 2px;
}

.plan-card .btn {
    width: 100%;
}

.plans-note {
    text-align: center;
    margin-top: 32px;
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* =============================================
   16. TESTIMONIALS
   ============================================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}

/* Testimonial Floating Quote */
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 8rem;
    font-family: 'Outfit', serif;
    color: rgba(0, 123, 255, 0.06);
    line-height: 1;
    pointer-events: none;
    animation: quote-float 6s ease-in-out infinite;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    color: var(--gold);
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
}

.testimonial-card blockquote {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author .avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-author .info .name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
}

.testimonial-author .info .role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* =============================================
   17. FAQ
   ============================================= */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--card-bg);
}

.faq-item.active {
    border-color: rgba(0, 123, 255, 0.3);
    box-shadow: -4px 0 0 0 var(--primary-color), 0 4px 20px rgba(0, 123, 255, 0.05);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s;
    font-family: 'Inter', sans-serif;
}

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

.faq-question svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* =============================================
   18. CONTACT FORM
   ============================================= */
.contact-section {
    background: linear-gradient(180deg, var(--bg-color) 0%, rgba(0, 123, 255, 0.03) 50%, var(--bg-color) 100%);
}

.contact-form {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--white);
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15), 0 0 20px rgba(0, 123, 255, 0.05);
}

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23a0a0a0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--card-bg);
    color: var(--white);
}

.contact-form .btn {
    align-self: center;
    min-width: 240px;
}

/* =============================================
   19. FOOTER
   ============================================= */
footer,
.footer {
    background: var(--card-bg);
    border-top: 1px solid var(--border);
    padding: 60px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 0.8fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-col h4 {
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.footer-col > p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 6px;
}

.footer-brand img {
    height: 36px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-col .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.footer-col .contact-item svg {
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin-top: 3px;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-logo {
    max-height: 36px;
    width: auto;
    margin-bottom: 16px;
}

.partner-badge-footer {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 123, 255, 0.1);
    border: 1px solid rgba(0, 123, 255, 0.2);
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 12px;
}

/* =============================================
   20. WHATSAPP FLOAT
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 9999;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

/* WhatsApp Ring Ping */
.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.4);
    animation: wa-ring 2s ease-out infinite;
    pointer-events: none;
}

/* =============================================
   21. SUBPAGE STYLES
   ============================================= */

/* Grid overlay for subpage heroes */
.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 123, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 123, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 30%, transparent 70%);
}

.subpage-hero {
    padding: 180px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.subpage-hero > .container {
    position: relative;
    z-index: 2;
}

.subpage-hero .hero-bg-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.subpage-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(0, 123, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.subpage-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.15;
}

.subpage-hero .subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 650px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.subpage-hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.subpage-hero .btn {
    margin-top: 8px;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.3);
}

.breadcrumb .current {
    color: var(--primary-color);
}

/* Explanation section */
.section-subpage {
    padding: 80px 0;
}

.section-subpage h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.section-subpage h2 .gradient-text-gold {
    background: linear-gradient(135deg, #FFDE21, #FFDE21, #E5C700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subpage p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.explanation-content {
    max-width: 800px;
    margin: 0 auto;
}

.explanation-content p {
    margin-bottom: 20px;
}

/* AI Cards Grid (subpages) */
.ai-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

/* Audience Grid */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.audience-item {
    text-align: center;
    padding: 32px 20px;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: border-color 0.3s;
}

.audience-item:hover {
    border-color: rgba(40, 167, 69, 0.3);
}

.audience-item .icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.audience-item h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.audience-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
}

/* Deliverables */
.deliverables-section {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 48px 40px;
    border: 1px solid var(--border);
    max-width: 700px;
    margin: 40px auto 0;
}

.deliverables-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.deliverables-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

.deliverables-list li:last-child {
    border-bottom: none;
}

.deliverables-list .check {
    color: #28a745;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* CTA section subpage */
.cta-section-subpage {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 123, 255, 0.04) 50%, transparent 100%);
    border-top: 1px solid var(--border);
}

.cta-section-subpage h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.cta-section-subpage p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 550px;
    margin: 0 auto 32px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Creative orientation — highlighted section */
.creative-orientation {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.06) 0%, rgba(40, 167, 69, 0.04) 100%);
    border: 1px solid rgba(0, 123, 255, 0.15);
    border-radius: 20px;
    padding: 48px 40px;
    max-width: 800px;
    margin: 40px auto 0;
}

.creative-orientation h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.creative-orientation p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.creative-orientation ul {
    list-style: none;
    padding: 0;
}

.creative-orientation ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-color);
    font-size: 0.95rem;
}

.creative-orientation ul li .check {
    color: var(--accent-color);
    flex-shrink: 0;
}

/* Subpage-specific extras */
.banner-sizes {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.size-badge {
    background: rgba(245, 166, 35, 0.08);
    border: 1px solid rgba(245, 166, 35, 0.15);
    border-radius: 8px;
    padding: 8px 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.channels-strip {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 30px 0 0;
}

.channel-badge {
    background: rgba(0, 123, 255, 0.08);
    border: 1px solid rgba(0, 123, 255, 0.15);
    border-radius: 100px;
    padding: 10px 22px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

/* =============================================
   22. META ACCENT OVERRIDES
   ============================================= */
.meta-page .btn-primary {
    background: var(--gradient-meta);
    box-shadow: 0 4px 20px rgba(6, 104, 225, 0.3);
    animation: none;
}

.meta-page .btn-primary:hover {
    box-shadow: 0 8px 30px rgba(6, 104, 225, 0.5);
}

.meta-page .subpage-hero::before {
    background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(6, 104, 225, 0.08) 0%, transparent 70%);
}

.meta-page .subpage-hero .hero-bg-glow {
    background: radial-gradient(circle, rgba(6, 104, 225, 0.12) 0%, rgba(225, 48, 108, 0.06) 50%, transparent 70%);
}

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

.meta-page .ai-card:hover {
    border-color: rgba(6, 104, 225, 0.3);
}

.meta-page .ai-card::before {
    background: var(--gradient-meta);
}

.meta-page .ai-card-icon,
.meta-page .ai-card .card-icon {
    background: rgba(6, 104, 225, 0.1);
    color: var(--meta-blue);
}

.meta-page .breadcrumb .current {
    color: var(--meta-blue);
}

.meta-page .faq-item.active {
    border-color: rgba(6, 104, 225, 0.3);
    box-shadow: -4px 0 0 0 var(--meta-blue), 0 4px 20px rgba(6, 104, 225, 0.05);
}

.meta-page .audience-item:hover {
    border-color: rgba(6, 104, 225, 0.3);
}

/* =============================================
   23. CONSULTORIA ACCENT OVERRIDES
   ============================================= */
.consultoria-page .btn-primary {
    background: var(--gradient-gold);
    color: #1a1a2e;
    box-shadow: 0 4px 20px rgba(255, 222, 33, 0.3);
    animation: none;
}

.consultoria-page .btn-primary:hover {
    box-shadow: 0 8px 30px rgba(255, 222, 33, 0.5);
}

.consultoria-page .subpage-hero::before {
    background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(255, 222, 33, 0.06) 0%, transparent 70%);
}

.consultoria-page .subpage-hero .hero-bg-glow {
    background: radial-gradient(circle, rgba(255, 222, 33, 0.1) 0%, rgba(255, 165, 0, 0.05) 50%, transparent 70%);
}

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

.consultoria-page .ai-card:hover {
    border-color: rgba(255, 222, 33, 0.3);
}

.consultoria-page .ai-card::before {
    background: var(--gradient-gold);
}

.consultoria-page .ai-card-icon,
.consultoria-page .ai-card .card-icon {
    background: rgba(255, 222, 33, 0.1);
    color: var(--gold);
}

.consultoria-page .breadcrumb .current {
    color: var(--gold);
}

.consultoria-page .faq-item.active {
    border-color: rgba(255, 222, 33, 0.3);
    box-shadow: -4px 0 0 0 var(--gold), 0 4px 20px rgba(255, 222, 33, 0.05);
}

.consultoria-page .consulting-card:hover {
    border-color: rgba(255, 222, 33, 0.3);
}

/* =============================================
   24. PLATFORM PAGE STYLES
   ============================================= */
.platform-hero {
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.platform-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.platform-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.platform-hero .subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.platform-hero .subtitle strong {
    color: var(--white);
}

.platform-section {
    padding: 80px 0;
    border-top: 1px solid var(--border);
}

.platform-section:nth-child(even) {
    background: rgba(16, 16, 20, 0.5);
}

.pipeline-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
}

.pipeline-step {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 24px;
    text-align: center;
    min-width: 150px;
    transition: var(--transition);
}

.pipeline-step:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.pipeline-step .step-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.pipeline-step .step-title {
    font-weight: 700;
    color: var(--white);
    font-size: 0.9rem;
}

.pipeline-arrow {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.pipeline-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.pipeline-detail-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
}

.pipeline-detail-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.pipeline-detail-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.dashboard-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.dash-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px;
    transition: var(--transition);
}

.dash-feature:hover {
    border-color: var(--primary-color);
}

.dash-feature .feat-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.dash-feature .feat-text h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 5px;
}

.dash-feature .feat-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.screenshot-placeholder {
    background: var(--card-bg);
    border: 2px dashed var(--border);
    border-radius: 16px;
    padding: 80px 40px;
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 30px;
}

.report-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.report-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.report-card:hover {
    transform: translateY(-4px);
    border-color: #28a745;
    box-shadow: 0 8px 24px rgba(40, 167, 69, 0.12);
}

.report-card .r-icon {
    font-size: 2.5rem;
    margin-bottom: 14px;
    display: block;
}

.report-card h4 {
    color: var(--white);
    margin-bottom: 8px;
}

.report-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.portal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.portal-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
    text-align: center;
    transition: var(--transition);
}

.portal-card:hover {
    border-color: #FFDE21;
    transform: translateY(-3px);
}

.portal-card .p-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
    display: block;
}

.portal-card h4 {
    color: var(--white);
    margin-bottom: 6px;
    font-size: 1rem;
}

.portal-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.security-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.sec-badge {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.sec-badge:hover {
    border-color: #28a745;
}

.sec-badge .badge-icon {
    font-size: 1.8rem;
}

.sec-badge .badge-text {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}

.platform-cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(180deg, transparent, rgba(0, 123, 255, 0.05));
}

.platform-cta h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 16px;
}

.platform-cta p {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 30px;
}

/* =============================================
   25. BLOG PAGE STYLES
   ============================================= */
.blog-hero {
    padding: 140px 0 60px;
    text-align: center;
}

.blog-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 12px;
}

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

.blog-hero p {
    color: var(--text-muted);
    max-width: 550px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 0 0 80px;
}

.blog-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.blog-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.blog-card .card-category {
    display: inline-block;
    background: rgba(0, 123, 255, 0.12);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    width: fit-content;
}

.blog-card h3 {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--white);
}

.blog-card .card-excerpt {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.blog-card .card-link:hover {
    gap: 10px;
}

/* =============================================
   26. ANIMATIONS & KEYFRAMES
   ============================================= */

/* Fade In on scroll */
.fade-in {
    /* GSAP handles animation via JS — no CSS opacity:0 to prevent invisible content */
}

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

/* Staggered delays removed — GSAP handles stagger natively */

/* Gold Shimmer */
@keyframes gold-shimmer {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

/* Living Grid Pulse */
@keyframes grid-shift {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 60px 60px, 60px 60px; }
}

/* Button Glow Pulse */
@keyframes btn-glow-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(0, 123, 255, 0.3); }
    50% { box-shadow: 0 4px 40px rgba(0, 123, 255, 0.6), 0 0 60px rgba(0, 123, 255, 0.15); }
}

/* WhatsApp Pulse */
@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}

@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0.1); }
}

/* WhatsApp Ring */
@keyframes wa-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* Featured Plan Aura */
@keyframes featured-aura {
    0%, 100% { box-shadow: 0 0 40px rgba(0, 123, 255, 0.15), 0 0 80px rgba(0, 123, 255, 0.05); }
    50% { box-shadow: 0 0 60px rgba(0, 123, 255, 0.25), 0 0 120px rgba(0, 123, 255, 0.1); }
}

/* Icon entrance animation */
@keyframes icon-pop {
    0% { transform: scale(0.5) rotate(-10deg); opacity: 0; }
    60% { transform: scale(1.1) rotate(3deg); }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.ai-card-icon,
.mini-icon,
.funnel-icon,
.how-step-number {
    animation: icon-pop 0.6s ease-out both;
}

/* Card Shine Sweep on Hover */
.service-card::before,
.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.03) 40%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.03) 60%, transparent 100%);
    transform: skewX(-20deg);
    pointer-events: none;
    z-index: 1;
}

.service-card:hover::before,
.plan-card:hover::before {
    animation: shine-sweep 0.8s ease-out forwards;
}

@keyframes shine-sweep {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* Badge Shimmer */
@keyframes badge-shimmer {
    0%, 100% { left: -150%; }
    50% { left: 150%; }
}

/* Quote Float */
@keyframes quote-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Fade In */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Grow Bar */
@keyframes growBar {
    from { width: 0; }
    to { width: var(--bar-width, 100%); }
}

/* Button Ripple Effect */
@keyframes ripple-effect {
    to { transform: scale(4); opacity: 0; }
}

/* WhatsApp pulse animation */
.pulse-animation-strong {
    animation: wa-ring 2s ease-in-out infinite;
}

/* Focus Visible */
:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.btn:focus-visible {
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.4);
    outline: none;
}

/* =============================================
   27. RESPONSIVE — 1024px
   ============================================= */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.8rem;
    }

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

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

    .services-mini-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .funnel-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ai-split-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .plans-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

/* =============================================
   28. RESPONSIVE — 768px
   ============================================= */
@media (max-width: 768px) {
    /* Hero */
    .hero {
        min-height: auto;
        padding: 100px 0 40px;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero p.hero-sub {
        font-size: 0.95rem;
    }

    /* Hero CTA - stacked centered buttons */
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 32px;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    /* Hero stats - 3 column grid with dividers */
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        width: 100%;
        max-width: 400px;
        background: rgba(255,255,255,0.04);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 12px;
        padding: 16px 0;
        text-align: center;
    }

    .hero-stat {
        align-items: center;
        border-right: 1px solid rgba(255,255,255,0.08);
        padding: 0 8px;
    }

    .hero-stat:last-child {
        border-right: none;
    }

    .hero-stat .value {
        font-size: 1.4rem;
        font-weight: 800;
        color: var(--gold);
    }

    .hero-stat .label {
        font-size: 0.6rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: var(--text-muted);
        margin-top: 2px;
    }

    /* Google Partner badge */
    .google-partner-badge {
        text-align: center;
        margin-top: 16px !important;
    }

    .google-partner-badge img {
        height: 64px;
    }

    /* Section headers */
    .section-header h2 {
        font-size: 1.6rem;
    }

    .section-padding {
        padding: 48px 0;
    }

    /* Header mobile */
    .header-nav,
    .header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu.active {
        display: flex;
    }

    /* Grids - single column */
    .ai-grid,
    .services-grid,
    .funnel-grid,
    .consulting-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .plan-card.featured {
        order: -1;
    }

    /* Google Reviews */
    .google-badge {
        flex-direction: column;
        text-align: center;
        padding: 16px 20px;
        gap: 10px;
    }

    .google-badge .rating {
        font-size: 2rem;
    }

    .swiper-reviews .swiper-slide {
        padding: 20px;
    }

    .review-card .review-text {
        font-size: 0.9rem;
    }

    /* AI split section */
    .ai-split-section {
        flex-direction: column;
    }

    .ai-split-text,
    .ai-split-visual {
        width: 100%;
    }

    /* Footer */
    .footer-grid,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* How it works */
    .how-it-works-grid {
        grid-template-columns: 1fr;
    }

    .how-step-connector {
        display: none;
    }

    /* Subpage */
    .subpage-hero {
        padding: 120px 0 40px;
        min-height: auto;
    }

    .subpage-hero h1 {
        font-size: 1.6rem;
    }

    /* Form */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Hero buttons legacy */
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Other */
    .audience-grid {
        grid-template-columns: 1fr 1fr;
    }

    .comparison-row {
        grid-template-columns: 1fr;
    }

    .methodology-steps::before {
        left: 24px;
    }

    .method-step {
        gap: 20px;
    }

    .method-step-number {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 0.95rem;
    }

    .pipeline-arrow {
        transform: rotate(90deg);
    }

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

    .deliverables-section {
        padding: 32px 24px;
    }

    .footer-brand div[style] {
        flex-direction: column;
        gap: 4px;
    }
}

/* =============================================
   29. RESPONSIVE — 600px (blog)
   ============================================= */
@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   30. RESPONSIVE — 480px
   ============================================= */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.4rem;
        line-height: 1.25;
    }

    .hero-cta .btn {
        font-size: 0.78rem;
        padding: 12px 16px;
        max-width: 280px;
    }

    .hero-stats {
        padding: 12px 0;
    }

    .hero-stat .value {
        font-size: 1.2rem;
    }

    .hero-stat .label {
        font-size: 0.55rem;
    }

    .google-partner-badge img {
        height: 50px;
    }

    .section-header h2 {
        font-size: 1.3rem;
    }

    .section-padding {
        padding: 36px 0;
    }

    .btn-lg {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .services-mini-grid {
        grid-template-columns: 1fr;
    }

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

    .google-badge {
        padding: 12px 16px;
    }

    .google-badge .rating {
        font-size: 1.6rem;
    }

    .google-badge .stars {
        font-size: 1rem;
    }

    .swiper-reviews .swiper-slide {
        padding: 16px;
    }

    .how-step-number {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .comparison-row {
        grid-template-columns: 1fr;
    }

    .creative-orientation {
        padding: 32px 24px;
    }

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

/* =============================================
   31. RESPONSIVE — 320px (Galaxy Fold)
   ============================================= */
@media (max-width: 320px) {
    .container {
        padding: 0 12px;
    }

    .hero h1 {
        font-size: 1.2rem;
    }

    .hero p.hero-sub {
        font-size: 0.85rem;
    }

    .hero-cta .btn {
        font-size: 0.72rem;
        padding: 11px 12px;
        max-width: 260px;
    }

    .hero-stat .value {
        font-size: 1rem;
    }

    .hero-stat .label {
        font-size: 0.5rem;
    }

    .google-partner-badge img {
        height: 40px;
    }

    .section-header h2 {
        font-size: 1.15rem;
    }

    .ai-card {
        padding: 20px 16px;
    }

    .service-mini-card {
        padding: 20px 12px;
    }

    .google-badge {
        padding: 10px 12px;
    }

    .google-badge .rating {
        font-size: 1.3rem;
    }
}

/* Google Partner Badge */
.google-partner-badge {
    display: inline-block;
}
.google-partner-badge a {
    display: inline-block;
    transition: transform 0.3s ease;
}
.google-partner-badge a:hover {
    transform: scale(1.05);
}

/* =============================================
   WOW EFFECTS — GSAP + Lenis + Particles
   ============================================= */

/* Custom cursor */
.custom-cursor {
    width: 20px; height: 20px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
    mix-blend-mode: difference;
    display: none;
}
@media (pointer: fine) { .custom-cursor { display: block; } }
.custom-cursor.hovering {
    width: 50px; height: 50px;
    border-color: var(--primary-color);
}

/* Particles container */
#particles-hero {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0; pointer-events: none;
}
.hero { position: relative; overflow: hidden; }
.hero .container { position: relative; z-index: 2; }

/* Typed cursor */
.typed-cursor { color: var(--gold); font-weight: 100; }

/* Google Reviews section */
.reviews-section { background: var(--card-bg); }
.reviews-header { text-align: center; margin-bottom: 48px; }
.google-badge {
    display: inline-flex; align-items: center; gap: 16px;
    background: var(--bg-color); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px; padding: 20px 32px;
    margin-bottom: 24px;
}
.google-badge .google-g { width: 40px; height: 40px; }
.google-badge .rating { font-size: 2.5rem; font-weight: 800; color: #fff; }
.google-badge .stars { color: #FFDE21; font-size: 1.4rem; letter-spacing: 2px; }
.google-badge .count { color: var(--text-muted); font-size: 0.9rem; }

.swiper-reviews { padding-bottom: 48px; }
.swiper-reviews .swiper-slide {
    background: var(--bg-color);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px; padding: 32px;
    height: auto;
}
.review-card .review-stars { color: #FFDE21; font-size: 1.2rem; margin-bottom: 12px; }
.review-card .review-text { color: var(--text-color); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.review-card .review-author { display: flex; align-items: center; gap: 12px; }
.review-card .review-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--gold));
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: #fff; font-size: 1rem;
}
.review-card .review-name { font-weight: 600; color: #fff; }
.review-card .review-meta { font-size: 0.8rem; color: var(--text-muted); }

.swiper-pagination-bullet { background: rgba(255,255,255,0.3); }
.swiper-pagination-bullet-active { background: var(--gold); }

/* Magnetic button hover area */
.magnetic-btn { position: relative; display: inline-block; }

/* Tilt card glow */
.tilt-card { transform-style: preserve-3d; }

/* Smooth reveal for sections */
.section-reveal { will-change: transform, opacity; }

/* How it works section */
.how-it-works-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
    position: relative;
}
.how-step {
    text-align: center; padding: 32px 24px;
    position: relative;
}
.how-step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0 auto 20px;
    box-shadow: 0 6px 24px rgba(0,123,255,0.3);
    transition: all 0.4s ease;
}

.how-step:hover .how-step-number {
    transform: scale(1.15);
    box-shadow: 0 8px 32px rgba(0,123,255,0.4);
}
.how-step h3 { margin-bottom: 8px; }
.how-step p { color: var(--text-muted); font-size: 0.9rem; }
.how-step-connector {
    position: absolute; top: 32px; left: calc(50% + 40px);
    width: calc(100% - 80px); height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--gold));
    opacity: 0.3;
}

/* =============================================
   THEME SYSTEM — DARK / LIGHT TOGGLE
   Default: dark (preserva visual original)
   Auto-detect: prefers-color-scheme do dispositivo (script no <head>)
   Override: localStorage 'theme' (botao no header)
   ============================================= */

[data-theme="light"] {
    --bg-color: #fafbfc;
    --card-bg: #ffffff;
    --card-bg-hover: #f1f5f9;
    --text-color: #0f172a;
    --text-muted: #475569;
    --glass: rgba(15, 23, 42, 0.04);
    --border: rgba(15, 23, 42, 0.10);
    --shadow-lg: 0 16px 48px rgba(15, 23, 42, 0.08);
    /* Variantes legiveis das cores semanticas que sao usadas em texto.
       Original (--accent-color #28a745, --gold #FFDE21) tem contraste insuficiente
       em fundo claro. Cores de marca puras (Google, Meta) ficam intactas. */
    --accent-color: #15803d;          /* emerald-700 — verde "ok" no claro */
    --gold: #b45309;                  /* amber-700 — gold-ish no claro */
    --gradient-text: linear-gradient(90deg, #0f172a 0%, #007bff 50%, #15803d 100%);
    --gradient-gold: linear-gradient(135deg, #b45309 0%, #d97706 100%);
}

/* Body herda --bg-color e --text-color via vars; nada a fazer */

/* Headings: no dark usam color: var(--white); no light precisam ficar escuras */
[data-theme="light"] h1,
[data-theme="light"] h2,
[data-theme="light"] h3,
[data-theme="light"] h4,
[data-theme="light"] h5,
[data-theme="light"] h6 {
    color: var(--text-color);
}

/* Excecao: dentro do .btn-primary o texto deve ficar BRANCO mesmo no light */
[data-theme="light"] .btn-primary,
[data-theme="light"] .btn-primary:hover,
[data-theme="light"] .btn-primary * {
    color: #ffffff;
}

/* Header transparente no topo: no light, manter clean (sem ficar escuro) */
[data-theme="light"] .header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 1px 30px rgba(15, 23, 42, 0.06);
}

[data-theme="light"] .header-nav a:hover {
    color: var(--text-color);
}

[data-theme="light"] .nav-dropdown .dropdown-toggle:hover {
    color: var(--text-color);
}

/* Dropdowns */
[data-theme="light"] .dropdown-menu {
    background: var(--card-bg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

[data-theme="light"] .dropdown-menu a {
    color: var(--text-color);
}

[data-theme="light"] .dropdown-menu a:hover {
    background: var(--card-bg-hover);
}

/* Mobile menu */
[data-theme="light"] .mobile-menu {
    background: rgba(255, 255, 255, 0.98);
}

[data-theme="light"] .mobile-menu-toggle span {
    background: var(--text-color);
}

/* Cards/elementos com #fff hardcoded em headings internos */
[data-theme="light"] .stepper-card h3,
[data-theme="light"] .feature-card h3,
[data-theme="light"] .plan-card h3 {
    color: var(--text-color);
}

/* Input/textarea */
[data-theme="light"] input,
[data-theme="light"] textarea,
[data-theme="light"] select {
    background-color: var(--card-bg);
    color: var(--text-color);
    border-color: var(--border);
}

/* SVG do dropdown chevron usa stroke=#a0a0a0 hardcoded — fica OK no claro tambem */

/* ── Toggle button ─────────────────────────────────── */
.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 12px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-color);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
    flex-shrink: 0;
    padding: 0;
    font-family: inherit;
}

.theme-toggle:hover {
    background: var(--card-bg-hover);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.theme-toggle:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    display: block;
}

/* No dark, mostra sol (botao leva pro claro). No light, mostra lua. */
.theme-toggle .icon-sun { display: block; }
.theme-toggle .icon-moon { display: none; }
[data-theme="light"] .theme-toggle .icon-sun { display: none; }
[data-theme="light"] .theme-toggle .icon-moon { display: block; }

@media (max-width: 768px) {
    .theme-toggle {
        margin-right: 8px;
        width: 36px;
        height: 36px;
    }
    .theme-toggle svg { width: 18px; height: 18px; }
}

/* Transicao suave ao trocar de tema (mas nao em tudo, pra nao virar lag) */
html {
    transition: background-color 0.25s ease, color 0.25s ease;
}
body {
    transition: background-color 0.25s ease, color 0.25s ease;
}
.header,
.header.scrolled,
.dropdown-menu,
.mobile-menu {
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

/* =============================================
   THEME LIGHT — AUDITORIA DE CONTRASTE (round 1)
   Cores hardcoded encontradas com WCAG < 4.5:1
   no modo claro, corrigidas via override.
   ============================================= */

/* === Textos brancos sobre fundo transparente que ficam ilegiveis no claro === */
[data-theme="light"] .gp-title,
[data-theme="light"] .gp-subtitle,
[data-theme="light"] .value,
[data-theme="light"] .rating,
[data-theme="light"] .review-name,
[data-theme="light"] .review-text,
[data-theme="light"] .review-meta,
[data-theme="light"] .testimonial-author,
[data-theme="light"] .testimonial-text,
[data-theme="light"] .quote-text,
[data-theme="light"] .stat-value,
[data-theme="light"] .number-value,
[data-theme="light"] .faq-question,
[data-theme="light"] .faq-answer,
[data-theme="light"] .stepper-card h3,
[data-theme="light"] .feature-card h3,
[data-theme="light"] .feature-title,
[data-theme="light"] .plan-card h3,
[data-theme="light"] .plan-card .plan-price,
[data-theme="light"] .plan-card .plan-period,
[data-theme="light"] .plan-feature,
[data-theme="light"] .funnel-card h3,
[data-theme="light"] .funnel-title,
[data-theme="light"] .stat-num,
[data-theme="light"] .stat-label-num,
[data-theme="light"] .why-card h3,
[data-theme="light"] .step-title,
[data-theme="light"] .case-title,
[data-theme="light"] .label,
[data-theme="light"] .item-title {
    color: var(--text-color);
}

/* === Textos secundarios em var(--text-muted) ja deveriam funcionar,
   mas alguns hardcodam #b4bdd0 (cor muted do dark theme) === */
[data-theme="light"] p,
[data-theme="light"] .text-muted,
[data-theme="light"] .description,
[data-theme="light"] .review-content,
[data-theme="light"] .feature-desc,
[data-theme="light"] .step-desc,
[data-theme="light"] .why-desc,
[data-theme="light"] .stepper-card p,
[data-theme="light"] .funnel-desc,
[data-theme="light"] .meta {
    color: var(--text-muted);
}

/* Mas headings dentro de p devem manter cor primaria (text-color) */
[data-theme="light"] p strong,
[data-theme="light"] p b {
    color: var(--text-color);
}

/* === Botoes outline: borda+texto ficam invisiveis em fundo claro === */
[data-theme="light"] .btn-outline,
[data-theme="light"] .btn-secondary {
    color: var(--primary-color);
    background: rgba(0, 123, 255, 0.06);
    border: 1px solid rgba(0, 123, 255, 0.4);
}

[data-theme="light"] .btn-outline:hover,
[data-theme="light"] .btn-secondary:hover {
    background: rgba(0, 123, 255, 0.12);
    border-color: var(--primary-color);
}

/* === Yellow/gold (#FFDE21) tem baixo contraste em fundo claro === */
/* Usar amber-700 (#b45309) ou amber-800 (#92400e) que sao "gold" mas legiveis */
[data-theme="light"] .stepper-label,
[data-theme="light"] .mini-cta,
[data-theme="light"] .funnel-step,
[data-theme="light"] .funnel-cta,
[data-theme="light"] .card-link,
[data-theme="light"] .gold-text,
[data-theme="light"] [class*="gold"]:not(.gradient-text-gold) {
    color: #b45309;
}

/* Stars amarelas precisam de cor mais escura no claro */
[data-theme="light"] .stars,
[data-theme="light"] .review-stars {
    color: #d97706;
}

/* === Numerador stepper ".03" estava rgba(0,123,255,0.15) — invisivel no claro === */
[data-theme="light"] .stepper-card-num,
[data-theme="light"] .step-num,
[data-theme="light"] .number-bg {
    color: rgba(0, 123, 255, 0.45);
}

/* === Gradient text gold em fundo claro: trocar gradiente por cores escuras === */
[data-theme="light"] .gradient-text-gold {
    background: linear-gradient(135deg, #b45309 0%, #d97706 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* === Gradient text generico: usa gradient-text que ja foi sobrescrito antes,
   mas vamos garantir que comece em cor escura === */
[data-theme="light"] .gradient-text {
    background: linear-gradient(90deg, #0f172a 0%, #007bff 50%, #28a745 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* === FAQ: cards e questoes precisam ser visiveis === */
[data-theme="light"] .faq-item,
[data-theme="light"] .faq-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
}

[data-theme="light"] .faq-question {
    color: var(--text-color);
    background: transparent;
}

[data-theme="light"] .faq-answer {
    color: var(--text-muted);
}

/* === Cards com fundo branco hardcoded (#fff) ja ficam OK no claro,
   mas sombras precisam ser ajustadas para nao "flutuarem" sem identidade === */
[data-theme="light"] .stepper-card,
[data-theme="light"] .feature-card,
[data-theme="light"] .plan-card,
[data-theme="light"] .why-card,
[data-theme="light"] .case-card {
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
    border: 1px solid var(--border);
}

/* === Stepper: estado .active usa --gold que e amarelo ilegivel no claro === */
[data-theme="light"] .stepper-step.active .stepper-label {
    color: #b45309;
}

/* === Stepper card num: rgba(0,123,255,0.45) ainda ficava transparente.
   Subir alpha para 0.7 ou usar cor solida. === */
[data-theme="light"] .stepper-card-num,
[data-theme="light"] .step-num,
[data-theme="light"] .number-bg {
    color: rgba(0, 123, 255, 0.7);
}

/* === ESCUDO: widgets decorativos com fundo escuro hardcoded (dashboard mockups,
   widgets de "screenshot", etc). Inline styles (color: #fff, #888, #28a745)
   sao corretos para o fundo deles. Preservar nos dois temas. === */
[data-theme="light"] .dashboard-mockup,
[data-theme="light"] .dashboard-mockup *,
[data-theme="light"] .ai-split-visual [style*="linear-gradient"],
[data-theme="light"] .ai-split-visual [style*="linear-gradient"] *,
[data-theme="light"] [style*="linear-gradient(135deg, #0a0a12"],
[data-theme="light"] [style*="linear-gradient(135deg, #0a0a12"] *,
[data-theme="light"] [style*="linear-gradient(135deg, #0a0a12 "] *,
[data-theme="light"] [style*="background: linear-gradient(135deg, rgb(10, 10, 18)"] *,
[data-theme="light"] .dashboard-mockup p,
[data-theme="light"] .dashboard-mockup .description,
[data-theme="light"] .dashboard-mockup .label,
[data-theme="light"] .dashboard-mockup .item-title,
[data-theme="light"] .dashboard-mockup .stat-num {
    color: revert-layer;
}

/* Stat label "ROAS"/"CONVERSOES"/etc dentro de hero-stat
   (em /planos/, /precos/) — antes tinha #888 inline.
   Forcar text-muted para legibilidade no claro. */
[data-theme="light"] .hero-stat .label,
[data-theme="light"] .hero-stat span.label {
    color: var(--text-muted) !important;
}

/* Forcar inline styles a vencer dentro do widget */
[data-theme="light"] .dashboard-mockup [style*="color"] {
    /* Inline style ganha — nada a fazer */
}

/* === Round 2: bugs encontrados na re-auditoria === */

/* Footer: textos com rgba(255,255,255,0.35) hardcoded (CNPJ, etc.)
   No claro precisam ficar muted-dark legivel === */
[data-theme="light"] .footer-bottom span,
[data-theme="light"] .footer-bottom p,
[data-theme="light"] .footer-bottom a,
[data-theme="light"] .footer .footer-meta,
[data-theme="light"] .footer-disclaimer {
    color: var(--text-muted);
}

/* Plan card tagline verde (#28a745) tem 3.13 contra branco — escurecer */
[data-theme="light"] .plan-card p,
[data-theme="light"] .plan-tagline,
[data-theme="light"] .plan-card .green-tag {
    color: #15803d;
}

/* Mas se tiver hardcode `color: #28a745` em um <p> dentro de plan-card,
   o seletor de classe nao ganha. Forcar com selector mais especifico: */
[data-theme="light"] .plan-card p[style*="#28a745"],
[data-theme="light"] .plan-card p[style*="rgb(40, 167, 69)"] {
    color: #15803d !important;
}

/* Stepper-card-num "01" "02" "03" — numero decorativo grande
   Cor solida com alpha visivel mas suave */
[data-theme="light"] .stepper-card-num,
[data-theme="light"] .step-num,
[data-theme="light"] .number-bg {
    color: #60a5fa; /* blue-400 — visivel sem dominar */
}

/* === Inline styles hardcoded com rgba(255,255,255,X) usados no footer.
   Inline tem maior especificidade — usar !important fora do dashboard-mockup. === */
[data-theme="light"] .footer [style*="rgba(255,255,255,0.35)"],
[data-theme="light"] .footer [style*="rgba(255, 255, 255, 0.35)"],
[data-theme="light"] .footer-bottom [style*="rgba(255"],
[data-theme="light"] .footer span[style*="rgba(255"] {
    color: var(--text-muted) !important;
}

/* btn-outline: #007bff sobre tinted blue 3.56:1, escurecer pra AA */
[data-theme="light"] .btn-outline,
[data-theme="light"] .btn-outline:link {
    color: #1d4ed8; /* blue-700 — bate AA */
}

/* Pequenos textos em --primary-color (#007bff) no claro tem 3.98:1 — abaixo de AA.
   Inline styles com `color: var(--primary-color)` em paragrafos pequenos
   precisam de blue-700 darker. */
[data-theme="light"] .footer p[style*="primary-color"],
[data-theme="light"] .footer-brand p[style*="primary-color"],
[data-theme="light"] p[style*="primary-color"][style*="0.85rem"],
[data-theme="light"] p[style*="primary-color"][style*="0.8rem"] {
    color: #1d4ed8 !important;
}

/* === Botoes dos planos: padronizar largura para alinhamento visual === */
.plan-card .btn,
.plan-card a.btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    box-sizing: border-box;
}

/* =============================================
   ROUND 4 — AUDITORIA MULTI-PAGINA (light + dark)
   Bugs encontrados em /meta/, /planos/, /precos/,
   /politica/, /termos/, /plataforma/, /google/
   ============================================= */

/* === LIGHT MODE: textos hardcoded com cor branca em fundos claros === */

/* Nomes de testimonial com hardcode #fff inline — !important pra vencer inline */
[data-theme="light"] .name,
[data-theme="light"] .testimonial-name,
[data-theme="light"] .review-author,
[data-theme="light"] .quote-author {
    color: var(--text-color) !important;
}

/* Listas de features dos planos com hardcode rgba(255,255,255,0.8) inline */
[data-theme="light"] .plan-feature,
[data-theme="light"] .plan-card li,
[data-theme="light"] .plan-card ul li,
[data-theme="light"] .features-list li,
[data-theme="light"] .feature-list li,
[data-theme="light"] .funnel-card li {
    color: var(--text-muted) !important;
}

/* Numeros de preco hardcoded white inline */
[data-theme="light"] .amount,
[data-theme="light"] .price-amount,
[data-theme="light"] .plan-price .amount,
[data-theme="light"] .price-value {
    color: var(--text-color) !important;
}

/* Investimento amount/period — eram amber/gold inline */
[data-theme="light"] .inv-amount,
[data-theme="light"] .investment-amount,
[data-theme="light"] .inv-value {
    color: #b45309 !important;
    background: transparent !important;
}
[data-theme="light"] .inv-per,
[data-theme="light"] .inv-period,
[data-theme="light"] .investment-period {
    color: var(--text-muted) !important;
    background: transparent !important;
}

/* === DARK MODE: investimento amount/period em yellow-on-yellow === */
[data-theme="dark"] .inv-amount,
[data-theme="dark"] .investment-amount,
[data-theme="dark"] .inv-value {
    color: var(--text-color) !important;
    background: transparent !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
[data-theme="dark"] .inv-per,
[data-theme="dark"] .inv-period {
    color: rgba(255, 255, 255, 0.85) !important;
    background: transparent !important;
}

/* === DARK MODE: subtitle e nav.current com baixo contraste === */
[data-theme="dark"] p.subtitle,
[data-theme="dark"] .subtitle {
    color: var(--text-muted) !important;
}

/* Footer Google Partner badge cor primaria escura no dark */
[data-theme="dark"] .gp-title,
[data-theme="dark"] p.gp-title {
    color: #5fa8ff !important;  /* lighter blue for AA on dark */
}
[data-theme="dark"] .partner-badge-footer,
[data-theme="dark"] div.partner-badge-footer {
    color: #5fa8ff !important;
}
[data-theme="light"] .partner-badge-footer,
[data-theme="light"] div.partner-badge-footer {
    color: #1d4ed8 !important;
}

/* span.current navigation in /consultoria/, /meta/sub/ — light needs darker primary */
[data-theme="light"] span.current,
[data-theme="light"] .breadcrumb span.current,
[data-theme="light"] .nav-current {
    color: #1d4ed8 !important;
}
[data-theme="dark"] span.current,
[data-theme="dark"] .breadcrumb span.current,
[data-theme="dark"] .nav-current {
    color: var(--white) !important;
}

/* p.subtitle em /consultoria/, /meta/sub/ light — texto era hardcoded white */
[data-theme="light"] p.subtitle,
[data-theme="light"] .subtitle {
    color: var(--text-muted) !important;
}

/* Anchor "Fale conosco para um plano personalizado" em planos/precos */
[data-theme="light"] a[href*="wa.me"]:not(.btn) {
    color: #1d4ed8 !important;
}
[data-theme="dark"] a[href*="wa.me"]:not(.btn) {
    color: #5fa8ff !important;
}

/* === Deliverables list em /meta/atrair, /meta/converter, /meta/engajar
   tinha rgba(255,255,255,0.8) hardcoded inline === */
[data-theme="light"] .deliverables-list li,
[data-theme="light"] .deliverables-list li * {
    color: var(--text-muted) !important;
}
[data-theme="dark"] .deliverables-list li {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* === Breadcrumb anchors (Meta Ads link em /meta/atrair) === */
[data-theme="light"] .breadcrumb a {
    color: var(--text-muted) !important;
}
[data-theme="light"] .breadcrumb a:hover {
    color: var(--text-color) !important;
}
[data-theme="dark"] .breadcrumb a {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* === Card badge "RECORRENTE" em /consultoria/ — borderline contrast === */
[data-theme="light"] .card-badge.recorrente,
[data-theme="light"] div.card-badge {
    color: #1d4ed8 !important;
}
[data-theme="dark"] .card-badge.recorrente,
[data-theme="dark"] div.card-badge {
    color: #93c5fd !important;
}

/* === Footer CNPJ em dark com rgba(255,255,255,0.35) inline = 3.16:1 ===
   Forcar opacity maior pra atingir AA */
[data-theme="dark"] .footer-bottom span,
[data-theme="dark"] .footer span[style*="rgba(255,255,255,0.35)"],
[data-theme="dark"] .footer span[style*="rgba(255, 255, 255, 0.35)"] {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* === Google Partner em dark mode (color: var(--primary-color) = 3.98:1) ===
   Usar blue-300/400 que da AA em dark navy === */
[data-theme="dark"] .gp-title,
[data-theme="dark"] p.gp-title,
[data-theme="dark"] .footer .gp-title,
[data-theme="dark"] .footer-brand p[style*="primary-color"],
[data-theme="dark"] .footer p[style*="primary-color"] {
    color: #93c5fd !important; /* blue-300 */
}

/* === Cross-page anchors entre /politica/ e /termos/ === */
[data-theme="light"] .legal-page a,
[data-theme="light"] .legal-content a {
    color: #1d4ed8 !important;
    text-decoration: underline;
}
[data-theme="dark"] .legal-page a,
[data-theme="dark"] .legal-content a {
    color: #93c5fd !important;
    text-decoration: underline;
}

/* === "Online" verde em /planos/ que escapou do shield === */
[data-theme="light"] .ai-split-visual span[style*="color: #28a745"],
[data-theme="light"] .ai-split-visual span[style*="color:#28a745"] {
    /* esta dentro de widget escuro com bg gradient — manter inline */
}
/* Para Online fora do widget (bg page) */
[data-theme="light"] body > section span[style*="color: #28a745"]:not(.dashboard-mockup span):not(.ai-split-visual span) {
    color: #15803d !important;
}

/* =============================================
   ROUND 5 — AUDITORIA DE /ads/* + /blog/*
   Bugs encontrados nas paginas Google Ads e blog
   ============================================= */

/* Texto "Um analista de tráfego CLT custa R$4.500" e similares
   — paragrafos com cor primary-color que ficam baixo contraste no claro
   ATTR selector com parens precisa cuidado, melhor separar */
[data-theme="light"] p[style*="primary-color"] {
    color: var(--text-color) !important;
}
[data-theme="light"] section p[style*="primary-color"] {
    color: var(--text-color) !important;
}
[data-theme="light"] .pain-content p,
[data-theme="light"] .why-content p,
[data-theme="light"] .problem-content p {
    color: var(--text-color) !important;
}
[data-theme="dark"] p[style*="primary-color"]:not(.gp-title) {
    color: rgba(255, 255, 255, 0.92) !important;
}

/* "Aceitamos no máximo 8 novos clientes por mes" e similares — textos importantes */
[data-theme="dark"] .scarcity-text,
[data-theme="dark"] .urgency-text,
[data-theme="dark"] .important-text {
    color: rgba(255, 255, 255, 0.95) !important;
}

/* h4 "Visão Unificada", "Estrategista IA" — titulos de cards que estavam white inline */
[data-theme="light"] h4 {
    color: var(--text-color) !important;
}
[data-theme="dark"] h4 {
    color: var(--white) !important;
}

/* span.badge-text "OAuth 2.0 (Padrão Google)" hardcoded white inline */
[data-theme="light"] .badge-text,
[data-theme="light"] span.badge-text,
[data-theme="light"] .badge .text {
    color: var(--text-color) !important;
}

/* strong "Inteligência Artificial" hardcoded white inline */
[data-theme="light"] .feature-card strong,
[data-theme="light"] .benefit-card strong,
[data-theme="light"] section strong,
[data-theme="light"] article p strong,
[data-theme="light"] article li strong {
    color: var(--text-color) !important;
}

/* span.gold-text "Quanto Você Perdeu Hoje?" — gold em dark com baixo contraste */
[data-theme="dark"] .gold-text,
[data-theme="dark"] span.gold-text,
[data-theme="dark"] [class*="gold-text"] {
    color: #fbbf24 !important; /* amber-400 — readable on dark */
}
[data-theme="light"] .gold-text,
[data-theme="light"] span.gold-text {
    color: #b45309 !important;
}

/* div.method-step-number "01"/"02"/"03" — numero decorativo grande */
[data-theme="light"] .method-step-number,
[data-theme="light"] div.method-step-number {
    color: var(--primary-color) !important;
    opacity: 0.6;
}
[data-theme="dark"] .method-step-number,
[data-theme="dark"] div.method-step-number {
    color: #60a5fa !important;
    opacity: 0.7;
}

/* Card category badges no blog */
[data-theme="light"] .card-category,
[data-theme="light"] span.card-category {
    color: #1d4ed8 !important;
}
[data-theme="dark"] .card-category,
[data-theme="dark"] span.card-category {
    color: #93c5fd !important;
}

/* Reading time / channel badges */
[data-theme="light"] .card-reading-time,
[data-theme="light"] .reading-time,
[data-theme="light"] .channel-badge,
[data-theme="light"] .size-badge {
    color: var(--text-muted) !important;
    background: var(--card-bg-hover) !important;
}

/* Card link "Ler Artigo →" — borderline em dark */
[data-theme="dark"] .card-link,
[data-theme="dark"] a.card-link {
    color: #93c5fd !important;
}

/* === Footer copyright em dark com cor muted demais === */
[data-theme="dark"] .footer-copyright,
[data-theme="dark"] .copyright,
[data-theme="dark"] .footer p[style*="text-align: center"],
[data-theme="dark"] .footer-bottom p {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* === /solicitar-site/ specific classes (template tiers, badges) === */
[data-theme="light"] .tpl-tier,
[data-theme="light"] span.tpl-tier {
    color: var(--text-color) !important;
}
[data-theme="light"] .tpl-target {
    color: var(--text-muted) !important;
}
[data-theme="light"] .lbl,
[data-theme="light"] div.lbl {
    color: var(--text-muted) !important;
}
[data-theme="dark"] .tpl-tier,
[data-theme="dark"] .tpl-target,
[data-theme="dark"] .lbl {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* === Card date no blog === */
[data-theme="light"] .card-date {
    color: var(--text-muted) !important;
}
[data-theme="dark"] .card-date {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* === CATCH-ALL: P com inline color usando var(--primary-color) ===
   Importante: garantir que apply mesmo em <p> sem class === */
[data-theme="light"] p[style*="primary-color"]:not([class*="legal"]):not([class*="footer"]) {
    color: var(--text-color) !important;
}

/* === CATCH-ALL: textos rgba(255,255,255,X) em fundos claros === */
[data-theme="light"] [style*="rgba(255,255,255,0.8)"]:not(.dashboard-mockup *):not(.btn):not(.btn-primary),
[data-theme="light"] [style*="rgba(255, 255, 255, 0.8)"]:not(.dashboard-mockup *):not(.btn):not(.btn-primary) {
    color: var(--text-color) !important;
}
[data-theme="light"] [style*="rgba(255,255,255,0.5)"]:not(.dashboard-mockup *):not(.btn):not(.btn-primary),
[data-theme="light"] [style*="rgba(255, 255, 255, 0.5)"]:not(.dashboard-mockup *):not(.btn):not(.btn-primary) {
    color: var(--text-muted) !important;
}

/* === Sections com nth-child even tem hardcoded rgba(16,16,20,0.5) — escuro
   sobre tema claro = invisivel. Inverter para tinted light no light mode. === */
[data-theme="light"] .platform-section:nth-child(even),
[data-theme="light"] section[class*="-section"]:nth-child(even) {
    background: rgba(15, 23, 42, 0.025) !important;
}

/* === LOGO SWAP — exibe versao apropriada para cada tema === */
.header-logo .logo-dark,
.header-logo .logo-light,
.footer-logo .logo-dark,
.footer-logo .logo-light,
a.header-logo .logo-dark,
a.header-logo .logo-light {
    display: block;
}
/* Default (sem data-theme): mostrar dark version (preserva visual atual no dark) */
.logo-light { display: none !important; }
.logo-dark { display: block !important; }
/* No light mode: inverter */
[data-theme="light"] .logo-light { display: block !important; }
[data-theme="light"] .logo-dark { display: none !important; }
[data-theme="dark"] .logo-light { display: none !important; }
[data-theme="dark"] .logo-dark { display: block !important; }

/* "Fale conosco" link em primary blue 3.84 contra light */
[data-theme="light"] a[href*="wa.me"][class=""],
[data-theme="light"] .text-content a,
[data-theme="light"] .legal-content a,
[data-theme="light"] p a {
    color: #1d4ed8;
}

/* Strong em legal-content company-info usa --white inline.
   Em light precisa virar dark. */
[data-theme="light"] .legal-content .company-info strong,
[data-theme="light"] .legal-content strong {
    color: var(--text-color);
}

/* === DARK MODE: bugs detectados no modo escuro === */

/* Google Partner em dark com primary-color tem 3.98 — escurecer levemente */
[data-theme="dark"] .gp-title,
[data-theme="dark"] .footer p[style*="primary-color"],
:root:not([data-theme]) .gp-title {
    /* manter --primary-color OK no dark; mas para texto pequeno usar tom mais claro */
}

/* Inline rgba(255,222,33) (amarelo --gold) sobre fundo amarelo de investimento card.
   No dark, o card de investimento provavelmente tem bg amarelo gradient — conflito. */
.inv-amount,
.investment-amount,
.inv-value {
    /* Fix universal: color INHERIT do card visual, nao hardcoded yellow */
    color: var(--text-color);
}
[data-theme="dark"] .inv-amount,
[data-theme="dark"] .investment-amount,
[data-theme="dark"] .inv-value {
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Estado .current/.active na navegacao secundaria (Atrair/Engajar/Converter)
   estava 3.47 no dark. Aumentar contraste. */
[data-theme="dark"] .current,
[data-theme="dark"] .nav-current,
[data-theme="dark"] .breadcrumb .current,
[data-theme="dark"] span.current {
    color: var(--white);
    font-weight: 600;
}
[data-theme="light"] .current,
[data-theme="light"] .nav-current,
[data-theme="light"] .breadcrumb .current,
[data-theme="light"] span.current {
    color: var(--primary-color);
    font-weight: 600;
}

/* === BOTÕES: padronizar largura em rows com 2-3 CTAs === */

/* hero-cta + cta-buttons: forcar mesma largura usando grid */
.hero-cta,
.cta-buttons,
.cta-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 16px;
    align-items: center;
    max-width: 600px;
}

/* Containers com 3 botoes ja sao centrais — nao usar grid 2col */
.hero-cta:has(.btn:nth-child(3)),
.cta-buttons:has(.btn:nth-child(3)),
.cta-row:has(.btn:nth-child(3)) {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
}

.hero-cta .btn,
.cta-buttons .btn,
.cta-row .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    min-width: 0;
}

/* Hero-cta no centro pro lado direito da hero (evita esquecer alinhamento) */
.hero-cta {
    margin-left: 0;
}

/* Em mobile, botoes empilhados */
@media (max-width: 640px) {
    .hero-cta,
    .cta-buttons,
    .cta-row {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}

/* === Comparison cards em /meta/: textos brancos translucidos
   sobre cards com fundo claro = invisiveis === */
[data-theme="light"] .comparison-wrong,
[data-theme="light"] .comparison-right,
[data-theme="light"] .comparison-card {
    color: var(--text-color);
}
[data-theme="light"] .comparison-wrong p,
[data-theme="light"] .comparison-right p,
[data-theme="light"] .comparison-card p {
    color: var(--text-muted);
}
/* Manter brancos no dark */
[data-theme="dark"] .comparison-wrong,
[data-theme="dark"] .comparison-right,
[data-theme="dark"] .comparison-card {
    color: var(--white);
}
