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

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #0f0f1a;
    --bg-card: #13131f;
    --bg-card-hover: #1a1a2e;
    --border: rgba(255, 255, 255, 0.07);
    --border-hover: rgba(124, 58, 237, 0.5);

    --text-primary: #f0f0ff;
    --text-secondary: #9090b0;
    --text-muted: #606080;

    --accent-purple: #7c3aed;
    --accent-violet: #8b5cf6;
    --accent-blue: #3b82f6;
    --accent-cyan: #06b6d4;
    --accent-meta: #1877f2;
    --accent-google: #ea4335;

    --gradient-main: linear-gradient(135deg, #7c3aed, #3b82f6);
    --gradient-glow: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(59, 130, 246, 0.15));

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px rgba(124, 58, 237, 0.2);
    --shadow-nav: 0 4px 30px rgba(0, 0, 0, 0.3);

    --btn-secondary-bg: rgba(255, 255, 255, 0.06);
    --btn-secondary-bg-hover: rgba(255, 255, 255, 0.1);
    --grid-line: rgba(255, 255, 255, 0.02);
    --hero-stats-bg: rgba(255, 255, 255, 0.04);
    --card-inset-highlight: rgba(255, 255, 255, 0.02);
    --float-badge-bg: rgba(19, 19, 31, 0.88);
    --card-featured-bg: linear-gradient(160deg, #12122a, #0e0e1c);
    --etapa-hover-bg: rgba(255, 255, 255, 0.03);
    --input-bg: rgba(255, 255, 255, 0.04);
    --navbar-bg: rgba(10, 10, 15, 0.9);
    --mobile-nav-bg: rgba(10, 10, 15, 0.97);
    --blob-opacity: 0.2;

    --font: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

:root[data-theme="light"] {
    --bg-primary: #f6f5fb;
    --bg-secondary: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #f1eefb;
    --border: rgba(20, 20, 40, 0.10);
    --border-hover: rgba(124, 58, 237, 0.45);

    --text-primary: #17171f;
    --text-secondary: #55556e;
    --text-muted: #8888a0;

    --gradient-glow: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(59, 130, 246, 0.08));

    --shadow-card: 0 4px 24px rgba(20, 20, 40, 0.08);
    --shadow-glow: 0 0 40px rgba(124, 58, 237, 0.15);
    --shadow-nav: 0 4px 30px rgba(20, 20, 40, 0.12);

    --btn-secondary-bg: rgba(20, 20, 40, 0.05);
    --btn-secondary-bg-hover: rgba(20, 20, 40, 0.09);
    --grid-line: rgba(20, 20, 40, 0.035);
    --hero-stats-bg: rgba(20, 20, 40, 0.035);
    --card-inset-highlight: rgba(20, 20, 40, 0.05);
    --float-badge-bg: rgba(255, 255, 255, 0.88);
    --card-featured-bg: linear-gradient(160deg, #efe9fb, #e3dbf8);
    --etapa-hover-bg: rgba(20, 20, 40, 0.035);
    --input-bg: rgba(20, 20, 40, 0.035);
    --navbar-bg: rgba(255, 255, 255, 0.85);
    --mobile-nav-bg: rgba(255, 255, 255, 0.97);
    --blob-opacity: 0.12;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-main);
    color: #fff;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.6);
}

.btn-secondary {
    background: var(--btn-secondary-bg);
    color: var(--text-primary);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--btn-secondary-bg-hover);
    border-color: var(--accent-violet);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* =========================================
   TYPOGRAPHY HELPERS
   ========================================= */
.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: var(--accent-violet);
    font-weight: 700;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-violet);
    margin-bottom: 12px;
}

.section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gradient-main);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

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

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--navbar-bg);
    backdrop-filter: blur(20px);
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-nav);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo img {
    height: 38px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.nav-logo img:hover {
    transform: scale(1.05);
}

.nav-logo .logo-light {
    display: none;
}

html[data-theme="light"] .nav-logo .logo-dark {
    display: none;
}

html[data-theme="light"] .nav-logo .logo-light {
    display: block;
}

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

.nav-link {
    padding: 7px 11px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-cta {
    background: var(--gradient-main) !important;
    color: #fff !important;
    padding: 7px 16px;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5);
}

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

.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--accent-violet);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    flex-shrink: 0;
    transition: var(--transition);
}

.theme-toggle:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.search-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    flex-shrink: 0;
    transition: var(--transition);
}

.search-toggle:hover {
    border-color: var(--border-hover);
    color: var(--accent-violet);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.search-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(6px);
    padding: 90px 24px 24px;
}

.search-overlay.show {
    display: block;
    animation: fadeInDown 0.25s ease both;
}

.search-modal {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.search-input-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    border-bottom: 1px solid var(--border);
}

.search-input-wrap i.fa-magnifying-glass {
    color: var(--text-muted);
    font-size: 16px;
}

.search-input-wrap input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    font-family: var(--font);
    font-size: 16px;
    color: var(--text-primary);
}

.search-input-wrap input::placeholder {
    color: var(--text-muted);
}

.search-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 16px;
    cursor: pointer;
    padding: 4px;
    transition: var(--transition);
}

.search-close:hover {
    color: var(--text-primary);
}

.search-results {
    max-height: 50vh;
    max-height: 50dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 8px;
}

.search-hint,
.search-empty {
    padding: 24px 16px;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

.search-result-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.search-result-item:hover,
.search-result-item.active {
    background: var(--bg-card-hover);
}

.search-result-top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-result-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.search-result-type {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-violet);
    background: rgba(124, 58, 237, 0.12);
    padding: 3px 9px;
    border-radius: 50px;
    flex-shrink: 0;
}

.search-result-excerpt {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

@media (max-width: 640px) {
    .search-overlay {
        padding: 60px 12px 12px;
    }

    .search-results {
        max-height: 42vh;
        max-height: 40dvh;
    }
}

.theme-toggle .fa-sun {
    display: none;
}

html[data-theme="light"] .theme-toggle .fa-sun {
    display: inline-block;
}

html[data-theme="light"] .theme-toggle .fa-moon {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* =========================================
   HERO
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: var(--blob-opacity);
    animation: floatBlob 8s ease-in-out infinite;
    transition: var(--transition);
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-purple);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-blue);
    bottom: -100px;
    right: -100px;
    animation-delay: 4s;
}

@keyframes floatBlob {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, 40px) scale(1.05);
    }
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 60px 60px;
}

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

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.3);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-violet);
    animation: fadeInDown 0.6s ease forwards;
}

.hero-title {
    font-size: clamp(36px, 6vw, 68px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.7;
    animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
    animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: var(--hero-stats-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 40px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.7s ease 0.4s both;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 0 32px;
}

.stat-value {
    font-size: 36px;
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-suffix {
    font-size: 22px;
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--border);
}

/* --- Hero split layout (copy + dashboard visual) --- */
.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: center;
    max-width: 1180px;
    width: 100%;
    text-align: left;
}

.hero-grid .hero-content {
    max-width: none;
}

.hero-grid .hero-actions,
.hero-grid .hero-stats {
    justify-content: flex-start;
}

.hero-grid .hero-stats {
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    perspective: 1600px;
    min-height: 420px;
}

.monitor {
    position: relative;
    transform: rotateY(-13deg) rotateX(5deg) rotateZ(1deg);
    transform-style: preserve-3d;
    border-radius: var(--radius-lg);
    background: linear-gradient(155deg, var(--bg-card-hover), var(--bg-card));
    border: 1px solid var(--border);
    box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.65), 0 0 0 1px var(--card-inset-highlight) inset;
    padding: 14px;
}

.monitor-topbar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 2px 6px 12px;
}

.monitor-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    display: inline-block;
}

.monitor-topbar span {
    margin-left: 8px;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--text-muted);
}

.monitor-screen {
    border-radius: var(--radius-md);
    background: var(--bg-primary);
    border: 1px solid var(--border);
    padding: 16px;
    display: grid;
    grid-template-columns: 1.3fr .9fr;
    gap: 12px;
}

.dash-panel {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px;
}

.dash-panel-wide {
    grid-column: 1 / -1;
}

.dash-panel-title {
    margin: 0 0 10px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    font-weight: 600;
}

.dash-chart {
    height: 96px;
}

.dash-chart svg {
    width: 100%;
    height: 100%;
    display: block;
}

.dash-chart-line {
    fill: none;
    stroke: url(#heroLineGrad);
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: dashDraw 1.8s .3s ease-out forwards;
}

.dash-chart-area {
    fill: url(#heroAreaGrad);
    opacity: 0;
    animation: dashFadeIn 1s 1.2s ease-out forwards;
}

@keyframes dashDraw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes dashFadeIn {
    to {
        opacity: 1;
    }
}

.dash-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 96px;
}

.dash-bars i {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: var(--gradient-main);
    transform-origin: bottom;
    animation: dashGrow .7s cubic-bezier(.2, .8, .2, 1) both;
}

@keyframes dashGrow {
    from {
        transform: scaleY(0);
        opacity: 0;
    }

    to {
        transform: scaleY(1);
        opacity: 1;
    }
}

.dash-rings {
    display: flex;
    gap: 14px;
    justify-content: space-around;
    padding-top: 6px;
}

.dash-ring {
    --p: 70;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(closest-side, var(--bg-card) 72%, transparent 73% 100%),
        conic-gradient(var(--accent-cyan) calc(var(--p) * 1%), var(--border) 0);
    font-size: 11px;
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

.dash-rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dash-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dash-row span {
    font-size: 11px;
    color: var(--text-muted);
    width: 72px;
    flex-shrink: 0;
}

.dash-track {
    flex: 1;
    height: 6px;
    border-radius: 3px;
    background: var(--border);
    overflow: hidden;
}

.dash-fill {
    height: 100%;
    border-radius: 3px;
    background: var(--gradient-main);
    transform-origin: left;
    animation: dashFill 1.2s .4s cubic-bezier(.2, .8, .2, 1) both;
}

@keyframes dashFill {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

/* --- Floating result badges --- */
.float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--float-badge-bg);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 10px 16px;
    box-shadow: var(--shadow-card);
    animation: badgeFloat 6s ease-in-out infinite;
    z-index: 2;
}

.float-badge-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.float-badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.float-badge-text small {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--text-muted);
}

.float-badge-text b {
    font-size: 17px;
    font-weight: 800;
}

.float-badge--sales {
    top: -6%;
    left: -8%;
}

.float-badge--sales .float-badge-icon {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.float-badge--sales b {
    color: #22c55e;
}

.float-badge--cpa {
    bottom: 8%;
    right: -10%;
    animation-delay: -2s;
}

.float-badge--cpa .float-badge-icon {
    background: rgba(59, 130, 246, 0.15);
    color: var(--accent-blue);
}

.float-badge--cpa b {
    color: var(--accent-blue);
}

.float-badge--leads {
    bottom: -7%;
    left: 8%;
    animation-delay: -4s;
}

.float-badge--leads .float-badge-icon {
    background: rgba(6, 182, 212, 0.15);
    color: var(--accent-cyan);
}

.float-badge--leads b {
    color: var(--accent-cyan);
}

@keyframes badgeFloat {

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

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

@media (prefers-reduced-motion: reduce) {

    .float-badge,
    .dash-chart-line,
    .dash-chart-area,
    .dash-bars i,
    .dash-fill {
        animation: none !important;
    }

    .dash-chart-line {
        stroke-dashoffset: 0;
    }

    .dash-chart-area {
        opacity: 1;
    }
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

@keyframes bounce {

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

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

/* =========================================
   ANALISADOR SEO
   ========================================= */
.seo-checker {
    padding: 100px 0;
}

.seo-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.25);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-violet);
    margin-bottom: 20px;
}

.seo-eyebrow i {
    font-size: 6px;
}

.seo-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 44px clamp(20px, 5vw, 56px);
    box-shadow: var(--shadow-card);
    max-width: 820px;
    margin: 0 auto;
    overflow: hidden;
}

.seo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-main);
}

.seo-card-title {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
}

.seo-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.seo-form input {
    flex: 1;
    min-width: 220px;
    background: var(--input-bg);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 14px 22px;
    font-family: var(--font);
    font-size: 15px;
    color: var(--text-primary);
    outline: none;
    transition: var(--transition);
}

.seo-form input:focus {
    border-color: var(--accent-violet);
    background: rgba(124, 58, 237, 0.05);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.seo-form input::placeholder {
    color: var(--text-muted);
}

.seo-form button {
    white-space: nowrap;
}

.seo-loading {
    display: none;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin-top: 28px;
    color: var(--text-secondary);
    font-size: 14px;
}

.seo-loading.show {
    display: flex;
}

.seo-spinner {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--border);
    border-top-color: var(--accent-violet);
    animation: seoSpin 0.8s linear infinite;
    flex-shrink: 0;
}

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

.seo-error {
    display: none;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding: 14px 16px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--radius-sm);
    color: #ef4444;
    font-size: 14px;
}

.seo-error.show {
    display: flex;
}

.seo-results {
    display: none;
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.seo-results.show {
    display: block;
    animation: fadeInUp 0.5s ease both;
}

.seo-scores {
    display: flex;
    justify-content: center;
    gap: clamp(20px, 5vw, 56px);
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.seo-score-ring {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.seo-score-ring .dash-ring {
    width: 84px;
    height: 84px;
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font);
    background:
        radial-gradient(closest-side, var(--bg-card) 74%, transparent 75% 100%),
        conic-gradient(var(--ring-color, var(--accent-violet)) calc(var(--p) * 1%), var(--border) 0);
    transition: background 0.6s ease;
}

.seo-score-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.seo-metrics {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.seo-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 18px;
    background: var(--hero-stats-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    min-width: 90px;
}

.seo-metric span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}

.seo-metric b {
    font-size: 16px;
    font-variant-numeric: tabular-nums;
}

.seo-cta {
    text-align: center;
}

.seo-cta p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

@media (max-width: 640px) {
    .seo-form {
        flex-direction: column;
    }

    .seo-form button {
        width: 100%;
        justify-content: center;
    }

    .seo-scores {
        gap: 20px;
    }

    .seo-score-ring .dash-ring {
        width: 68px;
        height: 68px;
        font-size: 16px;
    }
}

/* =========================================
   SOBRE
   ========================================= */
.sobre {
    padding: 100px 0;
    background: var(--bg-secondary);
    transition: var(--transition);
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
}

.sobre-visual {
    display: flex;
    justify-content: center;
}

.sobre-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    box-shadow: var(--shadow-card);
    width: 100%;
    max-width: 320px;
}

.sobre-avatar {
    position: relative;
    width: 140px;
    height: 140px;
}

.avatar-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--gradient-main);
    animation: spin 4s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.avatar-inner {
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--accent-violet);
    overflow: hidden;
}

.avatar-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
    display: block;
}

.sobre-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.badge-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.25);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-violet);
}

.sobre-text {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.75;
}

.sobre-features {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
}

.feature-icon {
    color: var(--accent-violet);
    font-size: 18px;
}

/* =========================================
   SERVIÇOS
   ========================================= */
.servicos {
    padding: 100px 0;
}

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


.servico-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.servico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-main);
    opacity: 0;
    transition: var(--transition);
}

.servico-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

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

.servico-card-featured {
    background: var(--card-featured-bg);
    border-color: rgba(124, 58, 237, 0.4);
}

.servico-card-featured::before {
    opacity: 1;
}

.card-featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gradient-main);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.servico-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.meta-icon {
    background: rgba(24, 119, 242, 0.15);
    color: #1877f2;
}

.google-icon {
    background: rgba(234, 67, 53, 0.15);
    color: #ea4335;
}

.consultoria-icon {
    background: rgba(124, 58, 237, 0.15);
    color: var(--accent-violet);
}

.sites-icon {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.whatsapp-ia-icon {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
}

.servico-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.servico-desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.servico-lista {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.servico-lista li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.servico-lista li i {
    color: var(--accent-violet);
    font-size: 12px;
}

.servico-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-violet);
    transition: var(--transition);
}

.servico-cta:hover {
    gap: 10px;
}

/* =========================================
   PROCESSO / FUNIL
   ========================================= */
.processo {
    padding: 100px 0;
    background: var(--bg-secondary);
    transition: var(--transition);
}

.processo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-top: 56px;
}

.processo-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.processo-etapas {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.etapa-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: var(--transition);
    cursor: default;
}

.etapa-item:hover {
    background: var(--etapa-hover-bg);
    border-color: var(--border);
    transform: translateX(6px);
}

.etapa-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.etapa-content {
    flex: 1;
}

.etapa-titulo {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.etapa-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* =========================================
   RESULTADOS
   ========================================= */
.resultados {
    padding: 100px 0;
    background: var(--bg-secondary);
    transition: var(--transition);
}

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

.resultado-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.resultado-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-main);
    transform: scaleX(0);
    transition: var(--transition);
}

.resultado-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.resultado-card:hover::after {
    transform: scaleX(1);
}

.resultado-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 20px;
    color: var(--accent-violet);
}

.resultado-num {
    font-size: 40px;
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.resultado-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

/* =========================================
   BLOG
   ========================================= */
.blog {
    padding: 100px 0;
    background: var(--bg-secondary);
}

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

.blog-more {
    text-align: center;
    margin-top: 48px;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
}

.blog-card-banner {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: rgba(255, 255, 255, 0.92);
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
}

.blog-card-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-card-banner.cat-tendencias,
.post-banner.cat-tendencias {
    background: var(--gradient-main);
}

.blog-card-banner.cat-google,
.post-banner.cat-google {
    background: linear-gradient(135deg, #ea4335, #fbbc05);
}

.blog-card-banner.cat-meta,
.post-banner.cat-meta {
    background: linear-gradient(135deg, #1877f2, #8b5cf6);
}

.blog-card-banner.cat-ia,
.post-banner.cat-ia {
    background: linear-gradient(135deg, #06b6d4, #7c3aed);
}

.blog-card-category {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    background: rgba(124, 58, 237, 0.12);
    color: var(--accent-purple);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 5px 12px;
    border-radius: 50px;
}

.blog-card-category.cat-google {
    background: rgba(234, 67, 53, 0.12);
    color: var(--accent-google);
}

.blog-card-category.cat-meta {
    background: rgba(24, 119, 242, 0.12);
    color: var(--accent-meta);
}

.blog-card-category.cat-ia {
    background: rgba(6, 182, 212, 0.12);
    color: var(--accent-cyan);
}

.blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--text-muted);
}

.blog-card-meta i {
    font-size: 10px;
}

.blog-card-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
}

.blog-card-excerpt {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
    flex: 1;
}

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

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

/* --- Blog listing page --- */
.blog-page-hero {
    padding: 150px 0 60px;
    text-align: center;
}

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 32px 0 56px;
}

.blog-filter {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.blog-filter:hover {
    border-color: var(--border-hover);
    color: var(--text-primary);
}

.blog-filter.active {
    background: var(--gradient-main);
    border-color: transparent;
    color: #fff;
}

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

.blog-page-grid .blog-card.is-hidden {
    display: none;
}

/* --- Post page --- */
.post-hero {
    padding: 150px 0 0;
    text-align: center;
}

.post-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.25);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--accent-violet);
    margin-bottom: 20px;
}

.post-title {
    font-size: clamp(28px, 4.5vw, 46px);
    font-weight: 800;
    line-height: 1.2;
    max-width: 800px;
    margin: 0 auto 20px;
}

.post-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.post-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.post-banner {
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    color: rgba(255, 255, 255, 0.92);
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
}

.post-cover {
    max-width: 1000px;
    margin: 0 auto;
}

.post-cover-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-nav);
}

.post-body {
    max-width: 720px;
    margin: 0 auto;
    padding: 56px 24px 40px;
    font-size: 17px;
    line-height: 1.85;
    color: var(--text-secondary);
}

.post-body h2 {
    color: var(--text-primary);
    font-size: 25px;
    font-weight: 700;
    margin: 40px 0 16px;
}

.post-body p {
    margin-bottom: 20px;
}

.post-body ul {
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.post-body ul li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.post-body ul li i {
    color: var(--accent-violet);
    margin-top: 6px;
    font-size: 12px;
}

.post-body blockquote {
    border-left: 3px solid var(--accent-violet);
    padding: 4px 0 4px 20px;
    font-style: italic;
    color: var(--text-primary);
    font-size: 19px;
    margin: 32px 0;
}

.post-cta {
    background: var(--bg-secondary);
    padding: 60px 0;
    text-align: center;
}

.post-cta p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 17px;
}

.post-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    margin-top: 32px;
}

.post-back:hover {
    color: var(--accent-violet);
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }

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

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

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

    .post-banner {
        height: 180px;
        font-size: 48px;
        border-radius: 0;
    }

    .post-cover-img {
        border-radius: 0;
    }

    .post-body {
        font-size: 16px;
    }
}

/* =========================================
   GEO: RESUMO RÁPIDO + FAQ
   ========================================= */
.geo-summary {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    max-width: 720px;
    margin: 0 auto 44px;
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent-violet);
    border-radius: var(--radius-md);
}

.geo-summary i {
    color: var(--accent-violet);
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.geo-summary-body strong {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--accent-violet);
    margin-bottom: 6px;
}

.geo-summary-body p {
    color: var(--text-primary);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.faq {
    padding: 100px 0;
}

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

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0 20px;
    transition: var(--transition);
}

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

.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 18px 0;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

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

.faq-item summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    color: var(--accent-violet);
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.faq-item[open] summary::after {
    transform: rotate(180deg);
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    padding: 0 0 18px;
    margin: 0;
}

.faq-post {
    margin: 44px 0;
}

.faq-post .faq-list {
    max-width: none;
}

.faq-post-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* =========================================
   DEPOIMENTOS
   ========================================= */
.depoimentos {
    padding: 100px 0;
    overflow: hidden;
}

.depoimentos-slider {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.depoimentos-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.depoimento-card {
    min-width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 48px;
}

.depoimento-stars {
    color: #f59e0b;
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

.depoimento-texto {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 28px;
    max-width: 80%;
}

.depoimento-autor {
    display: flex;
    align-items: center;
    gap: 16px;
}

.autor-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
}

.autor-info strong {
    display: block;
    font-size: 15px;
}

.autor-info span {
    font-size: 13px;
    color: var(--text-muted);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition);
}

.slider-btn:hover {
    border-color: var(--accent-violet);
    color: var(--accent-violet);
    transform: scale(1.05);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.dot.active {
    background: var(--accent-violet);
    width: 24px;
    border-radius: 4px;
}

/* =========================================
   CONTATO
   ========================================= */
.contato {
    padding: 100px 0;
    background: var(--bg-secondary);
    transition: var(--transition);
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contato-desc {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 36px;
}

.contato-canais {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.canal-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: var(--bg-card);
    transition: var(--transition);
}

.canal-item:hover {
    transform: translateX(6px);
    border-color: var(--border-hover);
}

.canal-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.canal-whatsapp .canal-icon {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
}

.canal-email .canal-icon {
    background: rgba(124, 58, 237, 0.15);
    color: var(--accent-violet);
}

.canal-instagram .canal-icon {
    background: rgba(225, 48, 108, 0.15);
    color: #e1306c;
}

.canal-text strong {
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
}

.canal-text span {
    font-size: 12px;
    color: var(--text-muted);
}

/* FORM */
.contato-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.contato-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--input-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-family: var(--font);
    font-size: 14px;
    color: var(--text-primary);
    transition: var(--transition);
    outline: none;
    resize: vertical;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-violet);
    background: rgba(124, 58, 237, 0.05);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-success {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-sm);
    color: #22c55e;
    font-size: 14px;
    font-weight: 500;
}

.form-success.show {
    display: flex;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    padding: 48px 0 24px;
    transition: var(--transition);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand p {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 8px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-violet);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--text-muted);
}

.footer-bottom .fa-heart {
    color: var(--accent-violet);
}

/* =========================================
   WHATSAPP FLOAT
   ========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition), opacity 0.5s ease;
    animation: waPulse 2.5s infinite;
    opacity: 0;
}

@keyframes waPulse {

    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), 0 0 0 8px rgba(37, 211, 102, 0.1);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    background: #1ebe5d;
}

.whatsapp-tooltip {
    position: absolute;
    right: 68px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 50px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================
   FUNIL CSS (substitui imagem)
   ========================================= */
.funil-css {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: 380px;
    padding: 8px 0;
}

.funil-step {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    border-radius: var(--radius-md);
    padding: 14px 24px;
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: default;
    width: 100%;
    justify-content: center;
}

.funil-step:hover {
    transform: scale(1.03);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
}

.funil-step i {
    font-size: 18px;
}

.funil-step-1 { background: rgba(139, 92, 246, 0.12); border-color: rgba(139, 92, 246, 0.3); color: #a78bfa; width: 94%; }
.funil-step-2 { background: rgba(239, 68, 68, 0.10); border-color: rgba(239, 68, 68, 0.3); color: #f87171; width: 86%; }
.funil-step-3 { background: rgba(20, 184, 166, 0.10); border-color: rgba(20, 184, 166, 0.3); color: #2dd4bf; width: 78%; }
.funil-step-4 { background: rgba(245, 158, 11, 0.10); border-color: rgba(245, 158, 11, 0.3); color: #fbbf24; width: 70%; }
.funil-step-5 { background: rgba(59, 130, 246, 0.10); border-color: rgba(59, 130, 246, 0.3); color: #60a5fa; width: 62%; }
.funil-step-6 {
    background: var(--gradient-main);
    border-color: transparent;
    color: #fff;
    width: 54%;
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.45);
    animation: pulseFunil 2.5s ease-in-out infinite;
}

@keyframes pulseFunil {
    0%, 100% { box-shadow: 0 8px 30px rgba(124, 58, 237, 0.45); }
    50% { box-shadow: 0 8px 40px rgba(124, 58, 237, 0.75); }
}

.funil-arrow {
    font-size: 12px;
    color: var(--text-muted);
    padding: 2px 0;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1024px) {
    .servicos-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-grid .hero-actions,
    .hero-grid .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        min-height: 340px;
        max-width: 480px;
        margin: 0 auto;
    }

    .float-badge--sales {
        left: 2%;
        top: -4%;
    }

    .float-badge--cpa {
        right: 2%;
    }

    .float-badge--leads {
        left: 2%;
    }
}

@media (max-width: 1100px) and (min-width: 769px) {
    .nav-container {
        padding: 0 16px;
    }

    .nav-links {
        gap: 0;
    }

    .nav-link {
        padding: 6px 8px;
        font-size: 12px;
    }

    .nav-cta {
        padding: 6px 12px;
    }

    .nav-actions {
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--mobile-nav-bg);
        backdrop-filter: blur(20px);
        justify-content: center;
        align-items: center;
        gap: 16px;
        z-index: 999;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-logo img {
        height: 28px;
    }

    .nav-link {
        font-size: 20px;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

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

    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-stats {
        padding: 20px;
        gap: 0;
    }

    .stat-item {
        padding: 0 16px;
    }

    .hero-visual {
        display: none;
    }

    .stat-value {
        font-size: 26px;
    }

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

    .sobre-visual {
        display: none;
    }

    .processo-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .processo-visual {
        order: 2;
    }

    .processo-etapas {
        order: 1;
    }

    .funil-css {
        max-width: 100%;
        width: 100%;
    }

    .funil-step-1 { width: 100%; }
    .funil-step-2 { width: 93%; }
    .funil-step-3 { width: 86%; }
    .funil-step-4 { width: 79%; }
    .funil-step-5 { width: 72%; }
    .funil-step-6 { width: 65%; }

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

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

    .contato-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .depoimento-card {
        padding: 28px 24px;
    }

    .depoimento-texto {
        font-size: 15px;
        max-width: 100%;
    }

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

    .footer-links {
        gap: 10px 16px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .stat-divider {
        display: none;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

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