/* ========================================
   LOADER
======================================== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.loader-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.loader-content {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader-logo {
    margin-bottom: 40px;
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-logo img.loader-logo-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.loader-spinner {
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 150px;
    border: 4px solid rgba(245, 196, 0, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse-logo {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 50px rgba(245, 196, 0, 0.6), 0 0 100px rgba(245, 196, 0, 0.3);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 0 70px rgba(245, 196, 0, 0.8), 0 0 150px rgba(245, 196, 0, 0.4);
    }
}

/* ========================================
   VARIABLES Y RESET
======================================== */
:root {
    --primary: #F5C400;        /* Amarillo neón */
    --primary-dark: #D4A800;
    --secondary: #00FF88;      /* Verde neón */
    --dark: #0A0A0A;
    --dark-secondary: #141414;
    --dark-tertiary: #1A1A1A;
    --gray: #2A2A2A;
    --gray-light: #3A3A3A;
    --text: #EAEAEA;
    --text-muted: #999999;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-dark: linear-gradient(180deg, var(--dark) 0%, var(--dark-secondary) 100%);
    --shadow-glow: 0 0 30px rgba(245, 196, 0, 0.3);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.section-header h2 .highlight {
    color: var(--primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Gallery Section Specific Styles */
.gallery-section .section-header {
    margin-bottom: 50px;
}

.gallery-section .section-tag {
    background: linear-gradient(135deg, var(--primary) 0%, #d4a800 100%);
    box-shadow: 0 5px 20px rgba(245, 196, 0, 0.3);
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--dark);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(245, 196, 0, 0.6);
}

.btn-outline {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--dark);
}

.btn-sm {
    padding: 10px 25px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 20px 50px;
    font-size: 1.1rem;
}

.btn-disabled {
    background: var(--gray);
    color: var(--text-muted);
    cursor: not-allowed;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 25px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
}

.btn-full {
    width: 100%;
}

/* ========================================
   HEADER
======================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(245, 196, 0, 0.1);
    transition: var(--transition);
}

header.scrolled {
    padding: 10px 50px;
    background: rgba(10, 10, 10, 0.98);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 50px;
    height: auto;
    min-height: 50px;
    border-radius: 0;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}

.logo-text .highlight {
    color: var(--primary);
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

nav a:hover {
    color: var(--primary);
}

nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--primary);
    cursor: pointer;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-bottom: 80px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg, 
        rgba(10, 10, 10, 0.75) 0%, 
        rgba(10, 10, 10, 0.5) 50%,
        rgba(10, 10, 10, 0.85) 100%
    );
    z-index: 1;
}

/* Hero Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 196, 0, 0.15) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.hero-particles::before {
    top: 10%;
    left: -5%;
}

.hero-particles::after {
    bottom: 10%;
    right: -5%;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F5C400' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, var(--dark) 100%);
    z-index: 1;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Hero Container - Two Columns for Desktop */
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    gap: 80px;
    position: relative;
    z-index: 10;
}

.hero-left {
    flex: 1;
    text-align: left;
    max-width: 750px;
    position: relative;
}

/* Decorative element behind left column */
.hero-left::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 196, 0, 0.08) 0%, transparent 70%);
    top: -100px;
    left: -150px;
    pointer-events: none;
}

.hero-right {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Hero Stats in Right Column - Clean & Readable */
.hero-right .hero-stats {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9), rgba(30, 30, 30, 0.8));
    border: 1px solid rgba(245, 196, 0, 0.25);
    border-radius: 10px;
    backdrop-filter: blur(8px);
}

/* Stat Box */
.hero-right .stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
}

.hero-right .stat-box:hover {
    background: rgba(245, 196, 0, 0.1);
}

.hero-right .stat-box .stat-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 196, 0, 0.2);
    color: #f5c400;
    border-radius: 50%;
    font-size: 0.7rem;
    margin-bottom: 2px;
}

.hero-right .stat-box .stat-info {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
}

.hero-right .stat-box .stat-number {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

.hero-right .stat-box .stat-label {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

/* Hero Contact - Compact */
.hero-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px 14px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(245, 196, 0, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

/* Contact Card */
.hero-contact .contact-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    border-radius: 6px;
}

.hero-contact .contact-card:last-child {
    border-bottom: none;
}

.hero-contact .contact-card:hover {
    background: rgba(245, 196, 0, 0.08);
}

.hero-contact .contact-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 196, 0, 0.2);
    color: #f5c400;
    border-radius: 5px;
    font-size: 0.7rem;
}

.hero-contact .contact-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero-contact .contact-label {
    font-size: 0.6rem;
    color: #f5c400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.hero-contact .contact-value {
    font-size: 0.75rem;
    color: #fff;
    line-height: 1.3;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(245, 196, 0, 0.15), rgba(245, 196, 0, 0.05));
    border: 1px solid rgba(245, 196, 0, 0.4);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--primary);
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: linear-gradient(135deg, rgba(245, 196, 0, 0.25), rgba(245, 196, 0, 0.1));
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 196, 0, 0.2);
}

.hero-badge .badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--primary);
    color: var(--dark);
    border-radius: 50%;
    font-size: 0.65rem;
}

/* Hero Title */
.hero h1,
.hero-title {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-title-secondary {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.gradient-text {
    background: linear-gradient(135deg, #F5C400 0%, #FFD700 50%, #F5C400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.subtitle-line {
    display: inline-block;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

/* Hero Features */
.hero-features {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-feature:hover {
    background: rgba(245, 196, 0, 0.15);
    border-color: rgba(245, 196, 0, 0.4);
    transform: translateY(-3px);
}

.hero-feature .feature-icon {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), #FFD700);
    color: var(--dark);
    border-radius: 8px;
    font-size: 0.7rem;
}

.hero-feature span {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.85rem;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary), #FFD700);
    color: var(--dark);
    border: none;
    box-shadow: 0 5px 25px rgba(245, 196, 0, 0.4);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245, 196, 0, 0.5);
}

.hero-buttons .btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    max-width: 700px;
    margin: 0 auto;
}

.hero-stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hero-stat-divider {
    width: 1px;
    height: 35px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.2), transparent);
}

.hero-stat .stat-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 196, 0, 0.15);
    color: var(--primary);
    border-radius: 6px;
    font-size: 0.75rem;
    margin-bottom: 2px;
}

.hero-stat .stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1;
}

.hero-stat .stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Bottom Bar */
.hero-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    z-index: 10;
    flex-wrap: wrap;
}

/* Hide bottom bar on desktop with two columns */
@media (min-width: 769px) {
    .hero-bottom-bar {
        display: none;
    }
}

.hero-info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.75rem;
}

.hero-info-item i {
    color: var(--primary);
    font-size: 0.8rem;
}

/* Scroll Down */
.scroll-down {
    position: absolute;
    bottom: 85px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-down a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.scroll-down a:hover {
    color: var(--primary);
}

.scroll-text {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(10px); }
    60% { transform: translateY(5px); }
}

/* ========================================
   ABOUT SECTION
======================================== */
.about-section {
    background: var(--dark-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--white);
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text strong {
    color: var(--primary);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.about-feature i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.about-images {
    position: relative;
}

.about-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.about-img-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.about-img-grid img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-glow);
}

.about-img-grid img:first-child {
    grid-column: span 2;
    height: 250px;
}

/* ========================================
   SERVICES SECTION
======================================== */
.services-section {
    background: var(--gradient-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--dark-tertiary);
    border: 1px solid rgba(245, 196, 0, 0.1);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(245, 196, 0, 0.3);
    box-shadow: var(--shadow-card);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(245, 196, 0, 0.2);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(245, 196, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--white);
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 1rem;
}

.service-features {
    text-align: left;
    margin-bottom: 25px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.service-features li i {
    color: var(--secondary);
    font-size: 0.9rem;
}

.service-price {
    margin-bottom: 20px;
}

.price-amount {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.price-type {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.price-label {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* ========================================
   PREMIUM SERVICES ENHANCED STYLES
======================================== */
.services-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(245, 196, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 193, 7, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, transparent 0%, rgba(245, 196, 0, 0.02) 100%);
    pointer-events: none;
    z-index: 0;
}

.services-section .container {
    position: relative;
    z-index: 1;
}

.service-card.premium {
    background: linear-gradient(145deg, rgba(30, 30, 35, 0.95) 0%, rgba(20, 20, 25, 0.98) 100%);
    border: 1px solid rgba(245, 196, 0, 0.15);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-card.premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 196, 0, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card.premium:hover::before {
    opacity: 1;
}

.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 0%, rgba(245, 196, 0, 0.15) 0%, transparent 60%),
        linear-gradient(180deg, rgba(245, 196, 0, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.service-logo-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(245, 196, 0, 0.3);
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 2;
}

.service-card.premium:hover .service-logo-wrapper {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(245, 196, 0, 0.4);
}

.service-logo-img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.service-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(245, 196, 0, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.service-card.premium:hover .service-glow {
    opacity: 1;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.service-card.premium h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--white);
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.service-description {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.service-card.premium .service-features {
    text-align: left;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card.premium .service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.service-card.premium .service-features li:hover {
    transform: translateX(5px);
}

.service-card.premium .service-features li:last-child {
    margin-bottom: 0;
}

.service-card.premium .service-features li i {
    color: var(--primary);
    font-size: 1rem;
    text-shadow: 0 0 10px rgba(245, 196, 0, 0.5);
}

.service-card.premium .service-price {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.service-card.premium .price-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(245, 196, 0, 0.2) 0%, rgba(255, 193, 7, 0.1) 100%);
    padding: 12px 25px;
    border-radius: 30px;
    border: 1px solid rgba(245, 196, 0, 0.3);
}

.service-card.premium .price-amount {
    display: inline;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(245, 196, 0, 0.4);
}

.service-card.premium .price-type {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.service-card.premium:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(245, 196, 0, 0.5);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(245, 196, 0, 0.15);
}

.service-card.premium:hover::before {
    transform: scaleX(1);
}

/* Featured Card Styles */
.service-card.premium.featured {
    border-color: rgba(245, 196, 0, 0.4);
    background: linear-gradient(145deg, rgba(40, 35, 25, 0.98) 0%, rgba(25, 22, 18, 0.98) 100%);
}

.service-card.premium.featured::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary), transparent, var(--primary));
    border-radius: 22px;
    z-index: -1;
    opacity: 0.3;
    animation: border-glow 3s linear infinite;
}

@keyframes border-glow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

.service-badge-ribbon {
    position: absolute;
    top: 15px;
    right: -35px;
    background: linear-gradient(135deg, var(--primary) 0%, #ffc107 100%);
    color: var(--dark);
    padding: 8px 40px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(245, 196, 0, 0.4);
    z-index: 10;
}

/* Coming Soon Card */
.service-card.premium.coming-soon-card {
    opacity: 0.85;
}

.service-card.premium.coming-soon-card .service-glow {
    background: radial-gradient(circle, rgba(100, 100, 100, 0.3) 0%, transparent 70%);
}

/* Button Pulse Animation */
.btn-pulse {
    position: relative;
    overflow: hidden;
}

.btn-pulse::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-pulse:hover::after {
    width: 300px;
    height: 300px;
}

/* Responsive */
@media (max-width: 768px) {
    .service-card.premium {
        padding: 30px 20px;
    }
    
    .service-logo-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .service-card.premium h3 {
        font-size: 1.3rem;
    }
    
    .service-card.premium .price-amount {
        font-size: 1.5rem;
    }
}

/* ========================================
   TIENDA SECTION
======================================== */
.tienda-section {
    background: var(--dark-secondary);
    position: relative;
    overflow: hidden;
}

.tienda-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(245, 196, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(245, 196, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.tienda-logo-header {
    text-align: center;
    margin-bottom: 30px;
}

.tienda-logo {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(245, 196, 0, 0.3));
    animation: logoGlow 3s ease-in-out infinite;
}

/* Tienda Header Styles */
.tienda-header-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
    border-radius: 20px;
    border: 1px solid rgba(245, 196, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.tienda-header-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.tienda-header-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 196, 0, 0.3), transparent);
}

.tienda-logo-container {
    position: relative;
    margin: 20px 0;
}

.tienda-logo-container .tienda-logo {
    max-width: 320px;
    height: auto;
    filter: drop-shadow(0 0 25px rgba(245, 196, 0, 0.4));
    animation: logoGlow 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.tienda-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(245, 196, 0, 0.15) 0%, transparent 70%);
    z-index: 1;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.tienda-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    margin: 20px 0 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
}

.tienda-title .highlight {
    color: var(--primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tienda-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 15px 0 25px;
}

.divider-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.tienda-divider i {
    color: var(--primary);
    font-size: 1.2rem;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.tienda-header-wrapper .section-subtitle {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive Tienda Header */
@media (max-width: 768px) {
    .tienda-header-wrapper {
        padding: 30px 20px;
    }
    
    .tienda-logo-container .tienda-logo {
        max-width: 220px;
    }
    
    .tienda-logo-glow {
        width: 250px;
        height: 250px;
    }
    
    .tienda-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .divider-line {
        width: 40px;
    }
}

@media (max-width: 480px) {
    .tienda-title {
        font-size: 1.4rem;
    }
    
    .tienda-header-wrapper .section-subtitle {
        font-size: 1rem;
    }
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(245, 196, 0, 0.3)); }
    50% { filter: drop-shadow(0 0 40px rgba(245, 196, 0, 0.6)); }
}

/* Category Tabs */
.tienda-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-btn {
    background: var(--dark-tertiary);
    border: 2px solid rgba(245, 196, 0, 0.2);
    color: var(--text-muted);
    padding: 12px 30px;
    border-radius: 30px;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-btn:hover,
.category-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--dark);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 196, 0, 0.3);
}

/* Products Grid */
.tienda-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.tienda-producto {
    background: var(--dark-tertiary);
    border: 1px solid rgba(245, 196, 0, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.tienda-producto:hover {
    transform: translateY(-10px);
    border-color: rgba(245, 196, 0, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tienda-producto.hidden {
    display: none;
}

.producto-imagen {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--dark);
}

.producto-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.tienda-producto:hover .producto-imagen img {
    transform: scale(1.1);
}

.producto-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.tienda-producto:hover .producto-overlay {
    opacity: 1;
}

.btn-agregar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--dark);
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transform: translateY(20px);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.tienda-producto:hover .btn-agregar {
    transform: translateY(0);
}

.btn-agregar:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 10px 30px rgba(245, 196, 0, 0.4);
}

.btn-agregar.agregado {
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
}

.producto-info {
    padding: 20px;
    text-align: center;
}

.producto-categoria {
    display: inline-block;
    background: rgba(245, 196, 0, 0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.producto-info h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 8px;
}

.producto-descripcion {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.producto-precio {
    display: flex;
    justify-content: center;
    align-items: center;
}

.precio {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(245, 196, 0, 0.3);
}

/* Tienda CTA */
.tienda-cta {
    text-align: center;
    padding: 40px;
    background: var(--dark-tertiary);
    border-radius: var(--border-radius);
    border: 1px solid rgba(245, 196, 0, 0.2);
}

.tienda-cta p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

/* ========================================
   CARRITO FLOTANTE
======================================== */
.carrito-flotante {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.carrito-toggle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--dark);
    box-shadow: 0 10px 40px rgba(245, 196, 0, 0.4);
    transition: var(--transition);
    position: relative;
}

.carrito-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(245, 196, 0, 0.5);
}

.carrito-toggle.bounce {
    animation: bounce 0.5s ease;
}

@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.carrito-contador {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--danger);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.carrito-dropdown {
    position: absolute;
    bottom: 85px;
    right: 0;
    width: 380px;
    max-height: 500px;
    background: var(--dark-tertiary);
    border: 2px solid rgba(245, 196, 0, 0.3);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: var(--transition);
}

.carrito-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.carrito-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--dark);
    border-bottom: 1px solid rgba(245, 196, 0, 0.2);
}

.carrito-header h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.carrito-cerrar {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 5px;
}

.carrito-cerrar:hover {
    color: var(--danger);
    transform: rotate(90deg);
}

.carrito-items {
    max-height: 300px;
    overflow-y: auto;
    padding: 15px;
}

.carrito-vacio {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
}

.carrito-vacio i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

.carrito-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--dark);
    border-radius: 12px;
    margin-bottom: 10px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.carrito-item-imagen {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--dark-secondary);
}

.carrito-item-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carrito-item-info {
    flex: 1;
}

.carrito-item-info h4 {
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 5px;
}

.carrito-item-info .precio {
    font-size: 1rem;
}

.carrito-item-cantidad {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-cantidad {
    width: 28px;
    height: 28px;
    background: var(--dark-tertiary);
    border: 1px solid rgba(245, 196, 0, 0.3);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-cantidad:hover {
    background: var(--primary);
    color: var(--dark);
}

.carrito-item-eliminar {
    background: transparent;
    border: none;
    color: var(--danger);
    cursor: pointer;
    padding: 5px;
    transition: var(--transition);
}

.carrito-item-eliminar:hover {
    transform: scale(1.2);
}

.carrito-footer {
    padding: 20px;
    background: var(--dark);
    border-top: 1px solid rgba(245, 196, 0, 0.2);
}

.carrito-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(245, 196, 0, 0.1);
}

.carrito-total span {
    color: var(--text-muted);
    font-size: 1rem;
}

.carrito-total .total-amount {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(245, 196, 0, 0.3);
}

.btn-carrito-wpp {
    width: 100%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    transition: var(--transition);
}

.btn-carrito-wpp:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-carrito-limpiar {
    width: 100%;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 12px;
    font-family: var(--font-display);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-carrito-limpiar:hover {
    border-color: var(--danger);
    color: var(--danger);
}

/* Scrollbar */
.carrito-items::-webkit-scrollbar {
    width: 6px;
}

.carrito-items::-webkit-scrollbar-track {
    background: var(--dark);
}

.carrito-items::-webkit-scrollbar-thumb {
    background: rgba(245, 196, 0, 0.3);
    border-radius: 3px;
}

.carrito-items::-webkit-scrollbar-thumb:hover {
    background: rgba(245, 196, 0, 0.5);
}

/* ========================================
   STATS SECTION
======================================== */
.stats-section {
    position: relative;
    background: var(--dark);
    padding: 80px 0;
    overflow: hidden;
}

.stats-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(245, 196, 0, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(245, 196, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   REVIEWS SECTION
======================================== */
.reviews-section {
    background: var(--gradient-dark);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.review-card {
    background: var(--dark-tertiary);
    border: 1px solid rgba(245, 196, 0, 0.1);
    border-radius: var(--border-radius);
    padding: 35px;
    transition: var(--transition);
}

.review-card:hover {
    border-color: rgba(245, 196, 0, 0.3);
    transform: translateY(-5px);
}

.review-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(245, 196, 0, 0.15);
}

.review-stars {
    margin-bottom: 20px;
}

.review-stars i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-right: 3px;
}

.review-text {
    font-size: 1.1rem;
    color: var(--text);
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.7;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-avatar {
    width: 45px;
    height: 45px;
    background: rgba(245, 196, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.review-author span {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.reviews-cta {
    text-align: center;
}

/* ========================================
   GALLERY SECTION - MULTIMEDIA GALLERY
======================================== */
.gallery-section {
    background: var(--dark-secondary);
    position: relative;
    overflow: hidden;
}

.gallery-bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(245, 196, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 196, 0, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 30%);
}

/* Gallery Hero Video */
.gallery-hero {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.gallery-hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

.gallery-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.gallery-hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(245, 196, 0, 0.1) 0%, transparent 100%);
}

.gallery-hero-content {
    position: relative;
    z-index: 2;
}

.gallery-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, #d4a800 100%);
    color: var(--dark);
    padding: 10px 24px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(245, 196, 0, 0.4);
}

.gallery-hero-badge i {
    font-size: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.gallery-hero-content h3 {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 10px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    line-height: 1.2;
}

.gallery-hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.gallery-hero-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.gallery-control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-control-btn:hover {
    background: var(--primary);
    color: var(--dark);
    transform: scale(1.1);
    border-color: var(--primary);
}

/* Filter Tabs */
.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 12px 25px;
    border: 2px solid rgba(245, 196, 0, 0.3);
    border-radius: 50px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, #d4a800 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    left: 0;
}

.filter-btn i {
    font-size: 0.85rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, #d4a800 100%);
    border-color: var(--primary);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 196, 0, 0.3);
}

/* Media Grid */
.gallery-media-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-media-grid .gallery-media-item {
    min-height: 250px;
}

.gallery-media-grid .gallery-media-item-wide {
    min-height: 250px;
}

.gallery-media-grid .gallery-media-item-tall {
    min-height: 500px;
}

.gallery-media-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    background: var(--dark);
}

.gallery-media-item img,
.gallery-media-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

/* Ensure video elements fill their container properly */
.gallery-media-item video.media-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.gallery-media-item:hover img,
.gallery-media-item:hover video {
    transform: scale(1.1);
}

.gallery-media-item-wide {
    grid-column: span 2;
    aspect-ratio: 2/1;
}

.gallery-media-item-tall {
    grid-row: span 2;
    aspect-ratio: 1/2;
}

.gallery-media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.8) 100%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-media-item:hover .gallery-media-overlay {
    opacity: 1;
}

.gallery-media-overlay i {
    font-size: 2.5rem;
    color: var(--white);
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-media-overlay span {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(20px);
    transition: var(--transition);
    text-align: center;
    padding: 0 10px;
}

.gallery-media-item:hover .gallery-media-overlay i,
.gallery-media-item:hover .gallery-media-overlay span {
    transform: translateY(0);
}

.play-button {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transform: scale(0.8);
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(245, 196, 0, 0.4);
}

.play-button i {
    font-size: 1.8rem;
    color: var(--dark);
    margin-left: 4px;
    transform: none !important;
}

.gallery-media-item:hover .play-button {
    transform: scale(1);
}

.media-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(245, 196, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.media-badge i {
    font-size: 1rem;
    color: var(--dark);
}

/* Hidden items for filtering */
.gallery-media-item.hidden {
    display: none;
}

/* Hidden items for load more */
.gallery-media-item.gallery-hidden {
    display: none;
}

.gallery-media-item.gallery-hidden.show {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Load More Button */
.gallery-load-more {
    text-align: center;
    margin-top: 50px;
}

.gallery-load-more .btn {
    min-width: 180px;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.gallery-load-more .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 196, 0, 0.4);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-nav:hover {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
}

.lightbox-content {
    max-width: 90%;
    max-height: 85%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img,
.lightbox-content video {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 12px 30px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.lightbox-counter {
    position: absolute;
    top: 30px;
    left: 30px;
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 15px;
    border-radius: 20px;
}

/* Responsive Gallery */
@media (max-width: 1200px) {
    .gallery-media-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .gallery-hero {
        height: 400px;
    }
    
    .gallery-hero-content h3 {
        font-size: 2rem;
    }
    
    .gallery-media-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-media-item-wide {
        grid-column: span 1;
        aspect-ratio: 1;
    }
    
    .gallery-media-item-tall {
        grid-row: span 1;
        aspect-ratio: 1;
    }
    
    .filter-btn {
        padding: 10px 18px;
        font-size: 0.8rem;
    }
    
    .lightbox-nav {
        width: 45px;
        height: 45px;
    }
    
    .lightbox-prev {
        left: 15px;
    }
    
    .lightbox-next {
        right: 15px;
    }
}

@media (max-width: 500px) {
    .gallery-hero {
        height: 300px;
    }
    
    .gallery-hero-content h3 {
        font-size: 1.5rem;
    }
    
    .gallery-hero-badge {
        font-size: 0.7rem;
        padding: 6px 15px;
    }
    
    .gallery-media-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-filter {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 0.75rem;
    }
    
    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-caption {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

/* Hide old gallery (keeping for reference) */
.gallery-new,
.gallery-main,
.gallery-grid-new,
.gallery-item-new {
    display: none;
}

/* Old Gallery Styles (keep for compatibility) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2.5rem;
    color: var(--primary);
    transform: scale(0.5);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item:nth-child(4) {
    grid-column: span 2;
}

/* ========================================
   NEW CONTACT SECTION
======================================== */
.contact-section {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a2e 50%, #0d0d0d 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(245, 196, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 196, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.contact-info-new {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card-new {
    background: linear-gradient(145deg, rgba(30, 30, 40, 0.9), rgba(20, 20, 30, 0.95));
    border: 1px solid rgba(245, 196, 0, 0.1);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    gap: 22px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 196, 0, 0.05), transparent);
    transition: left 0.5s;
}

.contact-card-new:hover::before {
    left: 100%;
}

.contact-card-new:hover {
    border-color: var(--primary);
    transform: translateY(-5px) translateX(5px);
    box-shadow: 
        0 15px 40px rgba(245, 196, 0, 0.15),
        0 0 0 1px rgba(245, 196, 0, 0.2);
}

.contact-card-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    background: linear-gradient(135deg, rgba(245, 196, 0, 0.2), rgba(245, 196, 0, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
    transition: all 0.3s ease;
    border: 1px solid rgba(245, 196, 0, 0.2);
}

.contact-card-new:hover .contact-card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(245, 196, 0, 0.3);
}

.contact-card-icon.whatsapp {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.25), rgba(37, 211, 102, 0.1));
    color: #25D366;
    border-color: rgba(37, 211, 102, 0.3);
}

.contact-card-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    border: none;
}

.contact-card-icon.clock {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 255, 136, 0.1));
    color: #00FF88;
    border-color: rgba(0, 255, 136, 0.3);
}

.contact-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-card-content h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.contact-card-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.contact-card-content p strong {
    color: var(--primary);
    font-weight: 700;
}

.contact-phone {
    font-family: var(--font-display);
    font-size: 1.4rem !important;
    color: var(--primary) !important;
    margin-bottom: 18px !important;
    font-weight: 700;
    letter-spacing: 1px;
}

.contact-insta {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 1.1rem !important;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-size: 0.9rem;
    margin-top: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 500;
}

.contact-link:hover {
    color: var(--white);
    gap: 15px;
}

.contact-link i {
    transition: transform 0.3s ease;
}

.contact-link:hover i {
    transform: translateX(5px);
}

.contact-card-new .btn {
    margin-top: 15px;
    padding: 12px 24px;
    font-size: 0.9rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.contact-card-new .btn-primary {
    background: linear-gradient(135deg, #25D366, #20BD5A);
    border: none;
    color: white;
}

.contact-card-new .btn-primary:hover {
    background: linear-gradient(135deg, #20BD5A, #1DA951);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.contact-card-new .btn-outline {
    background: transparent;
    border: 2px solid;
    border-image: linear-gradient(45deg, #f09433, #dc2743) 1;
    color: #dc2743;
}

.contact-card-new .btn-outline:hover {
    background: linear-gradient(45deg, #f09433, #dc2743);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 39, 67, 0.3);
}

.contact-map-new {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 3px solid rgba(245, 196, 0, 0.2);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 0 0 1px rgba(245, 196, 0, 0.1);
}

.map-wrapper {
    position: relative;
    height: 550px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: saturate(0.8) contrast(1.1);
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10;
}

.map-pin {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), #e6b800);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--dark);
    box-shadow: 
        0 10px 40px rgba(245, 196, 0, 0.5),
        0 0 0 8px rgba(245, 196, 0, 0.15);
    animation: pulse-map 2s infinite;
}

.map-pin i {
    transform: rotate(45deg);
}

@keyframes pulse-map {
    0% {
        box-shadow: 
            0 10px 40px rgba(245, 196, 0, 0.5),
            0 0 0 8px rgba(245, 196, 0, 0.15);
    }
    50% {
        box-shadow: 
            0 10px 40px rgba(245, 196, 0, 0.5),
            0 0 0 20px rgba(245, 196, 0, 0.05);
    }
    100% {
        box-shadow: 
            0 10px 40px rgba(245, 196, 0, 0.5),
            0 0 0 8px rgba(245, 196, 0, 0.15);
    }
}

/* Responsive Contact */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .map-wrapper {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .contact-card-new {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }
    
    .contact-card-icon {
        margin: 0 auto;
    }
    
    .contact-card-content {
        align-items: center;
    }
    
    .map-wrapper {
        height: 350px;
    }
    
    .contact-info-new {
        gap: 20px;
    }
}

/* Old Contact Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    background: var(--dark-tertiary);
    border: 1px solid rgba(245, 196, 0, 0.1);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: rgba(245, 196, 0, 0.3);
}

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--white);
}

.contact-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.contact-card a {
    color: var(--primary);
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--white);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(245, 196, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(245, 196, 0, 0.2);
    margin-bottom: 20px;
}

/* ========================================
   COCINA & DELIVERY SECTION - Enhanced
======================================== */
.cocina-section {
    background: var(--dark-secondary);
    position: relative;
    overflow: hidden;
}

.cocina-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(245, 196, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(245, 196, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Marcas Grid */
.marcas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.marca-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--border-radius);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.marca-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.marca-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 196, 0, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.marca-card:hover::before {
    transform: scaleX(1);
}

.marca-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    padding: 15px;
}

.marca-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.marca-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 8px;
}

.marca-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.marca-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.marca-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 196, 0, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.marca-feature-item:hover {
    background: rgba(245, 196, 0, 0.2);
    transform: scale(1.05);
}

.marca-feature-item i {
    font-size: 0.9rem;
}

/* Star Drinks special styling */
.marca-card.star-drinks .marca-logo {
    background: rgba(52, 152, 219, 0.1);
}

.marca-card.star-drinks::before {
    background: #3498db;
}

.marca-card.star-drinks .marca-feature-item {
    background: rgba(52, 152, 219, 0.15);
    color: #3498db;
}

.marca-card.star-drinks .marca-feature-item:hover {
    background: rgba(52, 152, 219, 0.25);
}

.marca-card.star-drinks .marca-info h3 {
    color: #5dade2;
}

/* Cocina Content */
.cocina-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cocina-text h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--white);
}

.cocina-text p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.cocina-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.cocina-feature {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.cocina-feature:hover {
    background: rgba(255,255,255,0.05);
    transform: translateX(5px);
}

.cocina-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(245, 196, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.cocina-feature:hover .cocina-feature-icon {
    background: var(--primary);
    color: var(--dark);
    transform: scale(1.1);
}

.cocina-feature-text h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 5px;
}

.cocina-feature-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* CTA Buttons */
.cocina-cta {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.cocina-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.cocina-cta .btn-secondary {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.2);
    color: var(--white);
}

.cocina-cta .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* Info section */
.cocina-info {
    display: flex;
    gap: 30px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
}

.cocina-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.cocina-info-item i {
    color: var(--primary);
    font-size: 1rem;
}

/* Image */
.cocina-image {
    position: relative;
}

.cocina-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
}

.cocina-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary);
    border-radius: var(--border-radius);
    z-index: -1;
}

.cocina-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(245, 196, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.cocina-image-badge .badge-icon {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 0.9rem;
}

.cocina-image-badge .badge-text {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .marcas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .cocina-content {
        grid-template-columns: 1fr;
    }
    
    .cocina-image {
        order: -1;
    }
    
    .cocina-features {
        grid-template-columns: 1fr;
    }
    
    .cocina-image img {
        height: 350px;
    }
    
    .cocina-cta {
        flex-direction: column;
    }
    
    .cocina-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .cocina-info {
        flex-direction: column;
        gap: 15px;
    }
}

/* Videos Section */
.cocina-videos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.video-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.4s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: rgba(245, 196, 0, 0.2);
}

.video-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(0,0,0,0.2);
}

.video-brand-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    padding: 8px;
}

.video-header h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--white);
    margin: 0;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-wrapper video.active {
    opacity: 1;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.video-wrapper:hover .video-thumbnail {
    opacity: 0.8;
}

.video-play-btn {
    width: 70px;
    height: 70px;
    background: rgba(245, 196, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(245, 196, 0, 0.4);
}

.video-wrapper:hover .video-play-btn {
    transform: scale(1.1);
    background: var(--primary);
}

.video-play-btn i {
    font-size: 1.8rem;
    color: var(--dark);
    margin-left: 4px;
}

.video-label {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    background: rgba(0,0,0,0.5);
    padding: 8px 20px;
    border-radius: 20px;
}

.video-wrapper:hover .video-play-btn {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .cocina-videos {
        grid-template-columns: 1fr;
    }
    
    .video-wrapper {
        height: 220px;
    }
}

/* ========================================
   RESERVATION SECTION
======================================== */
.reservation-section {
    background: var(--dark);
    text-align: center;
}

.reservation-content {
    background: var(--dark-tertiary);
    border: 2px solid rgba(245, 196, 0, 0.3);
    border-radius: var(--border-radius);
    padding: 60px 40px;
    max-width: 700px;
    margin: 0 auto;
}

.reservation-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: rgba(245, 196, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
}

.reservation-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.reservation-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.reservation-note {
    color: var(--primary) !important;
    font-weight: 600;
    margin-bottom: 30px !important;
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: var(--dark);
    border-top: 1px solid rgba(245, 196, 0, 0.1);
}

.footer-top {
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
}

.footer-logo span .highlight {
    color: var(--primary);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: var(--dark-tertiary);
    border: 1px solid rgba(245, 196, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4,
.footer-hours h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 25px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact ul li,
.footer-hours ul li {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact ul li i,
.footer-hours ul li i {
    color: var(--primary);
    width: 20px;
}

.footer-contact a {
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-bottom {
    background: var(--dark-secondary);
    padding: 25px 0;
    border-top: 1px solid rgba(245, 196, 0, 0.1);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom strong {
    color: var(--primary);
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--primary);
}

/* ========================================
   WHATSAPP FLOAT BUTTON
======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1024px) {
    .hero h1,
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-title-secondary {
        font-size: 3rem;
    }
    
    .hero-features {
        gap: 12px;
    }
    
    .hero-bottom-bar {
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }
    
    .logo {
        gap: 10px;
    }
    
    .logo img {
        width: 70px;
        height: auto;
    }
    
    .logo-text {
        display: none;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background: var(--dark-secondary);
        flex-direction: column;
        padding: 90px 35px 35px;
        gap: 25px;
        transition: var(--transition);
        border-left: 1px solid rgba(245, 196, 0, 0.1);
    }
    
    nav.active {
        right: 0;
    }
    
    .menu-toggle {
        display: block;
        font-size: 2.5rem;
    }
    
    nav a {
        font-size: 1.4rem;
        padding: 5px 0;
    }
    
    .hero {
        padding-bottom: 160px;
    }
    
    .hero-container {
        flex-direction: column;
        padding: 0 20px;
        gap: 30px;
    }
    
    .hero-left {
        text-align: center;
        max-width: 100%;
    }
    
    /* Hide right column on mobile, show bottom bar */
    .hero-right {
        display: none;
    }
    
    /* Show bottom bar on mobile */
    .hero-bottom-bar {
        display: flex !important;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        padding: 0 15px;
        text-align: center;
    }
    
    .section-subtitle {
        padding: 0 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-images {
        order: -1;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .coming-soon-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-item:nth-child(1) {
        grid-column: span 2;
    }
    
    .gallery-item:nth-child(4) {
        grid-column: span 1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: auto;
        padding: 100px 15px 40px;
    }
    
    .hero h1,
    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
        line-height: 1.2;
    }
    
    .hero-title-secondary {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
    
    .hero-badge {
        padding: 10px 18px;
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .hero-badge .badge-icon {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
    
    .hero-badge .badge-text {
        font-size: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 15px;
        line-height: 1.5;
    }
    
    .hero-subtitle .subtitle-line {
        display: none;
    }
    
    .hero-features {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
        margin: 20px 0;
    }
    
    .hero-feature {
        padding: 10px 16px;
    }
    
    .hero-feature .feature-icon {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }
    
    .hero-feature span {
        font-size: 0.9rem;
    }
    
    .hero-stats {
        gap: 10px;
        padding: 15px;
    }
    
    .hero-stat .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-stat .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-stat .stat-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .hero-bottom-bar {
        padding: 12px 12px;
        gap: 8px;
    }
    
    .hero-info-item {
        font-size: 0.7rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        padding: 0 20px;
    }
    
    .hero-buttons .btn {
        padding: 14px 24px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .hero-buttons .btn-icon {
        font-size: 1.2rem;
    }
    
    .scroll-down {
        display: none;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
        padding: 0 15px;
        text-align: center;
    }
    
    .section-subtitle {
        padding: 0 20px;
        font-size: 1rem;
    }
    
    .section-tag {
        font-size: 0.75rem;
        padding: 6px 15px;
    }
    
    .hero-mobile-layout .scroll-text {
        font-size: 0.75rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(4) {
        grid-column: span 1;
    }
    
    .whatsapp-float {
        bottom: 95px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .carrito-flotante {
        bottom: 15px;
        right: 15px;
    }
    
    .carrito-toggle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* ========================================
   ANIMATIONS
======================================== */
[data-aos="fade-up"] {
    transform: translateY(30px);
    opacity: 0;
}

[data-aos="fade-down"] {
    transform: translateY(-30px);
    opacity: 0;
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
    opacity: 0;
}

[data-aos="fade-left"] {
    transform: translateX(30px);
    opacity: 0;
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
    opacity: 0;
}

[data-aos="flip-left"] {
    transform: rotateY(90deg);
    opacity: 0;
}
/* ========================================
   MAGAZINE CATALOG - TIENDA STAR
   ======================================== */
.tienda-magazine-header {
    text-align: center;
    padding: 60px 20px 40px;
    position: relative;
}

.tienda-magazine-header::before {
    content: '★ EDICIÓN 2025 ★';
    display: block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    color: var(--primary);
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.tienda-magazine-logo {
    width: 180px;
    height: 180px;
    margin: 0 auto 25px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    padding: 10px;
    background: var(--dark-tertiary);
    position: relative;
    overflow: hidden;
}

.tienda-magazine-logo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(233, 69, 96, 0.3), transparent, rgba(233, 69, 96, 0.1), transparent);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.tienda-magazine-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    border-radius: 50%;
}

.tienda-magazine-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    line-height: 1.1;
}

.tienda-magazine-title .highlight {
    color: var(--primary);
    display: block;
    font-size: 3.5rem;
}

.tienda-magazine-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.tienda-magazine-date {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 8px 25px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.tienda-magazine-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
}

.tienda-magazine-divider .line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.tienda-magazine-divider .icon {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Category Filter - Magazine Style */
.tienda-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 30px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.category-btn {
    background: var(--dark-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 69, 96, 0.2), transparent);
    transition: left 0.5s ease;
}

.category-btn:hover::before {
    left: 100%;
}

.category-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.category-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.4);
}

.category-btn i {
    margin-right: 8px;
}

/* Magazine Catalog Grid */
.tienda-catalog {
    padding: 20px 0 60px;
}

.tienda-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Featured Product - Magazine Cover Style */
.tienda-producto.featured {
    grid-column: span 2;
    grid-row: span 2;
    position: relative;
}

.tienda-producto.featured .producto-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tienda-producto.featured .producto-imagen {
    flex: 1;
    min-height: 350px;
}

.tienda-producto.featured .producto-badge {
    font-size: 1rem;
    padding: 10px 25px;
}

/* Product Card - Magazine Style */
.tienda-producto {
    position: relative;
    transition: all 0.4s ease;
}

.tienda-producto.hidden {
    display: none;
}

.tienda-producto:hover {
    transform: translateY(-8px);
    z-index: 10;
}

.producto-card {
    background: var(--dark-tertiary);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tienda-producto:hover .producto-card {
    border-color: rgba(233, 69, 96, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(233, 69, 96, 0.1);
}

/* Product Badge */
.producto-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: white;
    padding: 6px 15px;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 5;
    border-radius: 2px;
}

.producto-badge.nuevo {
    background: #00c853;
}

.producto-badge.oferta {
    background: #ff6d00;
}

.producto-badge.top {
    background: var(--primary);
}

/* Product Image */
.producto-imagen {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: var(--dark);
}

.producto-imagen img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tienda-producto:hover .producto-imagen img {
    transform: scale(1.08);
}

/* Product Overlay */
.producto-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.tienda-producto:hover .producto-overlay {
    opacity: 1;
    transform: translateY(0);
}

.btn-agregar {
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px 30px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
}

.btn-agregar:hover {
    background: #d63d56;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.5);
}

.btn-agregar i {
    font-size: 1.1rem;
}

/* Product Info */
.producto-info {
    padding: 20px;
    text-align: center;
    background: var(--dark-tertiary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.producto-categoria {
    display: block;
    font-family: var(--font-display);
    font-size: 0.7rem;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.producto-nombre {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.3;
}

.producto-precio {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.producto-precio .moneda {
    font-size: 0.8rem;
    margin-right: 2px;
}

.producto-precio .descuento {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 8px;
    font-weight: 400;
}

/* CTA Section */
.tienda-cta {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, transparent 50%, rgba(233, 69, 96, 0.05) 100%);
    margin-top: 40px;
    border-top: 1px solid rgba(233, 69, 96, 0.2);
}

.tienda-cta p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.tienda-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.tienda-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4);
}

/* Responsive */
@media (max-width: 1200px) {
    .tienda-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .tienda-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .tienda-producto.featured {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .tienda-magazine-title {
        font-size: 2.2rem;
    }
    
    .tienda-magazine-title .highlight {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .tienda-magazine-header {
        padding: 40px 15px 30px;
    }
    
    .tienda-magazine-logo {
        width: 140px;
        height: 140px;
    }
    
    .tienda-magazine-title {
        font-size: 1.8rem;
    }
    
    .tienda-magazine-title .highlight {
        font-size: 2rem;
    }
    
    .tienda-categories {
        gap: 8px;
        padding: 20px 10px;
    }
    
    .category-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    .tienda-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 10px;
    }
    
    .tienda-producto.featured {
        grid-column: span 2;
    }
    
    .producto-info {
        padding: 15px;
    }
    
    .producto-nombre {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .tienda-grid {
        grid-template-columns: 1fr;
    }
    
    .tienda-producto.featured {
        grid-column: span 1;
    }
    
    .category-btn {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    
    .category-btn i {
        margin-right: 5px;
    }
}


