/* ==========================================
   POWER JOB NETWORK - REDESIGNED STYLES
   Modern, Bold, Professional
   ========================================== */

/* ==========================================
   1. CSS VARIABLES & RESET
   ========================================== */
   :root {
    /* Primary Colors - COLORES CORPORATIVOS REFINADOS */
    --primary: #B03434;           /* Rojo corporativo del logo */
    --primary-dark: #8E2A2A;      /* Rojo oscuro más profundo */
    --primary-light: #C54545;     /* Variante más clara */
    --primary-glow: rgba(176, 52, 52, 0.3);
    
    /* Secondary Colors - MÁS CORPORATIVOS */
    --secondary: #1A2332;         /* Azul oscuro más profesional */
    --secondary-light: #2D3E50;   
    --secondary-dark: #0F1419;
    
    /* Accent Colors */
    --accent: #8E2A2A;
    --accent-light: #B03434;
    --success: #0F9D58;           /* Verde más corporativo */
    --warning: #F4B400;           /* Amarillo Google */
    --error: #DB4437;             /* Rojo de error corporativo */
    
    /* Neutral Colors - PALETA MÁS SOFISTICADA */
    --white: #FFFFFF;
    --gray-50: #FAFBFC;
    --gray-100: #F4F6F8;
    --gray-200: #E8ECF0;
    --gray-300: #D1D8DD;
    --gray-400: #9AA5B1;
    --gray-500: #697386;
    --gray-600: #4F5D75;
    --gray-700: #2D3E50;
    --gray-800: #1A2332;
    --gray-900: #0F1419;
    --black: #000000;
    
    /* Gradients - Actualizados con colores corporativos del logo */
    --gradient-primary: linear-gradient(135deg, #B03434 0%, #8E2A2A 100%);
    --gradient-dark: linear-gradient(135deg, #1A2332 0%, #0F1419 100%);
    --gradient-hero: linear-gradient(135deg, #0F1419 0%, #1A2332 50%, #0F1419 100%);
    --gradient-glow: radial-gradient(circle, rgba(176, 52, 52, 0.25) 0%, transparent 70%);
    --gradient-card: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
    
    /* Typography - MÁS PROFESIONAL */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    --font-display: 'Sora', var(--font-primary);
    --font-mono: 'JetBrains Mono', 'SF Mono', 'Monaco', 'Consolas', monospace;
    
    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --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 40px var(--primary-glow);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
    --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Z-index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-modal: 300;
    --z-tooltip: 400;
    --z-notification: 500;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

@media (min-width: 1536px) {
    .container {
        max-width: 1440px;
    }
}

/* ==========================================
   2. TOP BAR - CORPORATIVO
   ========================================== */
.top-bar {
    background: linear-gradient(135deg, #0F1419 0%, #1A2332 100%);
    padding: 10px 0;
    border-bottom: 1px solid rgba(176, 52, 52, 0.2);
    position: relative;
}

.top-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(176, 52, 52, 0.5) 50%, 
        transparent 100%);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.contact-info {
    display: flex;
    gap: var(--space-xl);
}

.contact-link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--gray-300);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.contact-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-light);
}

.contact-link:hover::before {
    width: 100%;
}

.contact-link svg {
    opacity: 0.8;
}

.credentials {
    display: flex;
    gap: 12px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(176, 52, 52, 0.12);
    border: 1px solid rgba(176, 52, 52, 0.25);
    border-radius: var(--radius-full);
    color: var(--primary-light);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(176, 52, 52, 0.2);
    border-color: rgba(176, 52, 52, 0.4);
    transform: translateY(-1px);
}

.badge-glow {
    background: rgba(176, 52, 52, 0.15);
    border-color: rgba(176, 52, 52, 0.35);
    box-shadow: 0 0 20px rgba(176, 52, 52, 0.15);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
    box-shadow: 0 0 8px var(--success);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--gray-300);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-glow {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
    color: var(--primary);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

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

/* ==========================================
   3. NAVIGATION - CORPORATIVO
   ========================================== */
nav {
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom-color: var(--gray-300);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 14px var(--space-lg);
}

/* Logo */
.logo-wrapper {
    display: flex;
    align-items: center;
    z-index: 10;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.logo-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.logo-wrapper:hover .logo-icon {
    transform: rotate(5deg) scale(1.02);
}

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

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

.logo-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--secondary-dark);
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.logo-tag {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Nav Menu */
.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    gap: 4px;
}

.nav-link {
    position: relative;
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-600);
    border-radius: 10px;
    transition: all 0.3s ease;
    letter-spacing: 0.2px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 30px;
    height: 2px;
    background: var(--primary);
    border-radius: var(--radius-full);
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
    background: var(--gray-100);
}

.nav-link:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.nav-link.active {
    color: var(--primary);
    background: rgba(176, 52, 52, 0.08);
}

.nav-link.active::before {
    transform: translateX(-50%) scaleX(1);
}

/* Nav Right */
.nav-right {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.btn-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 12px rgba(176, 52, 52, 0.25);
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn-nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-nav:hover::before {
    opacity: 1;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(176, 52, 52, 0.35);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    z-index: 9999;
    background: transparent;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.mobile-toggle:hover {
    background: var(--gray-100);
}

.mobile-toggle:active {
    transform: scale(0.95);
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--secondary-dark);
    border-radius: var(--radius-full);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-toggle.active {
    background: transparent;
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: var(--white);
}

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

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: var(--white);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.97) 0%, rgba(26, 35, 50, 0.97) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.645, 0.045, 0.355, 1),
                visibility 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.mobile-menu-overlay::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(176, 52, 52, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: var(--space-3xl) var(--space-lg);
    gap: var(--space-3xl);
    max-width: 500px;
    margin: 0 auto;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    width: 100%;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 24px;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    text-align: left;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    letter-spacing: 0.3px;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary);
    border-radius: 0 3px 3px 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-link::after {
    content: '→';
    font-size: 20px;
    color: var(--gray-400);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-overlay.active .mobile-nav-links li:nth-child(1) .mobile-nav-link { transition-delay: 0.1s; }
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(2) .mobile-nav-link { transition-delay: 0.15s; }
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(3) .mobile-nav-link { transition-delay: 0.2s; }
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(4) .mobile-nav-link { transition-delay: 0.25s; }
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(5) .mobile-nav-link { transition-delay: 0.3s; }

.mobile-nav-link:hover,
.mobile-nav-link:active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    transform: translateX(4px);
    padding-left: 28px;
}

.mobile-nav-link:hover::before {
    opacity: 1;
}

.mobile-nav-link:hover::after {
    opacity: 1;
    transform: translateX(0);
    color: var(--primary);
}

.mobile-nav-link.active {
    background: rgba(180, 56, 53, 0.12);
    color: var(--primary);
    padding-left: 28px;
}

.mobile-nav-link.active::before {
    opacity: 1;
}

.mobile-menu-cta {
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-overlay.active .mobile-menu-cta {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.35s;
}

.btn-mobile-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 32px;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-full);
    box-shadow: 0 8px 24px var(--primary-glow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn-mobile-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-mobile-primary:hover::before {
    opacity: 1;
}

.btn-mobile-primary:hover,
.btn-mobile-primary:active {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px var(--primary-glow);
}

/* ==========================================
   4. HERO SECTION
   ========================================== */
/* ==========================================
   HERO VIDEO BACKGROUND
   ========================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Contenedor del video */
.hero-bg-video {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

/* Video */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Oscurecer el video */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

/* Contenido por encima */
.hero-container {
    position: relative;
    z-index: 2;
}

   
   .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gradient-hero);
}

/* Hero Background */
.hero-bg {
    position: absolute;    inset: 0;
    overflow: hidden;
    
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(180, 56, 53, 0.15), transparent),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(160, 51, 53, 0.1), transparent);
}

.hero-grid {
    position: absolute;
    inset: 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;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -100px;
    opacity: 0.15;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    bottom: -100px;
    left: -100px;
    opacity: 0.1;
    animation-delay: -5s;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: var(--primary-light);
    top: 50%;
    left: 30%;
    opacity: 0.08;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 10px) scale(1.02); }
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: var(--space-4xl) var(--space-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

/* Hero Content */
.hero-content {
    max-width: 640px;
}

/* Announcement Badge */
.announcement {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 6px 6px 6px 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-xl);
    cursor: pointer;
    transition: var(--transition-base);
}

.announcement:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.announcement-badge {
    padding: 4px 10px;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
}

.announcement-text {
    color: var(--gray-300);
    font-size: 13px;
    font-weight: 500;
    padding: 0 var(--space-sm);
}

.announcement svg {
    color: var(--gray-400);
    margin-right: var(--space-sm);
}

/* Hero Title */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    letter-spacing: -1.5px;
    margin-bottom: var(--space-lg);
}

.text-gradient {
    display: block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-400);
    margin-bottom: var(--space-xl);
    max-width: 520px;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

/* Hero Trust */
.hero-trust {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.trust-avatars {
    display: flex;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-700);
    border: 2px solid var(--secondary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-left: -10px;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-count {
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
}

.trust-text {
    color: var(--gray-400);
    font-size: 14px;
}

.trust-text strong {
    color: var(--white);
}

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

/* Floating Cards */
.floating-cards {
    position: absolute;
    inset: 0;
}

.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    animation: float-card 6s ease-in-out infinite;
}

.float-card-1 {
    top: 10%;
    right: 0;
    animation-delay: 0s;
}

.float-card-2 {
    top: 45%;
    right: 15%;
    animation-delay: -2s;
}

.float-card-3 {
    bottom: 15%;
    right: 5%;
    animation-delay: -4s;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.float-card-icon {
    font-size: 32px;
}

.float-card-content {
    display: flex;
    flex-direction: column;
}

.float-card-value {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.float-card-label {
    font-size: 13px;
    color: var(--gray-400);
    margin-top: 4px;
}

/* Hero Graphic */
.hero-graphic {
    position: relative;
    width: 300px;
    height: 300px;
}

.graphic-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.graphic-ring-1 {
    inset: 0;
    animation: rotate 30s linear infinite;
}

.graphic-ring-2 {
    inset: 30px;
    border-style: dashed;
    animation: rotate 25s linear infinite reverse;
}

.graphic-ring-3 {
    inset: 60px;
    animation: rotate 20s linear infinite;
}

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

.graphic-center {
    position: absolute;
    inset: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
}

.center-icon {
    font-size: 48px;
}
/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--gray-500);
    font-size: 12px;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--gray-600);
    border-radius: var(--radius-full);
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--gray-500);
    border-radius: var(--radius-full);
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.3; }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ==========================================
   5. BUTTONS
   ========================================== */
   .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-lg {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 16px;
    border-radius: var(--radius-xl);
}

.btn-sm {
    padding: var(--space-sm) var(--space-md);
    font-size: 13px;
}

.btn-full {
    width: 100%;
}

/* Primary Button */
.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 14px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

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

/* Secondary Button */
.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Outline Button */
.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

/* Light Button */
.btn-light {
    background: var(--white);
    color: var(--secondary-dark);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* Ghost Button */
.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Button Icon */
.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

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


/* ==========================================
   7. STATS SECTION
   ========================================== */
.stats-section {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.stat-item {
    text-align: center;
    padding: var(--space-xl);
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: var(--secondary-dark);
    line-height: 1;
    display: inline;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    display: inline;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-500);
    margin-top: var(--space-sm);
    margin-bottom: var(--space-md);
}

.stat-bar {
    height: 4px;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    width: var(--fill);
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.5s ease-out;
}

.stat-item.animated .stat-fill {
    transform: scaleX(1);
}

/* ==========================================
   8. SECTION HEADER (Shared)
   ========================================== */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-3xl);
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(180, 56, 53, 0.1);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.section-tag-light {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-light);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--secondary-dark);
    letter-spacing: -1px;
    margin-bottom: var(--space-md);
}

.section-title-light {
    color: var(--white);
}

.section-desc {
    font-size: 18px;
    color: var(--gray-500);
    line-height: 1.7;
}

.section-desc-light {
    color: var(--gray-400);
}

/* ==========================================
   9. SPECIALTIES SECTION (Bento Grid)
   ========================================== */
.specialties-section {
    padding: var(--space-4xl) 0;
    background: var(--gray-50);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: var(--space-lg);
}

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

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--gray-300);
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-base);
}

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

/* Bento Sizes */
.bento-lg {
    grid-column: span 5;
    grid-row: span 2;
    padding: var(--space-2xl);
}

.bento-md {
    grid-column: span 7;
}

/* Ajuste para 2 small cards */
.bento-sm {
    grid-column: span 6; /* Cada una ocupa 6 columnas = mitad */
}

@media (max-width: 768px) {
    .bento-sm {
        grid-column: span 12; /* En móvil ocupan todo el ancho */
    }
}

/* Bento Content */
.bento-badge {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    padding: 6px 12px;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
}

.bento-icon {
    font-size: 48px;
    margin-bottom: var(--space-lg);
}

.bento-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: var(--space-md);
}

.bento-list {
    margin-bottom: var(--space-lg);
}

.bento-list li {
    position: relative;
    padding: var(--space-sm) 0;
    padding-left: var(--space-lg);
    color: var(--gray-600);
    font-size: 15px;
    border-bottom: 1px solid var(--gray-100);
}

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

.bento-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

.bento-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--gray-200);
}

.bento-tag {
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 500;
}

.bento-link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
}

.bento-link:hover {
    gap: var(--space-md);
}

.bento-sm .bento-title {
    font-size: 18px;
    margin-bottom: var(--space-sm);
}

.bento-sm p {
    font-size: 14px;
    color: var(--gray-500);
}

/* ==========================================
   10. PROCESS SECTION
   ========================================== */
.process-section {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

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

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-200);
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-3xl);
    position: relative;
}

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

.process-step:nth-child(odd) {
    flex-direction: row;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    z-index: 2;
    box-shadow: var(--shadow-glow);
}

.step-content {
    width: calc(50% - 60px);
    padding: var(--space-xl);
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
}

.process-step:nth-child(odd) .step-content {
    margin-right: auto;
    text-align: right;
}

.process-step:nth-child(even) .step-content {
    margin-left: auto;
    text-align: left;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-icon {
    font-size: 40px;
    margin-bottom: var(--space-md);
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: var(--space-sm);
}

.step-content p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ==========================================
   11. JOBS SECTION
   ========================================== */
.jobs-section {
    padding: var(--space-4xl) 0;
    background: var(--gray-50);
}

/* Job Filters */
.job-filters {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.filter-btn {
    padding: var(--space-sm) var(--space-lg);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    transition: var(--transition-base);
}

.filter-btn:hover {
    border-color: var(--gray-300);
    color: var(--secondary-dark);
}

.filter-btn.active {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
    color: var(--white);
}

/* Jobs Grid */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

/* Job Card */
.job-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-base);
}

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

.job-card.job-urgent {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: var(--space-lg);
    padding-bottom: 0;
}

.job-badges {
    display: flex;
    gap: var(--space-sm);
}

.job-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
}

.badge-urgent {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
}

.badge-new {
    background: rgba(160, 51, 53, 0.1);
    color: var(--accent);
}

.badge-featured {
    background: rgba(180, 56, 53, 0.1);
    color: var(--primary);
}

.badge-top {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

.job-save {
    padding: var(--space-sm);
    color: var(--gray-400);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.job-save:hover {
    color: var(--primary);
    background: rgba(180, 56, 53, 0.1);
}

.job-card > *:not(.job-header) {
    padding: 0 var(--space-lg);
}

.job-company {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.company-logo {
    width: 48px;
    height: 48px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.company-info {
    display: flex;
    flex-direction: column;
}

.company-name {
    font-weight: 600;
    color: var(--secondary-dark);
    font-size: 14px;
}

.company-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--gray-500);
}

.job-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-dark);
    margin: var(--space-md) 0;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.tag {
    padding: 4px 10px;
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.job-excerpt {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg);
    border-top: 1px solid var(--gray-100);
    margin-top: var(--space-md);
}

.job-meta {
    font-size: 13px;
    color: var(--gray-500);
}

/* Jobs CTA */
.jobs-cta {
    text-align: center;
    margin-top: var(--space-3xl);
    padding: var(--space-2xl);
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
}

.jobs-cta p {
    font-size: 18px;
    color: var(--gray-600);
    font-weight: 500;
    margin-bottom: var(--space-lg);
}

/* ==========================================
   12. EMPLOYERS SECTION
   ========================================== */
.employers-section {
    padding: var(--space-4xl) 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.employers-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(180, 56, 53, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

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

.employers-content {
    max-width: 540px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.benefit-content p {
    font-size: 13px;
    color: var(--gray-400);
}

.employers-cta {
    display: flex;
    gap: var(--space-md);
}

/* Employer Stats */
.employers-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.stat-card-large {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    transition: var(--transition-base);
}

.stat-card-large:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.stat-card-inner .stat-value {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-card-inner .stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-300);
    margin-top: var(--space-sm);
}

/* ==========================================
   13. TESTIMONIALS SECTION
   ========================================== */
.testimonials-section {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

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

.testimonial-card {
    padding: var(--space-xl);
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    transition: var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    color: #FBBF24;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: var(--space-md);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: var(--space-lg);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: var(--secondary-dark);
    font-size: 15px;
}

.author-role {
    font-size: 13px;
    color: var(--gray-500);
}

/* ==========================================
   14. CONTACT SECTION
   ========================================== */
.contact-section {
    padding: var(--space-4xl) 0 var(--space-4xl);
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
}

/* Decoración de fondo */
.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(180, 56, 53, 0.05), transparent 60%);
    pointer-events: none;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    position: relative;
    z-index: 1;
}

/* Header centrado */
.contact-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-4xl);
}

.contact-header .section-tag {
    display: inline-block;
    margin-bottom: var(--space-md);
}

.contact-header h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 800;
    color: var(--secondary-dark);
    letter-spacing: -1.5px;
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.contact-header p {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Grid de 3 columnas para métodos de contacto */
.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-4xl);
}

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

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

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

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--primary);
}

.contact-card-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-lg);
    background: var(--gray-100);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

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

.contact-card-icon svg {
    width: 32px;
    height: 32px;
    color: var(--gray-600);
    transition: var(--transition-base);
}

.contact-card:hover .contact-card-icon svg {
    color: var(--white);
}

.contact-card-icon.whatsapp {
    background: #25D366;
}

.contact-card-icon.whatsapp svg {
    color: var(--white);
}

.contact-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-sm);
}

.contact-card-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: var(--space-md);
    word-break: break-word;
}

.contact-card-action {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition-base);
}

.contact-card:hover .contact-card-action {
    gap: var(--space-md);
}

/* Formulario centrado y destacado */
.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.contact-form-header {
    background: var(--gradient-dark);
    padding: var(--space-2xl);
    text-align: center;
    color: var(--white);
}

.contact-form-header h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.contact-form-header p {
    color: var(--gray-400);
    font-size: 15px;
}

.contact-form-body {
    padding: var(--space-2xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.form-field {
    margin-bottom: var(--space-lg);
}

.form-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: var(--space-sm);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-family: var(--font-primary);
    font-size: 15px;
    color: var(--secondary-dark);
    transition: var(--transition-base);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(180, 56, 53, 0.1);
}

.form-field textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.form-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.submit-button {
    width: 100%;
    padding: var(--space-lg);
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    box-shadow: 0 4px 14px var(--primary-glow);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

/* Dirección al final */
.contact-footer {
    text-align: center;
    margin-top: var(--space-4xl);
    padding-top: var(--space-3xl);
    border-top: 1px solid var(--gray-200);
}

.contact-footer h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: var(--space-md);
}

.contact-footer address {
    font-style: normal;
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.8;
}
/* ==========================================
   RESPONSIVE - Contact Section
   ========================================== */
@media (max-width: 1024px) {
    .contact-methods-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-body {
        padding: var(--space-xl);
    }
}

/* ==========================================
   15. FOOTER (continuación)
   ========================================== */
   .footer {
    background: var(--secondary-dark);
    color: var(--gray-400);
}

.footer-top {
    padding: var(--space-4xl) 0;
    border-bottom: 1px solid rgba(182, 24, 24, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
}

/* Footer Brand */
.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: var(--space-lg);
}

.footer-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    opacity: 1;
}

.footer-logo .logo-name {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    display: block;
}

.footer-logo .logo-tag {
    font-size: 12px;
    color: var(--gray-500);
    display: block;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.social-links {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Footer Links */
.footer-links-group h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.footer-links-group ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links-group a {
    font-size: 15px;
    color: var(--gray-400);
    transition: var(--transition-base);
}

.footer-links-group a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

/* Footer Bottom */
.footer-bottom {
    padding: var(--space-lg) 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: var(--space-xl);
}

.footer-legal a {
    font-size: 14px;
    color: var(--gray-500);
}

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

/* ==========================================
   16. SCROLL TO TOP
   ========================================== */
.scroll-top {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: var(--z-sticky);
    cursor: pointer;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--primary-glow);
}

/* ==========================================
   17. ANIMATIONS (AOS-like)
   ========================================== */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    opacity: 0;
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    opacity: 1;
    transform: scale(1);
}

/* Delay Classes */
[data-aos-delay="100"] { transition-delay: 100ms; }
[data-aos-delay="150"] { transition-delay: 150ms; }
[data-aos-delay="200"] { transition-delay: 200ms; }
[data-aos-delay="250"] { transition-delay: 250ms; }
[data-aos-delay="300"] { transition-delay: 300ms; }
[data-aos-delay="400"] { transition-delay: 400ms; }

/* ==========================================
   18. CURSOR GLOW EFFECT (Optional)
   ========================================== */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

.cursor-glow.active {
    opacity: 0.3;
}

/* ==========================================
   19. NOTIFICATION SYSTEM
   ========================================== */
.notification {
    position: fixed;
    top: 100px;
    right: var(--space-lg);
    max-width: 400px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
    border-left: 4px solid var(--success);
    padding: var(--space-lg);
    z-index: var(--z-notification);
    animation: slideInRight 0.3s ease;
}

.notification-error {
    border-left-color: var(--error);
}

.notification-warning {
    border-left-color: var(--warning);
}

.notification-info {
    border-left-color: var(--accent);
}

.notification-content {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.notification-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--white);
    flex-shrink: 0;
    background: var(--success);
}

.notification-error .notification-icon {
    background: var(--error);
}

.notification-warning .notification-icon {
    background: var(--warning);
}

.notification-info .notification-icon {
    background: var(--accent);
}

.notification-message {
    flex: 1;
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.5;
}

.notification-close {
    padding: 4px;
    color: var(--gray-400);
    transition: var(--transition-fast);
    border-radius: var(--radius-sm);
}

.notification-close:hover {
    background: var(--gray-100);
    color: var(--gray-600);
}

.notification.fade-out {
    animation: slideOutRight 0.3s ease forwards;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* ==========================================
   20. FORM VALIDATION STYLES
   ========================================== */
.form-group input.error,
.form-group select.error,
.form-group textarea.error,
.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: var(--error);
    background: rgba(239, 68, 68, 0.05);
}
   
.form-group input.error:focus,
.form-group select.error:focus,
.form-group textarea.error:focus,
.form-input.error:focus,
.form-select.error:focus,
.form-textarea.error:focus {
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.2);
}

.error-message {
    display: block;
    font-size: 12px;
    color: var(--error);
    margin-top: var(--space-xs);
    font-weight: 500;
}

.form-group input.success,
.form-group select.success,
.form-group textarea.success,
.form-input.success,
.form-select.success,
.form-textarea.success {
    border-color: var(--success);
}

/* Loading State */
.btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.btn.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    margin-left: var(--space-sm);
}

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

/* ==========================================
   21. RESPONSIVE DESIGN
   ========================================== */

/* Large Desktop (1440px+) */
@media (min-width: 1441px) {
    .container {
        padding: 0 var(--space-2xl);
    }
}

/* Desktop (1200px - 1440px) */
@media (max-width: 1440px) {
    .hero-container {
        gap: var(--space-2xl);
    }
    
    .float-card-1 {
        right: -20px;
    }
    
    .float-card-3 {
        right: -10px;
    }
}

/* Laptop (1024px - 1200px) */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-3xl);
    }
    
    .hero-content {
        max-width: 640px;
        margin: 0 auto;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .bento-lg {
        grid-column: span 12;
    }
    
    .bento-md {
        grid-column: span 6;
    }
    
    .bento-sm {
        grid-column: span 4;
    }
    
    .jobs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .employers-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }
    
    .employers-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }
    
    .contact-info {
        padding-right: 0;
        position: static;
        text-align: center;
    }
    
    .contact-methods {
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-address {
        text-align: center;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
}

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    :root {
        --space-4xl: 80px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-md {
        grid-column: span 12;
    }
    
    .bento-sm {
        grid-column: span 6;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .process-step {
        flex-direction: row !important;
    }
    
    .step-number {
        left: 30px;
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .step-content {
        width: calc(100% - 90px);
        margin-left: 70px !important;
        margin-right: 0 !important;
        text-align: left !important;
    }
    
    .employers-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* Tablet Portrait / Large Mobile (768px) */
@media (max-width: 768px) {
    :root {
        --space-4xl: 64px;
        --space-3xl: 48px;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: var(--space-sm);
        padding: var(--space-sm) var(--space-md);
    }
    
    .contact-info {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-md);
    }
    
    .contact-link span {
        display: none;
    }
    
    .credentials {
        display: none;
    }
    
    .nav-container {
        padding: var(--space-md);
    }
    
    /* Hide desktop menu */
    .nav-center {
        display: none;
    }
    
    .nav-right {
        display: none;
    }
    
    /* Show mobile toggle */
    .mobile-toggle {
        display: flex;
    }
    
    .hero {
        min-height: auto;
        padding: var(--space-3xl) 0;
    }
    
    .hero-container {
        padding: var(--space-2xl) var(--space-md);
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-visual {
        display: none;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-suffix {
        font-size: 24px;
    }
    
    .bento-sm {
        grid-column: span 12;
    }
    
    .jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .job-filters {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: var(--space-sm);
        -webkit-overflow-scrolling: touch;
    }
    
    .filter-btn {
        flex-shrink: 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-form-wrapper form,
    #contactForm {
        padding: var(--space-xl);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        max-width: none;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-md);
    }
    
    .notification {
        left: var(--space-md);
        right: var(--space-md);
        max-width: none;
    }
}

/* Mobile (480px) */
@media (max-width: 480px) {
    :root {
        --space-4xl: 48px;
        --space-3xl: 32px;
        --space-2xl: 24px;
    }
    
    .container {
        padding: 0 var(--space-md);
    }
    
    .logo-text {
        display: none;
    }
    
    .hero-title {
        font-size: 28px;
        letter-spacing: -0.5px;
    }
    
    .announcement {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    
    .announcement-text {
        order: 3;
        width: 100%;
        padding: var(--space-sm) 0 0;
    }
    
    .announcement svg {
        display: none;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        padding: var(--space-lg);
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-desc {
        font-size: 16px;
    }
    
    .step-number {
        left: 15px;
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .timeline-line {
        left: 35px;
    }
    
    .step-content {
        margin-left: 60px !important;
        padding: var(--space-md);
    }
    
    .step-icon {
        font-size: 32px;
    }
    
    .job-title {
        font-size: 18px;
    }
    
    .job-tags {
        gap: var(--space-xs);
    }
    
    .tag {
        font-size: 11px;
        padding: 3px 8px;
    }
    
    .employers-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-card-large {
        padding: var(--space-lg);
    }
    
    .stat-card-inner .stat-value {
        font-size: 36px;
    }
    
    .contact-form-wrapper form,
    #contactForm {
        padding: var(--space-lg);
    }
    
    .scroll-top {
        bottom: var(--space-md);
        right: var(--space-md);
        width: 44px;
        height: 44px;
    }
}

/* Extra Small Mobile (360px) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 24px;
    }
    
    .btn {
        padding: var(--space-sm) var(--space-md);
        font-size: 14px;
    }
    
    .btn-lg {
        padding: var(--space-md) var(--space-lg);
    }
}

/* ==========================================
   22. ACCESSIBILITY
   ========================================== */
*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: var(--space-md);
    background: var(--primary);
    color: var(--white);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    z-index: var(--z-notification);
    transition: var(--transition-fast);
}

.skip-link:focus {
    top: var(--space-md);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .hero-orb,
    .float-card,
    .graphic-ring,
    .scroll-indicator,
    .logos-slide {
        animation: none;
    }
}

@media (prefers-contrast: high) {
    :root {
        --primary: #b43835;
        --gray-500: #333333;
    }
    
    .btn-secondary,
    .btn-ghost {
        border-width: 2px;
    }
}

/* ==========================================
   23. PRINT STYLES
   ========================================== */
@media print {
    .top-bar,
    nav,
    .scroll-top,
    .hero-bg,
    .hero-visual,
    .scroll-indicator,
    .logos-section,
    .notification,
    .cursor-glow {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
        font-size: 12pt;
    }
    
    .hero {
        background: white;
        min-height: auto;
        padding: 20pt 0;
    }
    
    .hero-title,
    .section-title {
        color: black;
    }
    
    .text-gradient {
        -webkit-text-fill-color: var(--primary);
        background: none;
    }
    
    .btn {
        border: 1pt solid black;
        background: none;
        color: black;
    }
    
    a {
        text-decoration: underline;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    section {
        page-break-inside: avoid;
    }
}

/* ==========================================
   24. UTILITY CLASSES
   ========================================== */
.hidden { display: none !important; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.grid { display: grid; }

.flex-center { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}
.flex-between { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-primary { color: var(--primary); }
.text-gray { color: var(--gray-500); }
.text-white { color: var(--white); }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }

.mt-0 { margin-top: 0; }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-0 { margin-bottom: 0; }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mx-auto { margin-left: auto; margin-right: auto; }

.w-full { width: 100%; }
.max-w-sm { max-width: 384px; }
.max-w-md { max-width: 448px; }
.max-w-lg { max-width: 512px; }
.max-w-xl { max-width: 576px; }

.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;
}

.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==========================================
   MEJORAS CON FOTOS REALES - AGREGAR AL FINAL
   ========================================== */

/* ==========================================
   1. HERO CON IMAGEN DE FONDO REAL
   ========================================== */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15,23,42,0.92) 0%, rgba(30,41,59,0.85) 50%, rgba(15,23,42,0.92) 100%);
    z-index: 2;
}

/* Asegurar que el contenido esté encima */
.hero-container {
    position: relative;
    z-index: 3;
}
/* ==========================================
   2. TEAM PREVIEW SECTION (Fotos 2x2)
   ========================================== */
   .team-preview-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #f9fafb 0%, #fff 100%);
}

.team-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.team-preview-images {
    position: relative;
}

.preview-photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
}

.preview-photo {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: var(--transition-base);
}

.preview-photo:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.preview-photo:nth-child(2),
.preview-photo:nth-child(3) {
    margin-top: 40px;
}

.team-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 24px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 20px 40px var(--primary-glow);
    z-index: 2;
}

.badge-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    margin-top: 4px;
}

.team-preview-content h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 800;
    color: var(--secondary-dark);
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.team-preview-content p {
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.preview-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.preview-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.preview-feature svg {
    color: #10B981;
    flex-shrink: 0;
    margin-top: 2px;
}

.preview-feature span {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.5;
}

/* ==========================================
   3. TESTIMONIOS CON FOTOS REALES
   ========================================== */
.author-avatar-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    flex-shrink: 0;
}

/* ==========================================
   4. BENTO CARDS CON FOTOS DE FONDO
   ========================================== */
.bento-card {
    background-size: cover;
    background-position: center;
    position: relative;
}

.bento-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(17,24,39,0.95) 0%, rgba(30,41,59,0.90) 100%);
    border-radius: 20px;
    z-index: 1;
}

.bento-content {
    position: relative;
    z-index: 2;
}

/* Ajustar colores de texto para fondos oscuros */
.bento-card[style*="background-image"] .bento-title {
    color: var(--white);
}

.bento-card[style*="background-image"] .bento-list li {
    color: var(--gray-300);
}

.bento-card[style*="background-image"] .bento-tag {
    color: var(--gray-400);
}

/* ==========================================
   5. EMPLOYERS SECTION - GALERÍA
   ========================================== */
.workers-showcase {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    margin-bottom: var(--space-4xl);
    height: 320px;
}

.showcase-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    height: 100%;
}

.showcase-photos img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.showcase-photos img:hover {
    transform: scale(1.05);
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(15,23,42,0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-2xl);
    z-index: 2;
}

.showcase-overlay h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.showcase-overlay p {
    font-size: 16px;
    color: var(--gray-300);
}

/* ==========================================
   6. RESPONSIVE - NUEVAS SECCIONES
   ========================================== */

/* Tablet */
@media (max-width: 1024px) {
    .team-preview-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }
    
    .team-preview-images {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .team-badge {
        bottom: 10px;
        right: 10px;
    }
    
    .workers-showcase {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .preview-photo-grid {
        gap: 12px;
    }
    
    .preview-photo {
        height: 200px;
        border-radius: 12px;
    }
    
    .preview-photo:nth-child(2),
    .preview-photo:nth-child(3) {
        margin-top: 20px;
    }
    
    .team-badge {
        padding: 16px 20px;
        bottom: 0;
        right: 0;
    }
    
    .badge-number {
        font-size: 28px;
    }
    
    .badge-text {
        font-size: 12px;
    }
    
    .team-preview-content h2 {
        font-size: 28px;
    }
    
    .showcase-photos {
        grid-template-columns: 1fr;
        height: 400px;
    }
    
    .workers-showcase {
        height: 400px;
    }
    
    .showcase-overlay {
        padding: var(--space-xl);
    }
    
    .showcase-overlay h3 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .preview-photo {
        height: 160px;
    }
    
    .team-badge {
        position: static;
        margin-top: var(--space-lg);
        padding: 12px 16px;
    }
    
    .workers-showcase {
        height: 300px;
    }
}

/* ==========================================
   7. ANIMACIONES ADICIONALES
   ========================================== */
@keyframes image-reveal {
    from {
        opacity: 0;
        transform: scale(1.1);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.preview-photo,
.author-avatar-img,
.showcase-photos img {
    animation: image-reveal 0.6s ease-out;
}

/* Efecto parallax suave en hero background */
.hero-bg-image {
    transform: translateZ(0);
    will-change: transform;
}

/* Overlay hover en fotos del equipo */
.preview-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.3) 100%);
    opacity: 0;
    transition: var(--transition-base);
    border-radius: 16px;
}

.preview-photo:hover::after {
    opacity: 1;
}

/* =========================
   SPECIALTIES SECTION
========================= */
.specialties-section {
    padding: var(--space-4xl) 0;
    background: var(--gray-50);
}

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

.specialty-card-uniform {
    background: var(--white);
    background-size: cover;
    background-position: center;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-base);
}

.specialty-card-uniform:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--primary);
}

.specialty-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17,24,39,0.92) 0%, rgba(30,41,59,0.88) 100%);
    z-index: 1;
}

.specialty-content {
    position: relative;
    z-index: 2;
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.specialty-badges {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
}

.specialty-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
}

.badge-hot {
    background: rgba(239, 68, 68, 0.9);
    color: var(--white);
}

.badge-new {
    background: rgba(160, 51, 53, 0.9);
    color: var(--white);
}

.badge-count {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.specialty-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: var(--space-md);
}

.specialty-icon svg {
    color: var(--white);
}

.specialty-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-sm);
    line-height: 1.2;
}

.specialty-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-lg);
}

.specialty-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: auto;
    padding-bottom: var(--space-lg);
}

.specialty-list li {
    position: relative;
    padding-left: var(--space-lg);
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.5;
}

.specialty-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

.specialty-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: auto;
}

.specialty-salary {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
}

.specialty-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    transition: var(--transition-base);
}

.specialty-link:hover {
    background: var(--white);
    color: var(--secondary-dark);
    gap: var(--space-md);
}

.specialty-card-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
}

.specialty-card-cta:hover {
    transform: translateY(-8px) scale(1.02);
}

.specialty-content-cta {
    position: relative;
    z-index: 2;
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
}

.cta-icon {
    font-size: 56px;
    margin-bottom: var(--space-lg);
}

.cta-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.cta-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
}

.cta-support {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: var(--space-md);
}

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

.bento-count {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(180, 56, 53, 0.1);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--radius-full);
}

/* =========================
   PROCESS SECTION V2
========================= */
.process-section-v2 {
    position: relative;
    padding: var(--space-4xl) 0;
    overflow: hidden;
}

.process-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.process-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.95) 0%, rgba(30,41,59,0.92) 50%, rgba(15,23,42,0.95) 100%);
    z-index: 1;
}

.process-container-v2 {
    position: relative;
    z-index: 2;
}

.process-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-3xl);
}

.text-highlight {
    color: var(--primary);
}

.process-steps-compact {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

.process-step-compact {
    flex: 1;
    min-width: 200px;
    max-width: 240px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    transition: var(--transition-base);
    position: relative;
}

.process-step-compact:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(180, 56, 53, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--primary-glow);
}

.step-number-compact {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 36px;
    height: 36px;
    background: rgba(180, 56, 53, 0.2);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    color: var(--primary);
}

.step-icon-compact {
    width: 64px;
    height: 64px;
    background: rgba(180, 56, 53, 0.1);
    border: 2px solid rgba(180, 56, 53, 0.3);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    transition: var(--transition-base);
}

.process-step-compact:hover .step-icon-compact {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.step-icon-compact svg {
    color: var(--primary);
    transition: var(--transition-base);
}

.process-step-compact:hover .step-icon-compact svg {
    color: var(--white);
}

.step-title-compact {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.step-desc-compact {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.step-arrow {
    display: flex;
    align-items: center;
    margin-top: 60px;
    opacity: 0.5;
}

.step-arrow svg {
    color: var(--primary);
}

.process-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-3xl);
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px);
}

.process-stat-item {
    text-align: center;
}

.stat-value-compact {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-label-compact {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* =========================
   JOBS SECTION V2
========================= */
.jobs-section-v2 {
    position: relative;
    padding: var(--space-4xl) 0;
    overflow: hidden;
}

.jobs-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.jobs-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.96) 0%, rgba(30,41,59,0.94) 50%, rgba(15,23,42,0.96) 100%);
    z-index: 1;
}

.jobs-container-v2 {
    position: relative;
    z-index: 2;
}

.job-filters-v2 {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

.filter-btn-v2 {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-base);
    cursor: pointer;
}

.filter-btn-v2:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.filter-btn-v2.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.filter-count {
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
}

.filter-btn-v2.active .filter-count {
    background: rgba(255, 255, 255, 0.3);
}

.jobs-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
}

.job-card-v2 {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
}

.job-card-v2:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(180, 56, 53, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--primary-glow);
}

.job-urgent-v2 {
    border-color: rgba(239, 68, 68, 0.5);
}

.job-urgent-v2:hover {
    border-color: var(--error);
    box-shadow: 0 12px 40px rgba(239, 68, 68, 0.3);
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-lg);
}

.job-badges-v2 {
    display: flex;
    gap: var(--space-xs);
    flex-wrap: wrap;
}

.job-badge-v2 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
}

.badge-urgent-v2 {
    background: rgba(239, 68, 68, 0.9);
    color: var(--white);
}

.badge-new-v2 {
    background: rgba(160, 51, 53, 0.9);
    color: var(--white);
}

.badge-featured-v2 {
    background: rgba(180, 56, 53, 0.9);
    color: var(--white);
}

.badge-top-v2 {
    background: rgba(16, 185, 129, 0.9);
    color: var(--white);
}

.job-save-v2 {
    padding: var(--space-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-base);
    cursor: pointer;
}

.job-save-v2:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.job-company-v2 {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.company-logo-v2 {
    width: 48px;
    height: 48px;
    background: rgba(180, 56, 53, 0.1);
    border: 2px solid rgba(180, 56, 53, 0.3);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.company-logo-v2 svg {
    color: var(--primary);
}

.company-info-v2 {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.company-name-v2 {
    font-weight: 600;
    font-size: 15px;
    color: var(--white);
}

.company-location-v2 {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.company-location-v2 svg {
    flex-shrink: 0;
}

.job-title-v2 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.job-excerpt-v2 {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.job-details-v2 {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
}

.job-detail-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.job-detail-item svg {
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

.job-salary {
    color: var(--primary);
    font-weight: 700;
}

.job-salary svg {
    color: var(--primary);
}

.job-footer-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.job-posted {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.btn-job-apply {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: var(--primary);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.btn-job-apply:hover {
    background: var(--primary-dark);
    gap: var(--space-md);
    transform: translateX(2px);
}

.jobs-cta-v2 {
    text-align: center;
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
}

.cta-text-v2 {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

/* =========================
   CONTACT SECTION V2
========================= */
.contact-section-v2 {
    position: relative;
    padding: var(--space-4xl) 0;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.96) 0%, rgba(30,41,59,0.94) 50%, rgba(15,23,42,0.96) 100%);
    z-index: 1;
}

.contact-container-v2 {
    position: relative;
    z-index: 2;
}

.contact-header-v2 {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-3xl);
}

.contact-grid-v2 {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.contact-methods-v2 {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-method-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.contact-method-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(180, 56, 53, 0.5);
    transform: translateX(5px);
}

.method-icon {
    width: 48px;
    height: 48px;
    background: rgba(180, 56, 53, 0.1);
    border: 2px solid rgba(180, 56, 53, 0.3);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-base);
}

.contact-method-card:hover .method-icon {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.method-icon svg {
    color: var(--primary);
    transition: var(--transition-base);
}

.contact-method-card:hover .method-icon svg {
    color: var(--white);
}

.whatsapp-icon {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.3);
}

.whatsapp-icon svg {
    color: #25D366;
}

.whatsapp-card:hover .whatsapp-icon {
    background: #25D366;
    border-color: #25D366;
}

.whatsapp-card:hover .whatsapp-icon svg {
    color: var(--white);
}

.method-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.method-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.method-value {
    font-size: 15px;
    color: var(--white);
    font-weight: 600;
}

.method-arrow {
    opacity: 0;
    transform: translateX(-5px);
    transition: var(--transition-base);
}

.contact-method-card:hover .method-arrow {
    opacity: 1;
    transform: translateX(0);
}

.method-arrow svg {
    color: var(--primary);
}

.contact-address-compact {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    margin-top: var(--space-md);
}

.address-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.address-icon svg {
    color: rgba(255, 255, 255, 0.6);
}

.address-content {
    flex: 1;
}

.address-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.address-content address {
    font-style: normal;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.contact-form-v2 {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
}

.form-header-v2 {
    margin-bottom: var(--space-xl);
}

.form-header-v2 h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.form-header-v2 p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.form-row-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.form-field-v2 {
    margin-bottom: var(--space-md);
}

.form-row-v2 .form-field-v2 {
    margin-bottom: 0;
}

.form-field-v2 input,
.form-field-v2 select,
.form-field-v2 textarea {
    width: 100%;
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--white);
    transition: var(--transition-base);
}

.form-field-v2 input::placeholder,
.form-field-v2 textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-field-v2 input:focus,
.form-field-v2 select:focus,
.form-field-v2 textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-field-v2 select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(255,255,255,0.6)' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.form-field-v2 select option {
    background: var(--secondary-dark);
    color: var(--white);
}

.form-field-v2 textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn-v2 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-lg);
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: 0 4px 14px var(--primary-glow);
}

.submit-btn-v2:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

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

/* Logo con imagen */
.logo-img {
    height: 95px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-wrapper:hover .logo-img {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .logo-img {
        height: 65px;
    }
}

/* Responsive Sections */
@media (max-width: 1024px) {
    .specialties-grid-uniform {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid-v2 {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .contact-methods-v2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
    
    .contact-address-compact {
        grid-column: 1 / -1;
    }
    
    .jobs-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .specialties-grid-uniform {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .specialty-card-uniform {
        min-height: 380px;
    }
    
    .jobs-grid-v2 {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .contact-methods-v2 {
        grid-template-columns: 1fr;
    }
    
    .form-row-v2 {
        grid-template-columns: 1fr;
    }
}

/* Nav Health - Coming Soon */
.nav-soon-badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(176,52,52,0.15);
    color: var(--primary);
    padding: 2px 6px;
    border-radius: 99px;
    vertical-align: middle;
    margin-left: 4px;
    line-height: 1.4;
}

.nav-link-soon {
    opacity: 0.65;
    cursor: default;
    pointer-events: none;
}

.mobile-nav-link-soon {
    opacity: 0.5;
    pointer-events: none;
}

/* ==========================================
   LANGUAGE SWITCHER (preparado para futuro)
   ========================================== */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 2px;
    background: rgba(0,0,0,0.05);
    border-radius: var(--radius-full);
    padding: 3px;
}
.lang-btn {
    padding: 4px 10px;
    border: none;
    border-radius: var(--radius-full);
    background: transparent;
    color: var(--gray-400);
    font-size: 0.72rem;
    font-weight: 700;
    cursor: default;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}
.lang-btn.active {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.scrolled .lang-switcher {
    background: rgba(0,0,0,0.06);
}

/* ==========================================
   FOOTER CREDIT
   ========================================== */
.footer-divider {
    color: var(--gray-700);
    margin: 0 2px;
}
.footer-credit {
    color: var(--gray-600) !important;
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-credit:hover {
    color: var(--primary) !important;
}
