/* ===== VARIABLES ===== */
:root {
    /* Colors - Corregidos para mejor contraste */
    --color-black: #0a0a0a;
    --color-dark: #111111;
    --color-gray-dark: #1a1a1a;
    --color-gray: #2a2a2a;
    --color-gray-light: #3a3a3a;
    --color-white: #ffffff;
    --color-gold: #d4af37;
    --color-gold-light: #e6c158;
    --color-gold-dark: #b8941f;
    --color-whatsapp: #25D366;
    --color-whatsapp-dark: #1da851;
    --color-text: #f0f0f0; /* Texto principal mejorado */
    --color-text-light: #cccccc; /* Texto secundario */
    --color-text-muted: #888888; /* Texto menos importante */
    
    /* Gradientes */
    --gradient-gold: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    --gradient-dark: linear-gradient(135deg, var(--color-dark), var(--color-black));
    --gradient-overlay: linear-gradient(to bottom, transparent, rgba(0,0,0,0.9));
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.4);
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 4rem;
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Oswald', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-md: 1.125rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2rem;
    --font-size-3xl: 2.5rem;
    --font-size-4xl: 3rem;
    --font-size-5xl: 4rem;
    
    /* Borders */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Z-index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-popover: 500;
    --z-tooltip: 600;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-black);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

ul, ol {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

section {
    padding: var(--space-xxl) 0;
    position: relative;
}

.highlight {
    color: var(--color-gold);
}

/* ===== LOADING SCREEN ===== */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-container {
    text-align: center;
    max-width: 500px;
    padding: var(--space-xl);
}

.loading-logo {
    font-family: var(--font-secondary);
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    position: relative;
    display: inline-block;
}

.loading-logo span {
    color: var(--color-gold);
    position: relative;
}

.loading-bar {
    width: 100%;
    height: 3px;
    background: var(--color-gray-dark);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin: var(--space-lg) 0;
}

.loading-progress {
    height: 100%;
    background: var(--gradient-gold);
    width: 0%;
    border-radius: var(--radius-full);
    transition: width 0.3s ease;
}

.loading-text {
    color: var(--color-text-light);
    font-size: var(--font-size-sm);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ===== BACKGROUND ELEMENTS ===== */
.bg-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-element {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    filter: blur(40px);
}

#bg-element-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
}

#bg-element-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    right: -100px;
}

#bg-element-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 10%;
}

.bg-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0.3;
}

#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ===== HEADER & NAVIGATION ===== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-fixed);
    padding: var(--space-sm) 0;
    transition: all var(--transition-base);
    background: transparent;
}

#header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: var(--space-xs) 0;
    box-shadow: var(--shadow-lg);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--space-md);
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    z-index: var(--z-fixed);
}

.logo-text {
    font-family: var(--font-secondary);
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
}

.logo-highlight {
    color: var(--color-gold);
}

.logo-sub {
    font-size: var(--font-size-xs);
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: var(--space-xs);
    z-index: var(--z-modal);
    background: transparent;
    border: none;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: all var(--transition-base);
    border-radius: var(--radius-full);
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
}

.nav-link {
    color: var(--color-white);
    font-weight: 500;
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: var(--space-xs) 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition-base);
}

.nav-link:hover {
    color: var(--color-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width var(--transition-base);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-nav {
    background: var(--gradient-gold);
    color: var(--color-black) !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all var(--transition-base);
    border: none;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: var(--color-black) !important;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.95)), 
                url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: var(--space-xl);
    position: relative;
    z-index: 1;
}

.hero-tagline {
    margin-bottom: var(--space-lg);
}

.tagline-text {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-full);
    color: var(--color-gold);
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    margin-bottom: var(--space-lg);
}

.title-line {
    display: block;
    font-size: var(--font-size-5xl);
    line-height: 1;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.hero-description {
    font-size: var(--font-size-lg);
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-xxl);
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    border-radius: var(--radius-full);
}

.scroll-text {
    font-size: var(--font-size-xs);
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.875rem 2rem;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    color: var(--color-black);
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--color-black);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: var(--color-black);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-gray-light);
}

.btn-secondary:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.btn-whatsapp {
    background: var(--color-whatsapp);
    color: var(--color-white) !important;
}

.btn-whatsapp:hover {
    background: var(--color-whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    color: var(--color-white) !important;
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-gold);
}

.btn-outline:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: var(--font-size-base);
}

.btn-hero {
    padding: 1rem 2.5rem;
    font-size: var(--font-size-base);
    min-width: 200px;
}

.btn-service {
    width: 100%;
    padding: 0.75rem 1.5rem;
}

.btn-cta-large {
    padding: 1.5rem 3rem;
    font-size: var(--font-size-lg);
    width: 100%;
    max-width: 400px;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn:hover .btn-shine {
    left: 100%;
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-main {
    font-weight: 600;
}

.btn-sub {
    font-size: var(--font-size-xs);
    opacity: 0.8;
    font-weight: 400;
}

/* ===== STATS SECTION ===== */
.stats {
    background: var(--color-dark);
    padding: var(--space-xl) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
}

.stat-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--color-gray-dark);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-gray);
    transition: all var(--transition-base);
}

.stat-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-full);
    color: var(--color-gold);
    font-size: var(--font-size-2xl);
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 4px;
}

.stat-text {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== SERVICES SECTION ===== */
.services {
    background: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.section-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23d4af37' fill-rule='evenodd'/%3E%3C/svg%3E");
    pointer-events: none;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-xxl);
}

.title-tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-gold);
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-md);
    border-radius: var(--radius-full);
}

.section-title h2 {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--space-md);
    color: var(--color-white);
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xxl);
}

.service-card {
    perspective: 1000px;
    height: 100%;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-gray-dark);
    border: 1px solid var(--color-gray);
}

.service-card:hover .service-card-inner {
    transform: rotateY(5deg) rotateX(2deg) translateY(-10px);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: var(--space-md);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

.service-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-full);
    color: var(--color-gold);
    font-size: var(--font-size-xl);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.service-badge {
    padding: 0.25rem 0.75rem;
    background: var(--color-gold);
    color: var(--color-black);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
}

.service-badge-premium {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--color-white);
}

.service-badge-master {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: var(--color-white);
}

.service-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, var(--color-dark));
}

.service-content {
    padding: var(--space-lg);
}

.service-title {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-sm);
    color: var(--color-white);
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: var(--space-lg);
}

.price-amount {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--color-gold);
}

.price-note {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
}

.service-features {
    margin-bottom: var(--space-lg);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--color-text-light);
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.service-features i {
    color: var(--color-gold);
    font-size: var(--font-size-xs);
    min-width: 16px;
}

.service-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.btn-service-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.5rem 1rem;
    color: var(--color-text-light);
    font-size: var(--font-size-sm);
    transition: all var(--transition-base);
    background: transparent;
    border: 1px solid var(--color-gray);
    border-radius: var(--radius-md);
}

.btn-service-info:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.services-cta {
    text-align: center;
    padding: var(--space-xl);
    background: rgba(212, 175, 55, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.cta-text {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-md);
    color: var(--color-white);
}

/* ===== BENEFITS SECTION ===== */
.benefits {
    background: var(--color-black);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xxl);
}

.benefit-card {
    padding: var(--space-xl);
    background: var(--color-gray-dark);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-gray);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.benefit-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.benefit-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: var(--space-lg);
}

.benefit-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-full);
    color: var(--color-gold);
    font-size: var(--font-size-2xl);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.benefit-icon-bg {
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    background: rgba(212, 175, 55, 0.05);
    border-radius: var(--radius-full);
}

.benefit-title {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-sm);
    color: var(--color-white);
}

.benefit-description {
    color: var(--color-text-light);
    line-height: 1.6;
}

.benefit-hover {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: var(--space-md);
    background: var(--color-gold);
    color: var(--color-black);
    transition: bottom 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-card:hover .benefit-hover {
    bottom: 0;
}

.hover-content {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.benefits-cta {
    background: linear-gradient(135deg, var(--color-gray-dark), var(--color-dark));
    padding: var(--space-xxl) 0;
    border-radius: var(--radius-lg);
    margin-top: var(--space-xl);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-md);
    color: var(--color-white);
}

.cta-description {
    font-size: var(--font-size-lg);
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

/* ===== GALLERY SECTION ===== */
.gallery {
    background: var(--color-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-xxl);
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    height: 300px;
}

.gallery-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(10, 10, 10, 0.9));
    display: flex;
    align-items: flex-end;
    padding: var(--space-lg);
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    transform: translateY(20px);
    transition: transform 0.4s;
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-title {
    font-size: var(--font-size-lg);
    margin-bottom: 4px;
    color: var(--color-white);
}

.overlay-text {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    margin-bottom: var(--space-sm);
}

.btn-view-image {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gold);
    color: var(--color-black);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    border: none;
}

.btn-view-image:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

.gallery-cta {
    text-align: center;
    padding: var(--space-xl);
    background: rgba(212, 175, 55, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

/* ===== SCHEDULE & LOCATION ===== */
.schedule-location {
    background: var(--color-black);
}

.schedule-location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.schedule-card, .location-card {
    background: var(--color-gray-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-gray);
}

.card-header {
    padding: var(--space-lg);
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-full);
    color: var(--color-gold);
    font-size: var(--font-size-lg);
}

.header-title {
    font-size: var(--font-size-xl);
    color: var(--color-white);
}

.schedule-list {
    padding: var(--space-lg);
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-day {
    color: var(--color-text-light);
    font-size: var(--font-size-sm);
}

.schedule-hours {
    color: var(--color-gold);
    font-weight: 600;
    font-size: var(--font-size-sm);
}

.schedule-note {
    padding: var(--space-md) var(--space-lg);
    background: rgba(212, 175, 55, 0.05);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.schedule-note i {
    color: var(--color-gold);
    margin-top: 2px;
}

.schedule-note p {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    flex: 1;
    line-height: 1.4;
}

.location-info {
    padding: var(--space-lg);
}

.info-item {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    align-items: flex-start;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    color: var(--color-gold);
    font-size: var(--font-size-lg);
    margin-top: 2px;
    width: 24px;
}

.info-content h4 {
    font-size: var(--font-size-sm);
    color: var(--color-white);
    margin-bottom: 2px;
}

.info-content p {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    line-height: 1.4;
}

.map-container {
    padding: var(--space-lg);
    padding-top: 0;
}

.map-placeholder {
    height: 200px;
    background: var(--color-dark);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    color: var(--color-text-light);
    border: 2px dashed var(--color-gray);
}

.map-placeholder i {
    font-size: var(--font-size-3xl);
    color: var(--color-gray-light);
}

.map-placeholder p {
    font-size: var(--font-size-sm);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--color-dark);
    padding: var(--space-xxl) 0;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.slider-container {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: var(--space-xl);
    padding: var(--space-lg) 0;
}

.slider-container::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    scroll-snap-align: start;
    background: var(--color-gray-dark);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid var(--color-gray);
    transition: all var(--transition-base);
    height: 100%;
}

.testimonial-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 2px solid var(--color-gold);
    flex-shrink: 0;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-info {
    flex: 1;
}

.client-name {
    font-size: var(--font-size-lg);
    margin-bottom: 4px;
    color: var(--color-white);
}

.client-rating {
    display: flex;
    gap: 2px;
}

.client-rating i {
    color: var(--color-gold);
    font-size: var(--font-size-sm);
}

.testimonial-content {
    margin-bottom: var(--space-lg);
}

.testimonial-content p {
    font-size: var(--font-size-md);
    line-height: 1.8;
    color: var(--color-text-light);
    font-style: italic;
}

.testimonial-date {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-text-light);
    font-size: var(--font-size-sm);
}

.testimonial-date i {
    color: var(--color-gold);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.slider-prev,
.slider-next {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray-dark);
    border: 1px solid var(--color-gray);
    border-radius: var(--radius-full);
    color: var(--color-white);
    transition: all var(--transition-base);
    border: none;
}

.slider-prev:hover,
.slider-next:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    background: var(--color-gray);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
}

.slider-dot.active {
    background: var(--color-gold);
    transform: scale(1.2);
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    overflow: hidden;
    padding: var(--space-xxl) 0;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.95)), 
                url('https://images.unsplash.com/photo-1599351431202-1e0f0137899a?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
    z-index: -1;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.2) 0%, transparent 100%);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-xxl) 0;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--space-md);
    color: var(--color-white);
}

.cta-description {
    font-size: var(--font-size-lg);
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xxl);
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-white);
    font-size: var(--font-size-sm);
    background: rgba(255, 255, 255, 0.05);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
}

.feature i {
    color: var(--color-gold);
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
}

.cta-alternative {
    text-align: center;
}

.alternative-text {
    color: var(--color-text-light);
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-sm);
}

.btn-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 1.5rem;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    z-index: var(--z-fixed);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--color-whatsapp);
    color: var(--color-white);
    border-radius: var(--radius-full);
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.float-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border-radius: var(--radius-full);
    color: var(--color-whatsapp);
    font-size: var(--font-size-2xl);
    flex-shrink: 0;
}

.float-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.float-text span:first-child {
    font-size: var(--font-size-xs);
    opacity: 0.8;
}

.float-text span:last-child {
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.float-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: var(--color-white);
    color: var(--color-whatsapp);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xs);
    font-weight: 700;
    animation: notificationPulse 2s infinite;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-dark);
    padding: var(--space-xxl) 0 var(--space-xl);
    border-top: 1px solid var(--color-gray);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xxl);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.footer-description {
    color: var(--color-text-light);
    line-height: 1.6;
    font-size: var(--font-size-sm);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray-dark);
    border-radius: var(--radius-full);
    color: var(--color-white);
    transition: all var(--transition-base);
    text-decoration: none;
}

.social-link:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-3px);
}

.footer-title {
    font-size: var(--font-size-lg);
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-link {
    color: var(--color-text-light);
    font-size: var(--font-size-sm);
    transition: all var(--transition-base);
    text-decoration: none;
}

.footer-link:hover {
    color: var(--color-gold);
    padding-left: 4px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-item {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
}

.contact-item i {
    color: var(--color-gold);
    margin-top: 2px;
    width: 20px;
    flex-shrink: 0;
}

.contact-text p {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    line-height: 1.4;
}

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-gray-dark);
}

.bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    text-align: center;
}

.copyright {
    color: var(--color-text-light);
    font-size: var(--font-size-sm);
}

.bottom-links {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
    justify-content: center;
}

.bottom-link {
    color: var(--color-text-light);
    font-size: var(--font-size-sm);
    transition: color var(--transition-base);
    text-decoration: none;
}

.bottom-link:hover {
    color: var(--color-gold);
}

.separator {
    color: var(--color-text-light);
}

/* ===== MODAL ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-modal);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    background: var(--color-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid var(--color-gold);
}

.modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: var(--radius-full);
    color: var(--color-white);
    z-index: 1;
    transition: all var(--transition-base);
    border: none;
}

.modal-close:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.modal-image {
    width: 100%;
    height: 400px;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info {
    padding: var(--space-xl);
}

.modal-title {
    font-size: var(--font-size-2xl);
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.modal-description {
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ===== UTILITY CLASSES ===== */
.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;
}

.text-center {
    text-align: center;
}

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.p-sm { padding: var(--space-sm); }
.p-md { padding: var(--space-md); }
.p-lg { padding: var(--space-lg); }

/* ===== ANIMATIONS ===== */
@keyframes loadingText {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes notificationPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-light);
}
/* ===== CORRECCIÓN COMPLETA PARA ESTADÍSTICAS ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background: var(--color-gray-dark);
    border: 1px solid var(--color-gray);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--color-gold);
    font-size: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.stat-content {
    position: relative;
    z-index: 1;
}

/* ESTO ES CRÍTICO - Elimina pseudo-elementos conflictivos */
.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    display: block;
    line-height: 1;
    font-family: var(--font-secondary);
    position: relative;
}

/* REMOVER pseudo-elementos ::before y ::after que causan duplicación */
.stat-number::before,
.stat-number::after {
    content: none !important;
}

.stat-text {
    font-size: 0.875rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Animación suave para el contador */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number.counting {
    animation: countUp 0.8s ease forwards;
    color: var(--color-gold) !important;
}

.stat-number.final {
    color: var(--color-white);
}