/*
Theme Name: SEOMais Pro
Theme URI: https://seomais.com.br
Author: Allan - SEOMais
Author URI: https://seomais.com.br
Description: Tema profissional para SEO programático - Agência de SEO Rio de Janeiro
Version: 3.0.0
License: GNU General Public License v2 or later
Text Domain: seomais

SEOMais Pro - A Maior Agência de SEO do Rio de Janeiro
Especialistas em Otimização de Sites, SEO Local e Marketing Digital
*/

/* ============================================
   CSS VARIABLES - DESIGN SYSTEM PREMIUM
   ============================================ */
:root {
    /* Brand Colors */
    --primary: #0055FF;
    --primary-rgb: 0, 85, 255;
    --primary-dark: #0044CC;
    --primary-darker: #003399;
    --primary-light: #E8F0FF;
    --primary-glow: rgba(0, 85, 255, 0.15);
    
    /* Secondary Colors */
    --secondary: #00D4AA;
    --secondary-rgb: 0, 212, 170;
    --secondary-dark: #00B894;
    --secondary-light: #E8FFF8;
    
    /* Accent */
    --accent: #FF6B35;
    --accent-light: #FFF0EB;
    
    /* Neutrals */
    --dark: #0A0F1C;
    --dark-blue: #0D1829;
    --dark-card: #111827;
    --gray-900: #111827;
    --gray-800: #1F2937;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-500: #6B7280;
    --gray-400: #9CA3AF;
    --gray-300: #D1D5DB;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --gray-50: #F9FAFB;
    --white: #FFFFFF;
    
    /* Semantic */
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    --info: #3B82F6;
    
    /* Typography */
    --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
    
    /* Spacing Scale */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.25rem;
    --radius-3xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 60px rgba(var(--primary-rgb), 0.2);
    --shadow-glow-lg: 0 0 100px rgba(var(--primary-rgb), 0.3);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.12);
    
    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --transition-fast: 150ms var(--ease-out);
    --transition-base: 250ms var(--ease-out);
    --transition-slow: 400ms var(--ease-out);
    --transition-slower: 600ms var(--ease-out);
    
    /* Container */
    --container-max: 1280px;
    --container-narrow: 800px;
    --container-wide: 1440px;
    
    /* Header */
    --header-height: 80px;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

::selection {
    background: var(--primary);
    color: var(--white);
}

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

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

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
}

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

h4 {
    font-size: 1.125rem;
}

p {
    margin-bottom: var(--space-4);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-gold {
    background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 50%, #F59E0B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.container--narrow {
    max-width: var(--container-narrow);
}

.container--wide {
    max-width: var(--container-wide);
}

.section {
    padding: var(--space-24) 0;
    position: relative;
}

.section--sm {
    padding: var(--space-16) 0;
}

.section--lg {
    padding: var(--space-32) 0;
}

.section--dark {
    background: var(--dark);
    color: var(--gray-300);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
    color: var(--white);
}

.section--gray {
    background: var(--gray-50);
}

.section--gradient {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--dark-blue);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8125rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

.top-bar span {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.top-bar i {
    color: var(--secondary);
    font-size: 0.75rem;
}

.top-bar-social {
    display: flex;
    gap: var(--space-3);
}

.top-bar-social a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.top-bar-social a:hover {
    color: var(--secondary);
}

/* ============================================
   HEADER - PREMIUM UX
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
}

.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: var(--space-6);
}

/* ============================================
   LOGO - PREMIUM
   ============================================ */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #0055FF 0%, #00D4AA 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.375rem;
    box-shadow: 0 8px 20px rgba(0, 85, 255, 0.35);
    transition: all var(--transition-base);
    position: relative;
}

.logo:hover .logo-icon {
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 12px 30px rgba(0, 85, 255, 0.45);
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--gray-400);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.logo-text strong {
    color: var(--dark);
    font-weight: 800;
}

.logo-tagline {
    font-size: 0.6875rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   NAVIGATION - PREMIUM
   ============================================ */
.nav-main {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-main > a,
.nav-dropdown-trigger {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--gray-700);
    padding: 12px 18px;
    border-radius: 12px;
    transition: all var(--transition-fast);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.nav-main > a i,
.nav-dropdown-trigger > i:first-child {
    font-size: 1rem;
    color: var(--gray-400);
    transition: all var(--transition-fast);
}

.nav-main > a span,
.nav-dropdown-trigger span {
    position: relative;
}

.nav-main > a:hover,
.nav-main > a.active,
.nav-dropdown:hover .nav-dropdown-trigger {
    color: var(--primary);
    background: var(--primary-light);
}

.nav-main > a:hover i,
.nav-main > a.active i,
.nav-dropdown:hover .nav-dropdown-trigger > i:first-child {
    color: var(--primary);
}

.nav-main > a.active {
    background: linear-gradient(135deg, var(--primary) 0%, #0077FF 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 85, 255, 0.35);
}

.nav-main > a.active i {
    color: var(--white);
}

.nav-arrow {
    font-size: 0.625rem !important;
    margin-left: 2px;
    transition: transform var(--transition-fast);
}

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

/* ============================================
   DROPDOWN MENU - PREMIUM
   ============================================ */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 280px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 100;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid transparent;
    border-bottom-color: var(--white);
    border-top: 0;
}

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

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    color: var(--gray-700);
    border-radius: 12px;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.nav-dropdown-menu a:hover {
    background: var(--primary-light);
}

.dropdown-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 12px;
    color: var(--gray-500);
    font-size: 1.125rem;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.nav-dropdown-menu a:hover .dropdown-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.dropdown-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dropdown-text strong {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--dark);
}

.dropdown-text span {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

/* Regions Dropdown */
.nav-dropdown-menu--regions {
    min-width: 320px;
    padding: 16px;
}

.dropdown-regions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.dropdown-regions-grid a {
    padding: 10px 14px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    background: var(--gray-50);
    border-radius: 8px;
    text-align: center;
}

.dropdown-regions-grid a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.dropdown-regions-grid a.region-featured {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--primary) 0%, #0077FF 100%);
    color: var(--white);
    font-weight: 600;
}

.dropdown-regions-grid a.region-featured:hover {
    transform: scale(1.02);
}

.dropdown-view-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: var(--gray-50);
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}

.dropdown-view-all:hover {
    background: var(--primary-light);
}

/* ============================================
   HEADER CTA BUTTONS
   ============================================ */
.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    transition: all var(--transition-fast);
}

.btn-whatsapp i {
    font-size: 1.25rem;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

.btn-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, #0077FF 100%);
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 85, 255, 0.35);
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-cta:hover::before {
    left: 100%;
}

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

.btn-cta i {
    font-size: 0.875rem;
    transition: transform var(--transition-fast);
}

.btn-cta:hover i {
    transform: translateX(4px);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 52px;
    height: 52px;
    background: var(--gray-100);
    border: 2px solid var(--gray-200);
    border-radius: 14px;
    cursor: pointer;
    z-index: 1001;
    transition: all var(--transition-fast);
}

.menu-toggle:hover {
    background: var(--gray-200);
    border-color: var(--gray-300);
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: all var(--transition-base);
}

.menu-toggle.active {
    background: var(--primary);
    border-color: var(--primary);
}

.menu-toggle.active span {
    background: var(--white);
}

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

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

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

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 15, 28, 0.85);
    backdrop-filter: blur(10px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

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

.mobile-menu-inner {
    position: absolute;
    top: 0;
    right: 0;
    width: 360px;
    max-width: 90%;
    height: 100%;
    background: var(--white);
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

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

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-6);
    border-bottom: 1px solid var(--gray-200);
}

.mobile-menu-close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.25rem;
    color: var(--gray-600);
    transition: all var(--transition-fast);
}

.mobile-menu-close:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.mobile-nav {
    flex: 1;
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    color: var(--gray-700);
    font-size: 1.0625rem;
    font-weight: 600;
    border-radius: 14px;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.mobile-nav a i {
    width: 24px;
    text-align: center;
    color: var(--gray-400);
    font-size: 1.125rem;
}

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

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

.mobile-menu-cta {
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid var(--gray-200);
}

.mobile-menu-footer {
    padding: var(--space-6);
    background: var(--gray-50);
}

.mobile-menu-footer p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-600);
    font-size: 0.875rem;
    margin: 0 0 8px 0;
}

.mobile-menu-footer i {
    color: var(--primary);
}

/* ============================================
   RESPONSIVE HEADER
   ============================================ */
@media (max-width: 1280px) {
    .nav-main > a span,
    .nav-dropdown-trigger span {
        display: none;
    }
    
    .nav-main > a,
    .nav-dropdown-trigger {
        padding: 12px;
    }
    
    .logo-tagline {
        display: none;
    }
}

@media (max-width: 1024px) {
    .top-bar {
        display: none;
    }
    
    .nav-main {
        display: none;
    }
    
    .btn-whatsapp span {
        display: none;
    }
    
    .btn-cta {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .header-inner {
        height: 70px;
    }
}

@media (max-width: 480px) {
    .logo-text-wrap {
        display: none;
    }
    
    .header-cta {
        gap: 8px;
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 0.875rem 1.75rem;
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1;
    border: none;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary) 0%, #0077FF 100%);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(var(--primary-rgb), 0.35);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.45);
    color: var(--white);
}

.btn--primary:active {
    transform: translateY(0);
}

.btn--secondary {
    background: var(--white);
    color: var(--dark);
    border: 2px solid var(--gray-200);
}

.btn--secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

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

.btn--outline:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

.btn--ghost {
    background: transparent;
    color: var(--primary);
    padding: var(--space-2) var(--space-4);
}

.btn--ghost:hover {
    background: var(--primary-light);
}

.btn--large {
    padding: 1.125rem 2.5rem;
    font-size: 1rem;
    border-radius: var(--radius-2xl);
}

.btn--icon {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: var(--radius-lg);
}

/* ============================================
   HERO SECTION - SEO RIO DE JANEIRO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    background: var(--dark-blue);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(var(--primary-rgb), 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(var(--secondary-rgb), 0.15) 0%, transparent 40%),
        radial-gradient(ellipse 50% 30% at 20% 80%, rgba(var(--primary-rgb), 0.1) 0%, transparent 40%);
    pointer-events: none;
}

/* Grid pattern */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.hero-content {
    max-width: 640px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-2) var(--space-5);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-300);
    margin-bottom: var(--space-6);
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--secondary);
    font-size: 0.875rem;
}

.hero h1 {
    color: var(--white);
    margin-bottom: var(--space-6);
    line-height: 1.1;
}

.hero h1 .highlight {
    position: relative;
    color: var(--secondary);
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    right: 0;
    height: 0.15em;
    background: var(--secondary);
    opacity: 0.3;
    border-radius: var(--radius-full);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-400);
    margin-bottom: var(--space-8);
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-12);
}

.hero-stats {
    display: flex;
    gap: var(--space-10);
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
    text-align: left;
}

.hero-stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.02em;
}

.hero-stat-value span {
    color: var(--secondary);
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: var(--space-1);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    backdrop-filter: blur(20px);
    width: 100%;
    max-width: 480px;
}

.hero-visual-header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-visual-dots {
    display: flex;
    gap: var(--space-2);
}

.hero-visual-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.hero-visual-dots span:nth-child(1) { background: #FF5F57; }
.hero-visual-dots span:nth-child(2) { background: #FEBC2E; }
.hero-visual-dots span:nth-child(3) { background: #28C840; }

.hero-visual-url {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-2) var(--space-4);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--gray-400);
}

.hero-search-result {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    margin-bottom: var(--space-4);
}

.hero-search-result:first-of-type {
    border: 1px solid rgba(var(--secondary-rgb), 0.3);
    background: rgba(var(--secondary-rgb), 0.05);
}

.hero-search-url {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: var(--space-1);
}

.hero-search-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--space-1);
}

.hero-search-result:first-of-type .hero-search-title {
    color: var(--secondary);
}

.hero-search-desc {
    font-size: 0.8125rem;
    color: var(--gray-400);
    line-height: 1.5;
}

.hero-rank-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    background: var(--secondary);
    color: var(--dark);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-sm);
    font-size: 0.6875rem;
    font-weight: 700;
    margin-left: var(--space-2);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: var(--space-4) auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.service-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

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

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(var(--primary-rgb), 0.1) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
    font-size: 1.5rem;
    color: var(--primary);
    transition: all var(--transition-base);
}

.service-icon i {
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary) 0%, #0077FF 100%);
    transform: scale(1.05);
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-icon--dark {
    background: rgba(0, 212, 170, 0.15);
    color: var(--secondary);
}

.service-card:hover .service-icon--dark {
    background: linear-gradient(135deg, var(--secondary) 0%, #00E5B8 100%);
}

.service-card:hover .service-icon--dark i {
    color: var(--dark);
}

.service-card h3 {
    margin-bottom: var(--space-3);
    font-size: 1.25rem;
}

.service-card p {
    color: var(--gray-500);
    margin-bottom: var(--space-6);
    line-height: 1.6;
}

/* ============================================
   LOCATIONS GRID (ESTADOS)
   ============================================ */
.locations-section {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: var(--space-4);
}

.location-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-5);
    text-align: center;
    transition: all var(--transition-base);
    text-decoration: none;
    color: var(--gray-700);
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

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

.location-card-icon {
    position: relative;
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: var(--space-2);
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    transition: all var(--transition-base);
}

.location-card:hover .location-card-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.location-card h4 {
    position: relative;
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: var(--space-1);
}

.location-card span {
    position: relative;
    font-size: 0.75rem;
    color: var(--gray-400);
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
    padding: var(--space-4) 0;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.breadcrumbs-list {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    list-style: none;
    font-size: 0.875rem;
    flex-wrap: wrap;
}

.breadcrumbs-list li {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.breadcrumbs-list li:not(:last-child)::after {
    content: '›';
    color: var(--gray-400);
    font-weight: 500;
}

.breadcrumbs-list a {
    color: var(--gray-500);
    transition: color var(--transition-fast);
}

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

.breadcrumbs-list .current {
    color: var(--gray-800);
    font-weight: 500;
}

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

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    padding: var(--space-6) 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--dark);
    transition: color var(--transition-fast);
}

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

.faq-icon {
    width: 28px;
    height: 28px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    transition: all var(--transition-base);
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--gray-600);
    transition: transform var(--transition-base);
}

.faq-icon::before {
    width: 12px;
    height: 2px;
}

.faq-icon::after {
    width: 2px;
    height: 12px;
}

.faq-item.active .faq-icon {
    background: var(--primary);
}

.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after {
    background: var(--white);
}

.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

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

.faq-answer-inner {
    padding-bottom: var(--space-6);
    color: var(--gray-600);
    line-height: 1.8;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--dark-blue);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 60% 50% at 50% 100%, rgba(var(--primary-rgb), 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 20% 20%, rgba(var(--secondary-rgb), 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: var(--space-4);
}

.cta-section p {
    font-size: 1.125rem;
    color: var(--gray-400);
    margin-bottom: var(--space-8);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--dark);
    color: var(--gray-400);
    padding: var(--space-20) 0 var(--space-8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

.footer-brand {
    max-width: 320px;
}

.footer-brand .logo {
    margin-bottom: var(--space-4);
}

.footer-brand .logo strong {
    color: var(--white);
}

.footer-brand p {
    line-height: 1.7;
    margin-bottom: 0;
}

.footer-title {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-5);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-3);
}

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

.footer-links a:hover {
    color: var(--white);
    padding-left: var(--space-2);
}

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

.footer-bottom p {
    margin: 0;
    font-size: 0.875rem;
}

.footer-bottom a {
    color: var(--gray-400);
}

.footer-bottom a:hover {
    color: var(--white);
}

/* ============================================
   INTERNAL LINKS WIDGET
   ============================================ */
.internal-links {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
}

.internal-links h3 {
    margin-bottom: var(--space-5);
    font-size: 1.125rem;
}

.internal-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: var(--space-3);
}

.internal-links a {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    background: var(--gray-50);
    border: 1px solid transparent;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    color: var(--gray-700);
    transition: all var(--transition-fast);
}

.internal-links a::before {
    content: '→';
    color: var(--gray-400);
    transition: transform var(--transition-fast);
}

.internal-links a:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
}

.internal-links a:hover::before {
    transform: translateX(4px);
    color: var(--primary);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .nav-main {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: calc(var(--header-height) + var(--space-12)) 0 var(--space-12);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--space-6);
        align-items: center;
    }
    
    .hero-stat {
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .section {
        padding: var(--space-16) 0;
    }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: var(--space-2); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }

.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: var(--space-2); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }

.hidden { display: none !important; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Animation classes */
.animate-fade-in {
    animation: fadeIn 0.6s var(--ease-out) forwards;
}

.animate-slide-up {
    animation: slideUp 0.6s var(--ease-out) forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.scroll-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate:nth-child(2) { transition-delay: 0.1s; }
.scroll-animate:nth-child(3) { transition-delay: 0.2s; }
.scroll-animate:nth-child(4) { transition-delay: 0.3s; }
.scroll-animate:nth-child(5) { transition-delay: 0.4s; }
.scroll-animate:nth-child(6) { transition-delay: 0.5s; }
