/* ============================================================
   HAPPY DRINK — Premium Dark Mode CSS
   Colors: Blue #3B82F6 + Purple #A855F7
   ============================================================ */

/* --- VARIABLES --- */
:root {
    --blue-400: #60A5FA;
    --blue-500: #3B82F6;
    --blue-600: #2563EB;
    --blue-700: #1D4ED8;
    --purple-400: #C084FC;
    --purple-500: #A855F7;
    --purple-600: #9333EA;
    --purple-700: #7C3AED;
    --bg-primary: #000000;
    --bg-secondary: #09090B;
    --bg-tertiary: #18181B;
    --text-primary: #FFFFFF;
    --text-secondary: #E4E4E7;
    --text-tertiary: #A1A1AA;
    --text-quaternary: #71717A;
    --success: #22C55E;
    --blue-rgb: 59, 130, 246;
    --purple-rgb: 168, 85, 247;
    --gradient-main: linear-gradient(135deg, var(--blue-500) 0%, var(--purple-500) 100%);
    --gradient-text: linear-gradient(135deg, var(--blue-400) 0%, var(--purple-400) 100%);
}

/* --- RESET & BASE --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* --- PARTICLES --- */
.particles-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--blue-500);
    opacity: 0.4;
    animation: float-particle 20s infinite ease-in-out;
    will-change: transform, opacity;
}

.particle:nth-child(even) {
    background: var(--purple-500);
}

@keyframes float-particle {

    0%,
    100% {
        transform: translate(0, 0);
        opacity: 0.3;
    }

    25% {
        transform: translate(80px, -80px);
        opacity: 0.7;
    }

    50% {
        transform: translate(-40px, -160px);
        opacity: 0.5;
    }

    75% {
        transform: translate(-80px, -80px);
        opacity: 0.7;
    }
}

@media (max-width: 768px) {
    .particle:nth-child(n+20) {
        display: none;
    }
}

/* --- CONTAINER --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- TYPOGRAPHY --- */
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blue-400);
    background: rgba(var(--blue-rgb), 0.1);
    border: 1px solid rgba(var(--blue-rgb), 0.2);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-tertiary);
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

/* --- BUTTONS --- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-main);
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 28px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 0 1px rgba(var(--blue-rgb), 0.4), 0 4px 24px rgba(var(--blue-rgb), 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    filter: brightness(1.15);
}

.btn-primary.btn-large {
    padding: 18px 36px;
    font-size: 18px;
}

.btn-primary.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 16px;
    padding: 14px 28px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: rgba(var(--blue-rgb), 0.5);
    color: var(--blue-400);
    background: rgba(var(--blue-rgb), 0.05);
}

.btn-outline.btn-large {
    padding: 18px 36px;
    font-size: 18px;
}

.btn-nav {
    background: var(--gradient-main);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-nav:hover {
    transform: translateY(-1px);
    filter: brightness(1.1);
}

/* --- GLASS CARD --- */
.glass-card {
    background: linear-gradient(135deg, rgba(var(--blue-rgb), 0.07) 0%, rgba(var(--purple-rgb), 0.05) 50%, rgba(var(--blue-rgb), 0.07) 100%);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(var(--blue-rgb), 0.15);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    border-color: rgba(var(--purple-rgb), 0.3);
    box-shadow: 0 25px 50px -12px rgba(var(--purple-rgb), 0.2);
    transform: translateY(-4px);
}

/* --- ANIMATIONS --- */
@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 0 1px rgba(var(--blue-rgb), 0.5), 0 4px 24px rgba(var(--blue-rgb), 0.4), 0 0 60px rgba(var(--purple-rgb), 0.2);
    }

    50% {
        box-shadow: 0 0 0 2px rgba(var(--purple-rgb), 0.7), 0 8px 40px rgba(var(--purple-rgb), 0.5), 0 0 80px rgba(var(--blue-rgb), 0.3);
    }
}

.pulse-glow {
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-18px) rotate(2deg);
    }

    50% {
        transform: translateY(-8px) rotate(-2deg);
    }

    75% {
        transform: translateY(-26px) rotate(1deg);
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fade-in-rotate {
    from {
        opacity: 0;
        transform: perspective(1000px) rotateY(-20deg) scale(0.9);
    }

    to {
        opacity: 1;
        transform: perspective(1000px) rotateY(0deg) scale(1);
    }
}

@keyframes liquid-wave {

    0%,
    100% {
        transform: translateX(0) scaleY(1);
    }

    50% {
        transform: translateX(-10px) scaleY(1.05);
    }
}

@keyframes bubble-rise {
    0% {
        transform: translateY(0);
        opacity: 0.6;
    }

    100% {
        transform: translateY(-60px);
        opacity: 0;
    }
}

@keyframes hero-title-zoom {
    0% {
        opacity: 0;
        transform: scale(0.2) translateY(20px);
        filter: blur(12px);
    }

    70% {
        opacity: 1;
        transform: scale(1.1) translateY(0);
        filter: blur(0);
    }

    85% {
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-hero-title {
    opacity: 0;
    animation: hero-title-zoom 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.animate-fade-up {
    opacity: 0;
    animation: fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-scale-in {
    opacity: 0;
    animation: scale-in 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.animate-fade-rotate {
    opacity: 0;
    animation: fade-in-rotate 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 {
    animation-delay: 0.15s;
}

.delay-2 {
    animation-delay: 0.3s;
}

.delay-3 {
    animation-delay: 0.5s;
}

.delay-4 {
    animation-delay: 0.7s;
}

/* Scroll reveal */
.reveal-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(var(--blue-rgb), 0.1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    padding: 8px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}


.nav-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-logo {
    display: flex;
    align-items: center;
    perspective: 1000px;
}

.logo-image {
    height: 100px;
    /* Doble de tamaño */
    width: auto;
    object-fit: contain;
    /* Static logo */
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.typewriter-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-left: 10px;
    /* Separación del logo */
    overflow: hidden;
    /* Efecto de corte */
    border-right: 2px solid var(--blue-500);
    /* Cursor parpadeante */
    white-space: nowrap;
    /* Mantiene el texto en una línea */
    animation:
        typing 3.5s steps(30, end) infinite alternate,
        blink-caret .75s step-end infinite;
}

@keyframes logo-3d-spin {
    0% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(180deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: var(--blue-500);
    }
}

.nav-links-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: auto;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
    margin-left: auto;
}

/* Global Hamburger Dropdown */
.nav-links-wrapper {
    transition: all 0.3s ease;
}

.nav-links-wrapper.open {
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    opacity: 1 !important;
    max-height: 100vh !important;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(10, 10, 15, 0.98) 100%);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    padding: 30px 24px 40px;
    margin-top: 10px;
    border-radius: 0 0 32px 32px;
    border: 1px solid rgba(var(--blue-rgb), 0.15);
    border-top: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(var(--blue-rgb), 0.1);
    transform-origin: top center;
    animation: menu-slide-down 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes menu-slide-down {
    from { opacity: 0; transform: translateY(-20px) scaleY(0.95); }
    to { opacity: 1; transform: translateY(0) scaleY(1); }
}

.nav-links-wrapper.open .nav-links {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    gap: 0;
    margin-top: 10px;
}

.nav-links-wrapper.open .nav-link {
    width: 100%;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 18px 0;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    animation: link-stagger-in 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.nav-links-wrapper.open .nav-link:last-child {
    border-bottom: none;
}

.nav-links-wrapper.open .nav-link:hover {
    background: rgba(var(--blue-rgb), 0.08);
    color: var(--blue-400);
}

@keyframes link-stagger-in {
    to { opacity: 1; transform: translateY(0); }
}

/* Stagger delays */
.nav-links-wrapper.open .nav-link:nth-child(1) { animation-delay: 0.1s; }
.nav-links-wrapper.open .nav-link:nth-child(2) { animation-delay: 0.15s; }
.nav-links-wrapper.open .nav-link:nth-child(3) { animation-delay: 0.2s; }
.nav-links-wrapper.open .nav-link:nth-child(4) { animation-delay: 0.25s; }
.nav-links-wrapper.open .nav-link:nth-child(5) { animation-delay: 0.3s; }
.nav-links-wrapper.open .nav-link:nth-child(6) { animation-delay: 0.35s; }
.nav-links-wrapper.open .nav-link:nth-child(7) { animation-delay: 0.4s; }

@media (max-width: 768px) {
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .nav-top-row {
        justify-content: space-between;
        width: 100%;
    }
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Removed mobile-nav-bar */

.mobile-nav-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-cta {
    margin-top: 12px;
    justify-content: center;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(var(--blue-rgb), 0.12) 0%, rgba(var(--purple-rgb), 0.08) 40%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, rgba(59,130,246,0.25) 0%, rgba(168,85,247,0.2) 50%, rgba(59,130,246,0.25) 100%);
    background-size: 200% 200%;
    animation: badge-shimmer 3s ease infinite, badge-glow 2s ease-in-out infinite alternate;
    border: 1px solid rgba(96, 165, 250, 0.45);
    padding: 10px 22px;
    border-radius: 100px;
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(59,130,246,0.2), inset 0 1px 0 rgba(255,255,255,0.1);
    letter-spacing: 0.03em;
    position: relative;
    overflow: hidden;
    cursor: default;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    animation: badge-sweep 3s ease-in-out infinite;
}

@keyframes badge-shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes badge-sweep {
    0% { left: -100%; }
    60%, 100% { left: 200%; }
}

@keyframes badge-glow {
    from { box-shadow: 0 0 12px rgba(59,130,246,0.2), inset 0 1px 0 rgba(255,255,255,0.08); }
    to   { box-shadow: 0 0 28px rgba(168,85,247,0.4), inset 0 1px 0 rgba(255,255,255,0.15); }
}

.badge-icon { font-size: 16px; }
.badge-flag { font-size: 16px; }

.badge-text {
    background: linear-gradient(135deg, #93c5fd 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue-500);
    box-shadow: 0 0 8px var(--blue-500);
    animation: pulse-glow 2s infinite;
}

.hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(44px, 6vw, 76px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-tertiary);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-suffix {
    font-size: 24px;
    font-weight: 700;
    color: var(--blue-400);
}

.stat-label {
    display: block;
    font-size: 12px;
    color: var(--text-quaternary);
    margin-top: 2px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* --- Hero Image --- */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-wrapper {
    position: relative;
    width: 460px;
    height: 460px;
    border-radius: 32px;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
    will-change: transform;
    box-shadow:
        0 0 0 1px rgba(var(--blue-rgb), 0.25),
        0 0 60px rgba(var(--blue-rgb), 0.3),
        0 0 120px rgba(var(--purple-rgb), 0.2),
        0 32px 80px rgba(0, 0, 0, 0.6);
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 0.6s ease;
    filter: brightness(0.85) saturate(1.2);
}

.hero-img.active {
    opacity: 1;
    z-index: 1;
}

.hero-img-wrapper:hover .hero-img.active {
    transform: scale(1.04);
}

.hero-img-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(var(--blue-rgb), 0.25) 0%,
            transparent 50%,
            rgba(var(--purple-rgb), 0.2) 100%);
    pointer-events: none;
    z-index: 2;
}

.hero-img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(var(--blue-rgb), 0.35);
    padding: 8px 16px;
    border-radius: 100px;
    box-shadow: 0 0 20px rgba(var(--blue-rgb), 0.3);
    z-index: 2;
}

.location-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: rgba(var(--blue-rgb), 0.25);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: fade-rotate 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) backwards 0.6s;
}


.float-element {
    position: absolute;
    font-size: 24px;
    animation: float-particle 15s ease-in-out infinite;
    will-change: transform;
    pointer-events: none;
    z-index: 2;
}

.fe1 {
    top: 8%;
    left: -12px;
    animation-delay: 0s;
    font-size: 20px;
}

.fe2 {
    top: 18%;
    right: -12px;
    animation-delay: 2s;
    font-size: 18px;
}

.fe3 {
    bottom: 22%;
    left: -10px;
    animation-delay: 4s;
    font-size: 22px;
}

.fe4 {
    top: 4%;
    right: 16%;
    animation-delay: 1s;
    font-size: 16px;
}

.fe5 {
    bottom: 12%;
    right: -10px;
    animation-delay: 3s;
    font-size: 20px;
}

.fe6 {
    top: 42%;
    left: -14px;
    animation-delay: 5s;
    font-size: 18px;
}

/* --- Service Images (Flip Cards) --- */
.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    filter: brightness(0.8) saturate(1.15);
}

.service-card-flip:hover .service-image {
    transform: scale(1.06);
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue-500);
    box-shadow: 0 0 8px var(--blue-500);
    animation: pulse-glow 2s infinite;
}

/* ============================================================
   SOCIAL PROOF
   ============================================================ */
.social-proof {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    position: relative;
    z-index: 1;
}

.proof-label {
    text-align: center;
    font-size: 15px;
    /* Más grande */
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
    background: linear-gradient(90deg, #888, #fff, #888);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3.5s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.proof-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.proof-item {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    padding: 10px 24px;
    border-radius: 100px;
    border: 1px solid rgba(var(--blue-rgb), 0.4);
    background: rgba(var(--blue-rgb), 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: proof-vibe 3s ease-in-out infinite;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

@keyframes proof-vibe {

    0%,
    100% {
        transform: translateY(0) rotate(0) scale(1);
    }

    25% {
        transform: translateY(-5px) rotate(1deg) scale(1.03);
        box-shadow: 0 8px 20px rgba(var(--blue-rgb), 0.2);
    }

    50% {
        transform: translateY(0) rotate(-0.5deg) scale(1.01);
    }

    75% {
        transform: translateY(4px) rotate(-1deg) scale(0.98);
    }
}

/* Energetic staggered delays */
.proof-item:nth-child(odd) {
    animation-duration: 2.8s;
    animation-delay: 0.1s;
}

.proof-item:nth-child(even) {
    animation-duration: 3.2s;
    animation-delay: 0.6s;
}

.proof-item:hover {
    color: #fff;
    background: rgba(var(--blue-rgb), 0.25);
    border-color: var(--blue-400);
    transform: scale(1.2) rotate(0deg) !important;
    animation-play-state: paused;
    box-shadow: 0 0 35px rgba(var(--blue-rgb), 0.5);
    z-index: 10;
}

.proof-item:hover {
    color: var(--blue-400);
    border-color: rgba(var(--blue-rgb), 0.3);
    background: rgba(var(--blue-rgb), 0.05);
}

/* ============================================================
   SERVICIOS — FLIP CARDS
   ============================================================ */
.servicios {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Creative Reveal Card */
.service-card-flip {
    height: 360px;
    cursor: pointer;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
}

.service-card-front,
.service-card-back {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    overflow: hidden;
}

.service-card-front {
    background: var(--bg-tertiary);
}

.service-card-back {
    background: rgba(10, 10, 18, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 32px;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 2;
}

.service-card-flip:hover .service-card-back {
    transform: translateY(0);
}

.service-card-flip:hover .service-image {
    transform: scale(1.1);
    filter: brightness(0.5) blur(2px);
}

/* Service Visuals */
.service-visual {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.sv-cocktail {
    background: linear-gradient(135deg, #0f1729 0%, #1a0a2e 50%, #0d1a3a 100%);
}

.sv-coffee {
    background: linear-gradient(135deg, #1a0d00 0%, #2d1a0a 50%, #0d0a1a 100%);
}

.sv-slush {
    background: linear-gradient(135deg, #001a2e 0%, #0a1a2d 50%, #1a002e 100%);
}

.sv-openbar {
    background: linear-gradient(135deg, #1a1a0a 0%, #2d1a00 50%, #0a0a1a 100%);
}

.sv-mocktail {
    background: linear-gradient(135deg, #0a1a0a 0%, #001a1a 50%, #1a0a1a 100%);
}

.sv-custom {
    background: linear-gradient(135deg, #1a0a1a 0%, #0a001a 50%, #001a1a 100%);
}

.sv-icon {
    font-size: 80px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 30px rgba(var(--blue-rgb), 0.6));
    transition: transform 0.4s ease;
}

.service-card-flip:hover .sv-icon {
    transform: scale(1.1);
}

.sv-bg-pattern {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(var(--blue-rgb), 0.2) 0%, rgba(var(--purple-rgb), 0.15) 40%, transparent 70%);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
}

.service-title-front {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.flip-hint {
    font-size: 11px;
    color: var(--text-quaternary);
    display: block;
    margin-top: 4px;
    opacity: 0.8;
}

.back-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.service-title-back {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.service-description {
    font-size: 14px;
    color: var(--text-tertiary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 100px;
    background: rgba(var(--blue-rgb), 0.15);
    border: 1px solid rgba(var(--blue-rgb), 0.25);
    color: var(--blue-400);
}

/* ============================================================
   EXPERIENCIA
   ============================================================ */
.experiencia {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
    z-index: 1;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.exp-card {
    text-align: center;
    padding: 36px 24px;
}

.exp-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.exp-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 52px;
    font-weight: 800;
    display: inline;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.exp-suffix {
    font-size: 36px;
    font-weight: 700;
    color: var(--purple-400);
}

.exp-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    margin: 8px 0 4px;
}

.exp-desc {
    font-size: 13px;
    color: var(--text-quaternary);
}

/* Process */
.process-section {
    margin-top: 80px;
}

.process-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
}

.process-steps {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.process-indicator {
    position: absolute;
    width: 60px;
    /* Un poco más grande para el logo */
    height: 60px;
    background: rgba(var(--blue-rgb), 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(var(--blue-rgb), 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 0 30px rgba(var(--blue-rgb), 0.5);
    padding: 8px;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 32px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
}

/* Progressive animation classes */
.process-step.reveal-card {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
}

.process-step.reveal-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.process-step:hover {
    border-color: rgba(var(--blue-rgb), 0.3);
    background: rgba(var(--blue-rgb), 0.05);
}

.step-number {
    font-size: 11px;
    font-weight: 700;
    color: var(--blue-400);
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.step-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.process-step h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 13px;
    color: var(--text-quaternary);
}

.process-arrow {
    font-size: 24px;
    color: var(--blue-500);
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.process-arrow.visible {
    opacity: 0.4;
    transform: translateX(0);
    animation: arrow-flow 2s infinite 1s;
}

@keyframes arrow-flow {

    0%,
    100% {
        transform: translateX(0);
        opacity: 0.4;
    }

    50% {
        transform: translateX(10px);
        opacity: 1;
        text-shadow: 0 0 10px var(--blue-500);
    }
}

/* Specific delays for horizontal progression */
.process-step:nth-child(1) {
    transition-delay: 0.1s;
}

.process-arrow:nth-child(2) {
    animation-delay: 0.3s;
    transition-delay: 0.3s;
}

.process-step:nth-child(3) {
    transition-delay: 0.5s;
}

.process-arrow:nth-child(4) {
    animation-delay: 0.7s;
    transition-delay: 0.7s;
}

.process-step:nth-child(5) {
    transition-delay: 0.9s;
}

.process-arrow:nth-child(6) {
    animation-delay: 1.1s;
    transition-delay: 1.1s;
}

.process-step:nth-child(7) {
    transition-delay: 1.3s;
}



/* ============================================================
   TRUSTED BY
   ============================================================ */
.trusted-by {
    padding: 30px 0 80px;
    /* Reducido de 80px el padding superior para acercarlo a testimonios */
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.trusted-title {
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    /* Misma fuente que los títulos de secciones */
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #FFFFFF;
    /* Letras en color blanco */
    margin-bottom: 32px;
    /* Reducido un poco */
}

.logo-carousel {
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: scroll-carousel 30s linear infinite;
}

@keyframes scroll-carousel {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 40px));
    }
}

.logo-track:hover {
    animation-play-state: paused;
}

.trusted-logo {
    height: 45px;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    filter: none;
    /* Removed white filter to show original colors */
    transition: all 0.4s ease;
}

.trusted-logo.logo-towncenter {
    height: 85px;
}

.trusted-logo.logo-tonnjes {
    height: 70px;
}

.trusted-logo.logo-ua-white {
    height: 90px;
}

.trusted-logo.logo-large-lismarie {
    height: 90px;
}

.trusted-logo.logo-large-beauty {
    height: 90px;
}

.trusted-logo.logo-large-c807 {
    height: 90px;
}

.trusted-logo.logo-large-ie {
    height: 90px;
}

.trusted-logo.logo-large-divas {
    height: 90px;
}

.trusted-logo.logo-large-jogo {
    height: 90px;
}

.trusted-logo.logo-large-fanatics {
    height: 90px;
}

.trusted-logo.logo-large-lg,
.trusted-logo.logo-large-skycheff {
    height: 90px;
}

.trusted-logo img {
    height: 100%;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.trusted-logo:hover {
    opacity: 1;
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .logo-track {
        gap: 40px;
    }

    @keyframes scroll-carousel {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-50% - 20px));
        }
    }

    .trusted-logo {
        height: 35px;
    }
}

/* ============================================================
   TESTIMONIOS
   ============================================================ */
.testimonios {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* Spotlight Effect Logic */
.testimonials-grid:hover .testimonial-card {
    transform: scale(0.9);
    opacity: 0.5;
    filter: grayscale(0.6);
}

.testimonial-card {
    position: relative;
    padding: 20px !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.testimonials-grid .testimonial-card:hover {
    transform: scale(1.15);
    /* Make it pop more */
    opacity: 1;
    filter: grayscale(0);
    z-index: 20;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(var(--blue-rgb), 0.5);
    background: rgba(255, 255, 255, 0.1);
}

.quote-mark {
    font-size: 48px;
    line-height: 1;
    font-family: Georgia, serif;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: -12px;
    display: block;
}

.testimonial-text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 12px;
}

.testimonial-stars {
    font-size: 12px;
    margin-bottom: 12px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    border: 2px solid rgba(var(--blue-rgb), 0.4);
    flex-shrink: 0;
    overflow: hidden;
    /* Ensure image stays in circle */
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.av1 {
    background: linear-gradient(135deg, var(--blue-600), var(--purple-600));
}

.av2 {
    background: linear-gradient(135deg, var(--purple-600), var(--blue-600));
}

.av3 {
    background: linear-gradient(135deg, var(--blue-700), var(--purple-500));
}

.av4 {
    background: linear-gradient(135deg, var(--purple-700), var(--blue-500));
}

.author-info strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
}

.author-info span {
    font-size: 13px;
    color: var(--text-quaternary);
}

/* ============================================================
   NOSOTROS
   ============================================================ */
.nosotros {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
    z-index: 1;
}

.nosotros-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
}

.nosotros-image-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 280px;
    height: 280px;
    background: radial-gradient(ellipse, rgba(var(--blue-rgb), 0.12) 0%, rgba(var(--purple-rgb), 0.08) 50%, transparent 70%);
    border-radius: 50%;
    border: 2px solid rgba(var(--blue-rgb), 0.2);
    box-shadow: 0 0 60px rgba(var(--blue-rgb), 0.15), 0 0 120px rgba(var(--purple-rgb), 0.1);
    margin: 0 auto;
}

.nosotros-logo-big {
    filter: drop-shadow(0 0 10px rgba(var(--blue-rgb), 0.5));
}

.nosotros-glow-ring {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 1px solid rgba(var(--blue-rgb), 0.15);
    animation: spin-slow 20s linear infinite;
}

.nosotros-badges {
    position: absolute;
    bottom: -20px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.nos-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    background: rgba(var(--blue-rgb), 0.15);
    border: 1px solid rgba(var(--blue-rgb), 0.25);
    border-radius: 100px;
    color: var(--blue-400);
}

.nosotros-text {
    font-size: 16px;
    color: var(--text-tertiary);
    margin-bottom: 16px;
}

.nosotros-values {
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.value-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.value-item strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.value-item p {
    font-size: 14px;
    color: var(--text-quaternary);
}

.nosotros-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-tertiary);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(var(--blue-rgb), 0.15);
    border-color: rgba(var(--blue-rgb), 0.3);
    color: var(--blue-400);
    transform: translateY(-2px);
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(var(--purple-rgb), 0.2) 0%, rgba(var(--blue-rgb), 0.15) 40%, transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--text-tertiary);
    max-width: 560px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.cta-note {
    font-size: 13px;
    color: var(--text-quaternary);
}

/* ============================================================
   CONTACTO
   ============================================================ */
.contacto {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
    font-size: 14px;
    color: var(--text-tertiary);
}

.contact-item a:hover {
    color: var(--blue-400);
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-tertiary);
}

input,
select,
textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--text-primary);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(var(--blue-rgb), 0.5);
    box-shadow: 0 0 0 3px rgba(var(--blue-rgb), 0.1);
    background: rgba(var(--blue-rgb), 0.04);
}

/* Fix visibility of select options on some browsers with dark themes */
select option {
    background-color: #ffffff;
    color: #000000;
}


textarea {
    resize: vertical;
    min-height: 120px;
}

/* Form Sections & Table structure */
.form-section {
    margin-bottom: 30px;
}

.form-section-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--blue-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.event-details-table {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.event-table-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.event-table-row:last-child {
    border-bottom: none;
}

.event-table-cell {
    padding: 15px 20px;
    display: flex;
    align-items: center;
}

.label-cell {
    background: rgba(255, 255, 255, 0.03);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 13px;
}

.input-cell {
    background: transparent;
}

.input-cell input, 
.input-cell select {
    width: 100%;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    height: auto !important;
    box-shadow: none !important;
}

.input-cell input:focus, 
.input-cell select:focus {
    color: var(--blue-400);
}

@media (max-width: 767px) {
    .event-table-row {
        grid-template-columns: 1fr;
    }
    
    .label-cell {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 10px;
    }
    
    .input-cell {
        padding-top: 10px;
    }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    padding: 80px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 1;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 200px;
    background: radial-gradient(ellipse at top, rgba(var(--blue-rgb), 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    margin-bottom: 16px;
    display: inline-flex;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-quaternary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-col h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    font-size: 14px;
    color: var(--text-quaternary);
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--blue-400);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 13px;
    color: var(--text-quaternary);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1023px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 36px;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-img-wrapper {
        width: 320px;
        height: 320px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nosotros-grid {
        grid-template-columns: 1fr;
    }

    .nosotros-visual {
        order: -1;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-steps {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 767px) {

    .nav-links,
    .btn-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-visual {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .service-card-flip {
        height: 300px;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================================
   NUESTRO EQUIPO (CAROUSEL)
   ============================================================ */
.equipo {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
    /* Ensure contrast */
}

.carousel-wrapper {
    display: flex;
    /* Keep flex to center content vertically if needed but buttons are hidden */
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 60px;
    position: relative;
    max-width: 100vw;
    /* Full width */
    margin-left: auto;
    margin-right: auto;
    margin-right: auto;
    overflow: hidden;
}

.team-floating-logo {
    position: absolute;
    width: 60px;
    height: 60px;
    z-index: 100;
    pointer-events: none;
    opacity: 0;
    filter: drop-shadow(0 0 10px var(--blue-500));
}

.team-floating-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0 40px;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.carousel-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: marquee 40s linear infinite;
    /* Adjust speed here */
    padding-left: 30px;
    /* Initial offset */
}

/* Pause on hover for better UX */
.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.team-card {
    min-width: 200px;
    /* Ensure cards don't shrink */
    /* ... existing styles ... */
    flex-shrink: 0;
}

/* Hide navigation buttons */
.carousel-btn {
    display: none;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(var(--purple-rgb), 0.3);
    background: rgba(255, 255, 255, 0.05);
    z-index: 10;
    /* Ensure hovered card is on top */
}

.team-img-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img {
    transform: scale(1.1);
}

.team-info {
    padding: 20px;
}

.team-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.team-role {
    font-size: 13px;
    color: var(--blue-400);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--blue-500);
    border-color: var(--blue-500);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(var(--blue-rgb), 0.4);
}

@media (max-width: 768px) {
    .carousel-wrapper {
        gap: 10px;
    }

    .team-card {
        min-width: 220px;
        width: 220px;
    }

    .team-img-wrapper {
        height: 260px;
    }
}

/* ============================================================
   TEAM IMAGE (SINGLE)
   ============================================================ */
.team-image-container {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 24px;
    text-align: center;
}

.team-full-photo {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease;
}

.team-full-photo:hover {
    transform: scale(1.01);
}

/* ============================================================
   TEAM POSTERS (CAROUSEL VARIATION)
   ============================================================ */
.team-poster {
    width: 200px;
    /* Reduced from 300px to 200px (not exactly half but better for text) OR maybe 150px? Let's try 180px */
    min-width: 180px;
    height: 320px;
    /* Reduced from 500px */
    background: transparent;
    border: none;
    padding: 0;
    display: block;
    margin-right: 0;
    /* Gap is handled by flex container */
}

.team-img-poster {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-poster:hover {
    background: transparent;
    transform: translateY(-5px);
    box-shadow: none;
}

.team-poster:hover .team-img-poster {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(var(--purple-rgb), 0.3);
}

@media (max-width: 768px) {

    #team-floating-logo {
        display: none !important;
    }

    .carousel-container {
        mask-image: none !important;
        -webkit-mask-image: none !important;
        overflow: hidden !important;
        width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
        position: relative !important;
        left: 0 !important;
    }

    .carousel-container::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }

    .carousel-track {
        gap: 10px !important;
        animation: marquee 30s linear infinite !important;
        padding-left: 0 !important;
    }

    .team-poster {
        width: 40px;
        min-width: 40px;
        height: 70px;
        scroll-snap-align: center;
    }
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0 40px;
    mask-image: linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%);
}

.carousel-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: marquee 40s linear infinite;
    /* Adjust speed here */
    padding-left: 30px;
    /* Initial offset */
}

/* Pause on hover for better UX */
.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.team-card {
    min-width: 200px;
    /* Ensure cards don't shrink */
    /* ... existing styles ... */
    flex-shrink: 0;
}

/* Hide navigation buttons */
.carousel-btn {
    display: none;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(var(--purple-rgb), 0.3);
    background: rgba(255, 255, 255, 0.05);
    z-index: 10;
    /* Ensure hovered card is on top */
}

.team-img-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img {
    transform: scale(1.1);
}

.team-info {
    padding: 20px;
}

.team-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.team-role {
    font-size: 13px;
    color: var(--blue-400);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--blue-500);
    border-color: var(--blue-500);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(var(--blue-rgb), 0.4);
}

@media (max-width: 768px) {
    .carousel-wrapper {
        gap: 10px;
    }

    .team-card {
        min-width: 40px;
        width: 40px;
    }

    .team-img-wrapper {
        height: 60px;
    }

    .team-info {
        padding: 8px !important;
    }

    .team-name {
        font-size: 11px !important;
    }

    .team-role {
        font-size: 8px !important;
    }
}

/* ============================================================
   TEAM IMAGE (SINGLE)
   ============================================================ */
.team-image-container {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 24px;
    text-align: center;
}

.team-full-photo {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease;
}

.team-full-photo:hover {
    transform: scale(1.01);
}

/* ============================================================
   TEAM POSTERS (CAROUSEL VARIATION)
   ============================================================ */
.team-poster {
    width: 140px;
    min-width: 140px;
    height: 240px;
    /* Reduced from 500px */
    background: transparent;
    border: none;
    padding: 0;
    display: block;
    margin-right: 0;
    /* Gap is handled by flex container */
}

.team-img-poster {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-poster:hover {
    background: transparent;
    transform: translateY(-5px);
    box-shadow: none;
}

.team-poster:hover .team-img-poster {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(var(--purple-rgb), 0.3);
}


.highlights {
    padding: 120px 0;
    line-height: 1.7;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
}

.highlights-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    position: relative;
    transition: z-index 0s;
}

.highlights-item:hover {
    z-index: 50;
}

.highlights-container {
    width: 100%;
    aspect-ratio: 9/16;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow:
        0 0 0 1px rgba(var(--blue-rgb), 0.2),
        0 20px 40px rgba(0, 0, 0, 0.6);
    background: #000;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.highlights-container:hover {
    transform: scale(1.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 0 2px rgba(var(--blue-rgb), 0.6);
}

.highlights-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.9);
    transform: scale(1.15);
    /* Zoom to hide watermarks */
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Inner video hover effect removed to favor container zoom */

.video-play-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: rgba(var(--blue-rgb), 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(var(--blue-rgb), 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    pointer-events: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    z-index: 5;
}

.video-caption-outside {
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 500;
    color: var(--text-tertiary);
    transition: color 0.3s ease;
}

.highlights-item:hover .video-caption-outside {
    color: var(--text-primary);
}

.highlights-container:hover .video-play-hint {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
    background: rgba(var(--blue-rgb), 0.4);
}

@media (max-width: 1023px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .highlights-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   HERO SOCIAL ROW — Instagram & Facebook quick links
   ============================================================ */
.hero-social-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.hero-social-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-quaternary);
}

.hero-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid transparent;
}

/* Instagram — gradiente rosa/naranja/morado */
.hero-social-btn.instagram {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(253, 29, 29, 0.25);
}

.hero-social-btn.instagram:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 28px rgba(253, 29, 29, 0.45);
}

/* Facebook — azul Facebook */
.hero-social-btn.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0a52bc 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(24, 119, 242, 0.25);
}

.hero-social-btn.facebook:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 28px rgba(24, 119, 242, 0.45);
}

@media (max-width: 767px) {
    .hero-social-row {
        justify-content: center;
        margin-top: 16px;
        gap: 10px;
    }

    .hero-social-label {
        font-size: 11px;
        width: 100%;
        text-align: center;
    }

    .hero-social-btn {
        padding: 8px 14px;
        font-size: 12px;
    }
}

/* Botón de WhatsApp en el Navbar */
.whatsapp-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: white;
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.whatsapp-nav:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
    color: white;
}

.whatsapp-nav svg {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

@media (max-width: 768px) {
    .whatsapp-nav {
        padding: 8px;
        order: 1;
        /* Mover al final en el flujo flex si es necesario */
    }

    .whatsapp-nav span {
        display: none;
        /* Solo icono en móvil */
    }

    .btn-nav {
        display: none;
        /* Ocultamos el otro botón en el nav de móvil si estorba */
    }
}

/* ============================================================
   GLOBAL WANDERING LOGO
   ============================================================ */
.global-wandering-logo {
    position: fixed;
    width: 60px;
    height: 60px;
    top: 0;
    left: 0;
    z-index: 100000;
    /* Super high but check against toast/whatsapp */
    pointer-events: none;
    /* Don't block clicks */
    will-change: transform;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 10px rgba(var(--blue-rgb), 0.5));
    opacity: 0;
    /* Start hidden until JS takes over */
    transition: opacity 1s ease;
}

.global-wandering-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ============================================================
   WELCOME AUDIO NOTIFICATION
   ============================================================ */
.welcome-notification {
    position: fixed;
    bottom: 100px;
    left: 30px;
    z-index: 10000;
    transform: translateX(-150%);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.welcome-notification.show {
    transform: translateX(0);
}

.welcome-content {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    min-width: 300px;
}

.welcome-emoji {
    font-size: 24px;
    background: rgba(255, 71, 126, 0.2);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.welcome-text strong {
    display: block;
    color: var(--text-primary);
    font-size: 16px;
}

.welcome-text p {
    color: var(--text-tertiary);
    font-size: 13px;
    margin: 0;
}

.welcome-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.welcome-btn {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 8px 15px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

.welcome-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 71, 126, 0.4);
}

.welcome-close {
    background: transparent;
    border: none;
    color: var(--text-tertiary);
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
}

.welcome-close:hover {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .welcome-notification {
        left: 10px;
        right: 10px;
        bottom: 85px;
        transform: translateY(200%);
    }

    .welcome-notification.show {
        transform: translateY(0);
        transform: translateX(0);
    }

    .welcome-content {
        min-width: auto;
    }
}

/* ============================================================
   MOBILE OPTIMIZATIONS (REQUESTED REFINEMENTS)
   ============================================================ */
@media (max-width: 767px) {

    .navbar {
        padding: 8px 0 !important;
    }

    /* Cambio 1: Logo izquierda, Menú derecha (Sin WhatsApp ni botón en barra superior) */
    .nav-top-row {
        flex-direction: row !important;
    }

    .nav-logo {
        flex-direction: row !important;
    }

    .typewriter-text {
        font-size: 16px !important;
        margin-left: 8px !important;
        margin-right: 0 !important;
    }

    .logo-image {
        height: 45px !important;
    }

    .nav-actions {
        gap: 0 !important;
    }

    .whatsapp-nav,
    .btn-nav {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
        order: 1 !important;
    }

    /* Cambio 2: Botones del menú a lo ancho de la página */
    .mobile-menu ul {
        width: 100% !important;
        padding: 0 !important;
    }

    .mobile-nav-link {
        width: 100% !important;
        display: block !important;
        text-align: center !important;
        padding: 15px 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    .mobile-cta {
        width: 100% !important;
        margin-top: 15px !important;
        justify-content: center !important;
    }

    /* Cambio 1, 3 y General: Aclara gradientes para mejor contraste sobre fondo oscuro */
    .gradient-text {
        background: linear-gradient(135deg, #93C5FD 0%, #D8B4FE 100%) !important;
        -webkit-background-clip: text !important;
        background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
    }

    /* Cambio 2: Aclara "Presentes en todo tipo de eventos" */
    .proof-label {
        color: #FFFFFF !important;
        -webkit-text-fill-color: #FFFFFF !important;
        background: none !important;
        opacity: 1 !important;
        letter-spacing: 0.1em !important;
        font-size: 13px !important;
    }

    /* Cambio 4: Números que hablan solos - 4 casillas visibles a la vez (2x2) */
    .experience-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        margin-bottom: 40px !important;
    }

    .exp-card {
        padding: 20px 10px !important;
    }

    .exp-icon {
        font-size: 24px !important;
        margin-bottom: 8px !important;
    }

    .exp-number {
        font-size: 32px !important;
    }

    .exp-suffix {
        font-size: 20px !important;
    }

    .exp-label {
        font-size: 11px !important;
        line-height: 1.2 !important;
    }

    .exp-desc {
        display: none !important;
        /* Ocultamos para que quepan bien */
    }

    /* Cambio 5: Nuestra pasión en movimiento - 2 columnas de videos (3 filas) */
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .video-caption-outside {
        font-size: 10px !important;
        line-height: 1.2 !important;
        margin-top: 5px !important;
    }

    /* Cambio 6: Reseñas - Carrusel Infinito una sola línea */
    .testimonials-carousel {
        overflow-x: auto !important;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        padding: 40px 0;
        position: relative;
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
        mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .testimonials-carousel::-webkit-scrollbar {
        display: none;
    }

    .testimonials-grid {
        display: flex !important;
        grid-template-columns: none !important;
        width: max-content !important;
        gap: 15px !important;
        animation: scrollTestimonialsMobile 20s linear infinite !important;
        will-change: transform;
        padding-left: 0;
    }

    @keyframes scrollTestimonialsMobile {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-175px * 6)); }
    }

    .testimonial-card {
        scroll-snap-align: center;
    }

    /* Pause state when card is expanded */
    .testimonials-grid.is-paused {
        animation-play-state: paused !important;
    }

    .testimonial-card {
        width: 160px !important;
        padding: 15px 10px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        min-height: auto !important;
        flex-shrink: 0 !important;
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .testimonial-card.is-expanded {
        width: 280px !important;
        z-index: 100;
        background: rgba(var(--blue-rgb), 0.15) !important;
        border-color: rgba(var(--blue-rgb), 0.5) !important;
        box-shadow: 0 0 30px rgba(var(--blue-rgb), 0.3) !important;
    }

    .testimonial-author {
        order: -2 !important;
        flex-direction: column !important;
        margin-bottom: 5px !important;
        margin-top: 0 !important;
        width: 100% !important;
    }

    .author-avatar {
        margin-right: 0 !important;
        margin-bottom: 4px !important;
        width: 32px !important;
        height: 32px !important;
        flex-shrink: 0 !important;
    }

    .author-info strong {
        font-size: 8px !important;
        display: block !important;
        line-height: 1.1 !important;
    }

    .author-info span {
        font-size: 6px !important;
        opacity: 0.7 !important;
    }

    .testimonial-stars {
        order: -1 !important;
        font-size: 7px !important;
        margin-bottom: 4px !important;
    }

    .testimonial-text {
        font-size: 8px !important;
        line-height: 1.2 !important;
        margin-bottom: 0 !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .testimonial-card.is-expanded .testimonial-text {
        -webkit-line-clamp: unset !important;
        line-clamp: unset !important;
        display: block !important;
        font-size: 10px !important;
    }

    .quote-mark,
    .read-more-btn {
        display: none !important;
    }

    @keyframes testimonials-marquee {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    /* CAMBIO 1: Formulario Blanco */
    .contact-form {
        background: #FFFFFF !important;
        color: #111111 !important;
        border: none !important;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
    }

    .contact-form label,
    .contact-form h3 {
        color: #111111 !important;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        background: #F4F4F5 !important;
        border: 1px solid #E4E4E7 !important;
        color: #111111 !important;
    }

    /* CAMBIO 2: Títulos con Silueta Turquesa */
    .section-title,
    .section-title .gradient-text {
        color: #FFFFFF !important;
        -webkit-text-fill-color: #FFFFFF !important;
        background: none !important;
        text-shadow: 0 0 8px rgba(0, 242, 255, 0.8), 0 0 20px rgba(0, 242, 255, 0.4) !important;
    }

    /* CAMBIO 3: Barras por Ocasión - Diseño de Tocar para info */
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .service-card-flip {
        height: 180px !important;
        /* Más compacto */
        perspective: 1000px;
    }

    /* Solo el texto principal en negrita en el frente */
    .service-title-front {
        font-size: 13px !important;
        font-weight: 800 !important;
        text-align: center !important;
        width: 100% !important;
        line-height: 1.2 !important;
    }

    .flip-hint {
        display: none !important;
        /* Ocultamos el hint */
    }

    .service-overlay {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 10px !important;
    }

    /* Lógica de Flipped para JS */
    .service-card-flip.flipped .service-card-back {
        transform: translateY(0) !important;
        opacity: 1 !important;
    }

    .service-card-flip.flipped .service-image {
        filter: brightness(0.2) blur(4px) !important;
    }

    .service-card-back {
        padding: 15px !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        background: rgba(0, 0, 0, 0.9) !important;
    }

    .service-title-back {
        font-size: 14px !important;
        margin-bottom: 8px !important;
    }

    .service-description {
        font-size: 10px !important;
        line-height: 1.3 !important;
        margin-bottom: 10px !important;
    }

    .back-icon {
        font-size: 24px !important;
        margin-bottom: 5px !important;
    }

    .feature-tag {
        font-size: 8px !important;
        padding: 2px 6px !important;
    }

    /* CAMBIO 4: Números turquesa con borde grueso */
    .exp-number {
        background: linear-gradient(135deg, #00F2FF 0%, #7000FF 100%) !important;
        -webkit-background-clip: text !important;
        background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        font-size: 28px !important;
    }

    .exp-card {
        border: 3px solid #00F2FF !important;
        background: rgba(0, 242, 255, 0.05) !important;
    }

    /* CAMBIO 5: Cómo funciona - 2 por línea */
    .process-steps {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
        flex-direction: row !important;
    }

    .process-arrow {
        display: none !important;
        /* Quitar flechas para que quepan 2x2 */
    }

    /* .process-indicator {
        display: none !important;
    } */

    .process-step {
        width: 100% !important;
        margin: 0 !important;
        padding: 15px 10px !important;
    }

    /* CAMBIO 6: Reseñas comprimidas (Clases para JS) */
    .testimonial-text.collapsed {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .read-more-btn {
        display: block;
        font-size: 10px;
        color: #00F2FF;
        margin-top: 5px;
        cursor: pointer;
        text-decoration: underline;
    }

    /* CAMBIO 7: Números del Inicio (Hero) en Turquesa */
    .hero-stats .stat-number,
    .hero-stats .stat-suffix {
        background: none !important;
        color: #00F2FF !important;
        -webkit-text-fill-color: #00F2FF !important;
        text-shadow: 0 0 5px rgba(0, 242, 255, 0.4);
    }

    /* CAMBIO 8: Título de Bienvenida en Blanco (Mobile) */
    .hero-title,
    .hero-title .gradient-text {
        color: #FFFFFF !important;
        -webkit-text-fill-color: #FFFFFF !important;
        background: none !important;
        text-shadow: none !important;
    }

    /* Cambio 9: Contacto en 2 filas de 2 */
    .contact-info {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .contact-item {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 8px !important;
    }

    .contact-item div {
        text-align: center !important;
    }

    /* Cambio 10: Footer en una línea */
    .footer-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 15px !important;
        text-align: left !important;
    }

    .footer-brand {
        grid-column: span 3 !important;
        text-align: center !important;
        margin-bottom: 20px !important;
    }

    .footer-col h4 {
        font-size: 11px !important;
        margin-bottom: 12px !important;
        white-space: nowrap;
    }

    .footer-col ul {
        gap: 6px !important;
    }



    /* Cambio 12: Galería de Éxitos - 4 por línea */
    .masonry-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 8px !important;
    }

    .masonry-item {
        border-radius: 6px !important;
    }
}


/* Partículas de Fuegos Artificiales */
.firework-particle {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    will-change: transform, opacity;
}

/* Botón Leer Más (Testimonios Mobile) */
.read-more-btn {
    display: inline-block;
    color: var(--blue-400);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    margin-left: 5px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.testimonial-text.collapsed {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================================
   METODOLOGÍA (TIMELINE)
   ============================================================ */
.metodologia {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.timeline-line {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-main);
    opacity: 0.3;
    z-index: 1;
}

.timeline-item {
    position: relative;
    z-index: 2;
    text-align: center;
}

.timeline-dot {
    width: 40px;
    height: 40px;
    background: var(--gradient-main);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 0 20px rgba(var(--blue-rgb), 0.4);
    border: 4px solid var(--bg-primary);
}

.timeline-content {
    padding: 30px 20px;
    height: 100%;
    transition: all 0.4s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-10px);
    border-color: rgba(var(--blue-rgb), 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.timeline-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.timeline-content h4 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 18px;
}

.timeline-content p {
    font-size: 14px;
    color: var(--text-tertiary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .timeline-line {
        display: none;
    }

    .timeline-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ============================================================
   MASONRY GALLERY
   ============================================================ */
.gallery-section {
    padding: 100px 0;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-bottom: 50px;
}

.masonry-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    aspect-ratio: 9 / 16;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.masonry-item:hover img {
    transform: scale(1.1) rotate(2deg);
}

@media (max-width: 1200px) {
    .masonry-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .masonry-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-actions {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

#loadMoreBtn {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
}

#loadMoreBtn.hidden {
    display: none;
}

/* ============================================================
   BLOG PREVIEW
   ============================================================ */
/* ============================================================
   BLOG PREVIEW (EDITORIAL REDESIGN)
   ============================================================ */
.blog-preview {
    padding: 120px 0;
    background: var(--bg-primary);
}

.trend-editorial {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-top: 50px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 0 !important; /* Square editorial look */
    padding: 0 !important;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.blog-card:hover {
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: rgba(var(--blue-rgb), 0.3) !important;
    transform: translateY(-10px) !important;
}

.blog-img {
    height: 180px !important;
    overflow: hidden;
    position: relative;
}

.blog-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.8));
    opacity: 0.6;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.blog-card:hover .blog-img img {
    transform: scale(1.08) !important;
}

.blog-info {
    padding: 20px 15px !important;
    text-align: left !important;
}

.blog-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--blue-400);
    margin-bottom: 12px;
}

.blog-info h3 {
    font-family: 'Playfair Display', serif !important;
    font-size: 16px !important;
    line-height: 1.3 !important;
    color: #fff !important;
    margin-bottom: 8px !important;
}

.blog-info p {
    font-size: 12px !important;
    color: var(--text-tertiary) !important;
    line-height: 1.4 !important;
    margin-bottom: 16px !important;
}

.blog-more {
    font-size: 10px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease !important;
}

.blog-more:hover {
    color: var(--blue-400) !important;
    gap: 12px;
}

@media (max-width: 1024px) {
    .trend-editorial {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    /* Contenedor principal para permitir desborde visual sin scrollbar horizontal molesto */
    .blog-preview {
        overflow-x: hidden;
    }

    .trend-editorial {
        display: flex !important;
        grid-template-columns: none !important;
        width: max-content !important;
        gap: 20px !important;
        /* Animación deslizando de Izquierda a Derecha */
        animation: scrollTipsMobile 25s linear infinite !important;
        will-change: transform;
        padding-left: 0;
    }
    .trend-editorial .blog-card {
        width: 260px !important;
        flex-shrink: 0;
    }
    .blog-img {
        height: 180px !important;
    }
    .blog-info {
        padding: 20px 15px !important;
    }
    .blog-info h3 {
        font-size: 16px !important;
        line-height: 1.3 !important;
        margin-bottom: 8px !important;
    }
    .blog-info p {
        display: block !important;
        font-size: 12px !important;
    }
    .blog-more {
        font-size: 10px !important;
        gap: 6px !important;
    }

    @keyframes scrollTipsMobile {
        0% { transform: translateX(calc(-280px * 5)); }
        100% { transform: translateX(100vw); }
    }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
    padding: 100px 0;
}

.faq-accordion {
    max-width: 1000px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.faq-item {
    transition: all 0.3s ease;
}

.faq-trigger {
    width: 100%;
    padding: 20px 30px;
    background: transparent;
    border: none;
    color: #fff;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-trigger::after {
    content: '+';
    font-size: 24px;
    color: var(--blue-400);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-trigger::after {
    content: '-';
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-content {
    max-height: 300px;
    padding: 0 30px 25px;
}

.faq-content p {
    color: var(--text-tertiary);
    line-height: 1.7;
    font-size: 15px;
}

@media (max-width: 768px) {
    .faq-accordion {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    /* Botones con gradiente turquesa → negro */
    .faq-trigger {
        padding: 14px 12px;
        font-size: 12px;
        line-height: 1.3;
        align-items: flex-start;
        gap: 8px;
        background: linear-gradient(135deg, #00c8c8 0%, #006868 45%, #001a1a 100%) !important;
        color: #ffffff !important;
        border-radius: 10px;
        border: 1px solid rgba(0, 242, 255, 0.25) !important;
        box-shadow: 0 4px 15px rgba(0, 200, 200, 0.15);
        transition: box-shadow 0.3s ease, transform 0.2s ease;
    }

    .faq-trigger:active {
        transform: scale(0.98);
    }

    .faq-item.active .faq-trigger {
        background: linear-gradient(135deg, #00f2ff 0%, #007070 40%, #000d0d 100%) !important;
        box-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
        border-color: rgba(0, 242, 255, 0.5) !important;
    }

    .faq-trigger::after {
        font-size: 18px;
        flex-shrink: 0;
        color: #fff !important;
    }

    /* Respuesta expandida ocupa las 2 columnas (más horizontal) */
    .faq-item.active {
        grid-column: 1 / -1;
    }

    .faq-item.active .faq-content {
        padding: 12px 16px 14px;
        max-height: 160px; /* Limitar altura para que no sea tan vertical */
        background: rgba(0, 40, 40, 0.6);
        border-radius: 0 0 10px 10px;
        border-top: 1px solid rgba(0, 242, 255, 0.15);
    }

    .faq-content p {
        font-size: 12px;
        line-height: 1.5;
        color: #c8f8f8 !important;
    }
}

/* ============================================================
   NUESTROS SERVICIOS (LO QUE OFRECEMOS)
   ============================================================ */
.main-services-section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.main-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.ms-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.ms-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 242, 255, 0.4);
    box-shadow: 0 15px 30px rgba(0, 242, 255, 0.1);
}

.ms-img {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.ms-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 50%);
    pointer-events: none;
}

.ms-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ms-card:hover .ms-img img {
    transform: scale(1.1);
}

.ms-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px 20px;
    text-align: center;
    z-index: 2;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.8) 40%, transparent 100%);
    transition: all 0.5s ease;
}

.ms-card:hover .ms-info {
    padding-top: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.9) 70%, transparent 100%);
}

.ms-info h3 {
    margin: 0;
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    transition: all 0.3s ease;
}

.ms-desc {
    font-size: 13px;
    color: #e2e8f0;
    margin-top: 10px;
    line-height: 1.5;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 39px; /* Aprox 2 líneas */
    opacity: 0.9;
    transition: max-height 0.4s ease, opacity 0.4s ease;
}

.ms-card:hover .ms-desc {
    -webkit-line-clamp: unset;
    line-clamp: unset;
    max-height: 250px;
    opacity: 1;
}

@media (max-width: 1024px) {
    .main-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-services-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }
    .main-services-section {
        padding: 60px 0;
    }
    .ms-img {
        height: 200px;
    }
    .ms-info h3 {
        font-size: 16px;
    }
}

/* ============================================================
   BARRAS PARA CADA OCASIÓN — MOBILE FULL-IMAGE TAP REVEAL
   ============================================================ */
@media (max-width: 767px) {
    /* Las tarjetas en la sección #servicios (Barras para Cada Ocasión) */
    #servicios .ms-card {
        position: relative;
        height: 220px !important;
        cursor: pointer;
        overflow: hidden;
        padding: 0 !important; /* Overriding glass-card padding */
        border-radius: 16px !important;
    }

    /* La imagen llena toda la tarjeta */
    #servicios .ms-img {
        height: 100% !important;
        width: 100%;
        position: absolute !important;
        top: 0;
        left: 0;
    }

    #servicios .ms-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    /* Info superpuesta sobre la imagen */
    #servicios .ms-info {
        position: absolute !important;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 3;
        background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.6) 40%, transparent 100%) !important;
        padding: 16px 14px !important;
        transition: background 0.4s ease;
    }

    /* Solo título visible por defecto */
    #servicios .ms-info h3 {
        font-size: 14px !important;
        font-weight: 800 !important;
        text-shadow: 0 1px 4px rgba(0,0,0,0.9);
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Descripción oculta por defecto */
    #servicios .ms-desc {
        max-height: 0 !important;
        opacity: 0 !important;
        overflow: hidden !important;
        margin-top: 0 !important;
        -webkit-line-clamp: unset !important;
        line-clamp: unset !important;
        display: block !important;
        font-size: 11px !important;
        line-height: 1.4 !important;
        color: #e2e8f0 !important;
        transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease !important;
    }

    /* Estado expandido al tocar */
    #servicios .ms-card.ms-card-expanded .ms-desc {
        max-height: 150px !important;
        opacity: 1 !important;
        margin-top: 8px !important;
    }

    #servicios .ms-card.ms-card-expanded .ms-info {
        background: linear-gradient(to top, rgba(0,0,0,0.97) 0%, rgba(0,0,0,0.88) 60%, rgba(0,0,0,0.3) 100%) !important;
        padding-bottom: 18px !important;
    }

    #servicios .ms-card.ms-card-expanded .ms-img img {
        transform: scale(1.05);
        filter: brightness(0.75);
    }

    /* Indicador visual de "toca para ver más" */
    #servicios .ms-card::after {
        content: '👆 Toca para más info';
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 9px;
        background: rgba(0,0,0,0.6);
        color: rgba(255,255,255,0.8);
        padding: 3px 8px;
        border-radius: 20px;
        letter-spacing: 0.05em;
        z-index: 4;
        transition: opacity 0.3s ease;
    }

    #servicios .ms-card.ms-card-expanded::after {
        opacity: 0;
    }
}


/* ============================================================
   MOBILIARIO SLIDESHOW
   ============================================================ */
.ms-slideshow {
    position: relative;
    overflow: hidden;
}

.ms-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    display: block;
}

.ms-slide.active {
    opacity: 1;
    position: relative;
    z-index: 1;
}

.ms-slide:not(.active) {
    position: absolute;
    z-index: 0;
}

/* ============================================================
   NOSOTROS — OCULTO POR DEFECTO, SE MUESTRA AL HACER CLIC EN "NOSOTROS"
   ============================================================ */
.nosotros-hidden {
    display: none !important;
    opacity: 0;
    transform: translateY(30px);
}

.nosotros-visible {
    display: block !important;
    animation: nosotros-reveal 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes nosotros-reveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   BOTÓN FLOTANTE WHATSAPP — Mobile sticky
   ============================================================ */
.whatsapp-float {
    display: none; /* Oculto en desktop por defecto */
}

@media (max-width: 767px) {
    .whatsapp-float {
        display: flex;
        align-items: center;
        gap: 10px;
        position: fixed;
        bottom: 22px;
        right: 18px;
        z-index: 9999;
        background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
        color: #fff;
        border-radius: 50px;
        padding: 13px 20px;
        text-decoration: none;
        font-weight: 700;
        font-size: 14px;
        box-shadow:
            0 4px 20px rgba(37, 211, 102, 0.45),
            0 0 0 3px rgba(37, 211, 102, 0.2);
        animation: wa-bounce-in 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) both,
                   wa-pulse 3s ease-in-out 1s infinite;
        -webkit-tap-highlight-color: transparent;
    }

    .whatsapp-float:active {
        transform: scale(0.93);
    }

    .whatsapp-float-label {
        font-size: 14px;
        font-weight: 700;
        white-space: nowrap;
    }

    @keyframes wa-bounce-in {
        0%   { opacity: 0; transform: scale(0.4) translateY(40px); }
        70%  { transform: scale(1.08) translateY(-4px); }
        100% { opacity: 1; transform: scale(1) translateY(0); }
    }

    @keyframes wa-pulse {
        0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 3px rgba(37,211,102,0.2); }
        50%       { box-shadow: 0 6px 30px rgba(37,211,102,0.65), 0 0 0 6px rgba(37,211,102,0.1); }
    }
}

/* ============================================================
   THANOS SNAP LOGO — Mobile Hero Effect (FIXED OVERLAY)
   ============================================================ */
.thanos-logo-wrapper {
    display: none;
}

@media (max-width: 767px) {
    .thanos-logo-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 500;
        pointer-events: none;
        background: rgba(0, 0, 0, 0);
        transition: opacity 0.6s ease;
    }

    .thanos-logo-wrapper.thanos-hidden {
        opacity: 0;
    }

    #thanosCanvas {
        width: 300px;
        height: 300px;
        display: block;
        filter: drop-shadow(0 0 40px rgba(59, 130, 246, 0.8))
                drop-shadow(0 0 80px rgba(168, 85, 247, 0.5));
    }

    .thanos-snap-hint {
        margin-top: 16px;
        font-size: 11px;
        font-weight: 800;
        color: rgba(255, 255, 255, 0.55);
        letter-spacing: 5px;
        text-transform: uppercase;
        font-family: 'Plus Jakarta Sans', sans-serif;
        animation: thanos-hint-pulse 3s ease-in-out infinite;
    }

    @keyframes thanos-hint-pulse {
        0%, 100% { opacity: 0.3; transform: scaleX(0.95); }
        50% { opacity: 0.9; transform: scaleX(1); }
    }
}

/* ─── ✨ LOGO 3D INTERACTIVO (Hero) ─────────────────────────────────── */
.hero-3d-logo-container {
    margin: 20px 0 30px;
    perspective: 1000px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 5;
    width: 100%;
}

.logo-3d-wrapper {
    position: relative;
    width: 130px;
    height: 130px;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    /* Variables para el tilt (se actualizan vía JS) */
    --rx: 0deg;
    --ry: 0deg;
    transform: rotateX(var(--rx)) rotateY(var(--ry));
}

/* Estado inicial de intro */
.hero-3d-logo-container.intro-active .logo-3d-wrapper {
    animation: logo-entrance 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards,
               float-3d 6s ease-in-out infinite 1.2s;
    opacity: 0;
}

.logo-3d-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.6));
    transform: translateZ(60px); /* El logo sobresale */
    position: relative;
    z-index: 2;
}

.logo-3d-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(-30px);
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(var(--blue-rgb), 0.65) 0%, transparent 75%);
    filter: blur(30px);
    border-radius: 50%;
    animation: glow-pulse 3s infinite alternate;
    pointer-events: none;
}

/* 🎤 TEXT REVEAL ANIMATIONS */
.hero-title span[class^="hero-t"] {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: text-reveal-up 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.hero-t1 { animation-delay: 0.6s !important; }
.hero-t2 { animation-delay: 1.2s !important; }
.hero-t3 { animation-delay: 1.8s !important; }

.hero-dot {
    opacity: 0;
    color: var(--blue-400);
    display: inline-block;
    transform: scale(0);
    animation: dot-pop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards 2.4s;
}

@keyframes logo-entrance {
    from { opacity: 0; transform: translateY(-50px) rotateX(-30deg) scale(0.8); }
    to { opacity: 1; transform: translateY(0) rotateX(0) scale(1); }
}

@keyframes text-reveal-up {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes dot-pop {
    to { opacity: 1; transform: scale(1); }
}

@keyframes float-3d {
    0%, 100% { transform: rotateX(var(--rx)) rotateY(var(--ry)) translateY(0px); }
    50% { transform: rotateX(var(--rx)) rotateY(var(--ry)) translateY(-20px); }
}

@keyframes glow-pulse {
    from { opacity: 0.4; transform: translate(-50%, -50%) translateZ(-30px) scale(0.9); }
    to { opacity: 0.9; transform: translate(-50%, -50%) translateZ(-30px) scale(1.15); }
}

@media (max-width: 767px) {
    .hero-3d-logo-container {
        margin: 10px 0 20px;
    }
    .logo-3d-wrapper {
        width: 100px;
        height: 100px;
    }
}
