/* -------------------------------------------------------------
   SYSTEM VARIABLES & PALETTE
------------------------------------------------------------- */
:root {
    --primary: #0052FF;
    --primary-glow: rgba(0, 82, 255, 0.4);
    --secondary: #7B2CBF;
    --secondary-glow: rgba(123, 44, 191, 0.4);
    --accent: #FF007A;
    --accent-glow: rgba(255, 0, 122, 0.4);
    
    --bg-dark: #080c14;
    --bg-card: rgba(15, 23, 42, 0.6);
    --bg-card-hover: rgba(30, 41, 59, 0.7);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-color-hover: rgba(255, 255, 255, 0.18);
    
    --text-primary: #F8FAFC;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    
    --font-heading: 'Outfit', 'Segoe UI', sans-serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    
    --shadow-premium: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 30px rgba(0, 82, 255, 0.15);
}

/* -------------------------------------------------------------
   BASE RESET & COMMON STYLES
------------------------------------------------------------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.preloader-active,
body.no-scroll {
    overflow: hidden !important;
}

/* Scrollbar personalizado */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 5px;
    border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
    background: #334155;
}

/* -------------------------------------------------------------
   PRELOADER
------------------------------------------------------------- */
.preloader {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 1;
    transition: opacity 700ms ease-in-out, visibility 700ms ease-in-out;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.preloader-logo {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: preloader-pulse 2s infinite ease-in-out;
}

.preloader-logo span {
    color: var(--accent);
    -webkit-text-fill-color: var(--accent);
}

.preloader-bar-wrapper {
    width: 180px;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.preloader-bar {
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 10px;
    position: absolute;
    left: -40%;
    animation: preloader-loading 1.5s infinite ease-in-out;
}

@keyframes preloader-pulse {
    0%, 100% { transform: scale(0.98); opacity: 0.85; }
    50% { transform: scale(1.03); opacity: 1; }
}

@keyframes preloader-loading {
    0% { left: -40%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* -------------------------------------------------------------
   TYPOGRAPHY UTILITIES
------------------------------------------------------------- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

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

.gradient-text {
    background: linear-gradient(135deg, #0052FF 0%, #7B2CBF 50%, #FF007A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* -------------------------------------------------------------
   SECTIONS & LAYOUT CONTAINERS
------------------------------------------------------------- */
section {
    padding: 100px 8%;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-header .subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 15px;
    background: rgba(255, 0, 122, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 0, 122, 0.2);
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* -------------------------------------------------------------
   HEADER / NAVBAR
------------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 8%;
    transition: var(--transition-normal);
    background: transparent;
}

.navbar.scrolled {
    padding: 15px 8%;
    background: rgba(8, 12, 20, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 82, 255, 0.4);
}

.logo span span {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 5px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: var(--transition-normal);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.btn-nav-cta {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white !important;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 82, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 82, 255, 0.5);
}

.btn-nav-cta::after {
    display: none;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    width: 32px;
    height: 32px;
    padding: 0;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.burger-icon {
    display: block;
    fill: none;
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.burger-icon .line {
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

/* Transform matching isOpen state (active class) */
.mobile-toggle.active .burger-icon .line.top {
    transform: translateY(25px) rotate(45deg);
}

.mobile-toggle.active .burger-icon .line.middle {
    opacity: 0;
}

.mobile-toggle.active .burger-icon .line.bottom {
    transform: translateY(-25px) rotate(-45deg);
}

/* -------------------------------------------------------------
   HERO SECTION
------------------------------------------------------------- */
.hero-full {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay-dark {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(8, 12, 20, 0.95), rgba(8, 12, 20, 0.85), rgba(123, 44, 191, 0.3));
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 0;
}

.hero-neon {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.neon-top-left {
    top: 2.5rem;
    left: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: rgba(0, 82, 255, 0.25);
    filter: blur(150px);
}

.neon-bottom-right {
    bottom: 2.5rem;
    right: 2.5rem;
    width: 31.25rem;
    height: 31.25rem;
    background: rgba(255, 0, 122, 0.15);
    filter: blur(180px);
}

.hero-center-content {
    max-width: 64rem;
    margin: 0 auto;
    padding: 8rem 1.5rem;
    text-align: center;
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-badge-top {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--primary);
    border: 1px solid rgba(0, 82, 255, 0.4);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    box-shadow: 0 0 15px rgba(0, 82, 255, 0.2);
}

.hero-main-title {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1;
    color: #ffffff;
    max-width: 56rem;
    filter: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08));
}

@media (min-width: 640px) {
    .hero-main-title { font-size: 3.75rem; }
}
@media (min-width: 1024px) {
    .hero-main-title { font-size: 4.5rem; }
}

.text-gradient-pulse {
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(to right, var(--primary), var(--secondary), var(--accent));
    animation: pulse-slow 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-slow {
    0%, 100% { opacity: 1; }
    50% { opacity: .7; }
}

.hero-desc-text {
    font-size: 1.125rem;
    color: #cbd5e1;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.625;
    filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06));
}

@media (min-width: 640px) {
    .hero-desc-text { font-size: 1.25rem; }
}

.hero-desc-text strong {
    color: #ffffff;
    font-weight: 600;
}

.hero-action-box {
    padding-top: 1.5rem;
}

.btn-hero-exclusive {
    display: inline-block;
    background: linear-gradient(to right, var(--accent), var(--secondary));
    color: #ffffff;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 1.25rem 2.5rem;
    border-radius: 9999px;
    box-shadow: 0 0 40px rgba(255, 0, 122, 0.4);
    transition: all 300ms ease-out;
}

@media (min-width: 640px) {
    .btn-hero-exclusive { font-size: 1.25rem; }
}

.btn-hero-exclusive:hover {
    box-shadow: 0 0 50px rgba(255, 0, 122, 0.7);
    transform: translateY(-0.25rem) scale(1.05);
    color: #ffffff;
}



/* -------------------------------------------------------------
   STATS SECTION
------------------------------------------------------------- */
.stats {
    background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.4), transparent);
    padding: 60px 8%;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-glow);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* -------------------------------------------------------------
   SERVICES SECTION
------------------------------------------------------------- */
.services {
    background: radial-gradient(circle at center, rgba(123, 44, 191, 0.05) 0%, transparent 70%);
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
}


/* ─────────────────────────────────────────────────────────────────
   TARJETAS DE SERVICIOS — GLASSMORPHISM  (Traducción fiel del JSX)
   Clases: svc-card · svc-corner-glow · svc-icon · svc-title · svc-desc
───────────────────────────────────────────────────────────────── */

/* Base de la tarjeta — bg-white/[0.02] backdrop-blur-xl rounded-2xl
   border border-white/10 · shadow · hover:bg-white/[0.04]
   transition-all duration-300 · hover:-translate-y-2 · overflow-hidden */
.svc-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 1rem;              /* rounded-2xl */
    border: 1px solid rgba(255, 255, 255, 0.10);
    padding: 2rem;                    /* p-8 */
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.30);
    overflow: hidden;
    transition: border-color 300ms ease,
                background  300ms ease,
                transform   300ms ease,
                box-shadow  300ms ease;
}

.svc-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-8px);     /* hover:-translate-y-2 */
    box-shadow: 0 25px 45px -8px rgba(0, 0, 0, 0.45);
}

/* Variantes de borde en hover por color de marca */
.svc-card--pink:hover  { border-color: rgba(255, 0, 122, 0.50); }
.svc-card--blue:hover  { border-color: rgba(0, 82, 255, 0.50);  }
.svc-card--purple:hover{ border-color: rgba(123, 44, 191, 0.50);}

/* ── Orbe de destello de esquina ──
   absolute -right-10 -top-10 · w-24 h-24 · rounded-full · blur-xl */
.svc-corner-glow {
    position: absolute;
    top: -2.5rem;    /* -top-10 */
    right: -2.5rem;  /* -right-10 */
    width: 6rem;     /* w-24 */
    height: 6rem;    /* h-24 */
    border-radius: 50%;
    filter: blur(28px);
    pointer-events: none;
    transition: background 300ms ease;
    z-index: 0;
}

/* Color del orbe base y en hover (group-hover intensifica) */
.svc-glow--pink   { background: rgba(255, 0, 122, 0.10); }
.svc-glow--blue   { background: rgba(0, 82, 255,  0.10); }
.svc-glow--purple { background: rgba(123, 44, 191, 0.10); }

.svc-card--pink:hover  .svc-glow--pink   { background: rgba(255, 0, 122, 0.22); }
.svc-card--blue:hover  .svc-glow--blue   { background: rgba(0, 82, 255,  0.22); }
.svc-card--purple:hover .svc-glow--purple{ background: rgba(123, 44, 191, 0.22); }

/* ── Caja del Ícono ──
   w-12 h-12 rounded-xl · flex items-center justify-center
   font-bold text-xl mb-6 · group-hover:scale-110 transition-transform */
.svc-icon {
    position: relative;
    z-index: 10;
    width: 3rem;        /* w-12 */
    height: 3rem;       /* h-12 */
    border-radius: 0.75rem;  /* rounded-xl */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1.5rem;   /* mb-6 */
    transition: transform 300ms ease;
    line-height: 1;
}

.svc-card:hover .svc-icon {
    transform: scale(1.10);  /* group-hover:scale-110 */
}

/* Fondo del ícono por variante */
.svc-icon--pink   { background: rgba(255, 0, 122, 0.10); }
.svc-icon--blue   { background: rgba(0, 82, 255,  0.10); }
.svc-icon--purple { background: rgba(123, 44, 191, 0.10); }

/* ── Título de la Tarjeta ──
   text-xl font-bold mb-3 · group-hover:text-brand transition-colors */
.svc-title {
    position: relative;
    z-index: 10;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    transition: color 300ms ease;
}

/* Color del título en hover por variante */
.svc-card--pink:hover   .svc-title--pink   { color: var(--accent);    }
.svc-card--blue:hover   .svc-title--blue   { color: var(--primary);   }
.svc-card--purple:hover .svc-title--purple { color: var(--secondary); }

/* ── Descripción ──
   text-slate-400 text-sm leading-relaxed */
.svc-desc {
    position: relative;
    z-index: 10;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}



.svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--x, 0px) var(--y, 0px), rgba(255, 255, 255, 0.06), transparent 40%);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

/* -------------------------------------------------------------
   PROCESS SECTION
------------------------------------------------------------- */
.process {
    background: radial-gradient(circle at bottom, rgba(0, 82, 255, 0.05) 0%, transparent 60%);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent), transparent);
    z-index: 1;
}

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

.step-number {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #0d1527;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 25px;
    box-shadow: var(--shadow-premium);
    position: relative;
    transition: var(--transition-normal);
}

.process-step:nth-child(1) .step-number { border-color: var(--primary); box-shadow: 0 0 20px rgba(0, 82, 255, 0.2); }
.process-step:nth-child(2) .step-number { border-color: var(--secondary); box-shadow: 0 0 20px rgba(123, 44, 191, 0.2); }
.process-step:nth-child(3) .step-number { border-color: var(--accent); box-shadow: 0 0 20px rgba(255, 0, 122, 0.2); }
.process-step:nth-child(4) .step-number { border-color: #10b981; box-shadow: 0 0 20px rgba(16, 185, 129, 0.2); }

.process-step:hover .step-number {
    transform: scale(1.1);
    color: #fff;
}

.process-step:nth-child(1):hover .step-number { background: var(--primary); }
.process-step:nth-child(2):hover .step-number { background: var(--secondary); }
.process-step:nth-child(3):hover .step-number { background: var(--accent); }
.process-step:nth-child(4):hover .step-number { background: #10b981; }

.step-content h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* -------------------------------------------------------------
   TESTIMONIALS SECTION
------------------------------------------------------------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 35px;
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
}

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

.testimonial-rating {
    display: flex;
    gap: 5px;
    color: #eab308;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.7;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar-fallback {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.15));
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.2rem;
}

.user-info h4 {
    font-size: 1rem;
    color: var(--text-primary);
}

.user-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* -------------------------------------------------------------
   CONTACT SECTION
------------------------------------------------------------- */
.contact {
    background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.5));
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info .subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 15px;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(0, 82, 255, 0.1);
    color: var(--primary);
    border: 1px solid rgba(0, 82, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-item h4 {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 3px;
}

.contact-item p {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0;
    font-weight: 600;
}

/* Contact Form UI */
.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-premium);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(8, 12, 20, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 82, 255, 0.2);
    background: rgba(8, 12, 20, 0.9);
}

/* Estilizar select */
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px;
    padding-right: 45px;
}

.form-group select option {
    background: #0f172a;
    color: #fff;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(0, 82, 255, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 82, 255, 0.5);
}

.btn-submit:disabled {
    opacity: 0.8;
    cursor: not-allowed;
}

.form-status {
    margin-top: 15px;
    font-size: 0.95rem;
}

.success-message {
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

/* -------------------------------------------------------------
   FOOTER
------------------------------------------------------------- */
.footer {
    border-top: 1px solid var(--border-color);
    background: #05080f;
    padding: 80px 8% 40px 8%;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 25px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.social-links a:hover {
    color: white;
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 82, 255, 0.3);
}

.footer-links, .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links h4, .footer-legal h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.footer-links a, .footer-legal a {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.footer-links a:hover, .footer-legal a:hover {
    color: var(--text-primary);
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* -------------------------------------------------------------
   PORTFOLIO CAROUSEL SECTION
------------------------------------------------------------- */
.gallery-carousel {
    background: radial-gradient(circle at center, rgba(123, 44, 191, 0.03) 0%, transparent 70%);
    padding: 100px 8%;
    position: relative;
}

.carousel-container-glass {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.carousel-track-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.6);
}

.carousel-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 0;
    transition: opacity 700ms ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots .dot.active {
    background: var(--accent);
    transform: scale(1.2);
    box-shadow: 0 0 10px var(--accent-glow);
}

@media (max-width: 768px) {
    .carousel-track-wrapper {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .carousel-track-wrapper {
        height: 250px;
    }
}

/* -------------------------------------------------------------
   MAP SECTION
------------------------------------------------------------- */
.map-section {
    padding: 60px 8%;
    background: transparent;
}

.map-container-glass {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
    max-width: 1200px;
    margin: 0 auto;
}

.map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.map-header h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
}

.map-address-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 1rem;
}

.btn-map-route {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    color: white !important;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 0, 122, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-map-route:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 122, 0.5);
}

.map-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.map-iframe {
    width: 100%;
    height: 350px;
    border-radius: 16px;
    border: none;
    filter: grayscale(100%) invert(90%) opacity(80%);
    transition: filter 0.4s ease;
}

.map-iframe:hover {
    filter: grayscale(0%) invert(90%) opacity(80%);
}

/* -------------------------------------------------------------
   SCROLL TO TOP BUTTON
------------------------------------------------------------- */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 0, 122, 0.1);
}

.scroll-to-top-btn.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-to-top-btn:hover {
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 0, 122, 0.4);
}

/* -------------------------------------------------------------
   FAQ SECTION & ACCORDION
------------------------------------------------------------- */
.faq-section {
    background: radial-gradient(circle at center, rgba(123, 44, 191, 0.04) 0%, transparent 70%);
    position: relative;
    padding: 100px 8%;
    border-top: 1px solid var(--border-color);
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 10;
}

.faq-item {
    border-radius: 16px;
    overflow: hidden;
}

/* Header style for accordion toggle button */
.faq-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 24px 30px;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.faq-header:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: -2px;
}

.faq-title-text {
    padding-right: 20px;
    line-height: 1.4;
}

/* Right icon in the accordion header */
.faq-icon {
    font-size: 1.1rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item.active .faq-icon {
    color: #fff;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-color: transparent;
    box-shadow: 0 0 15px rgba(123, 44, 191, 0.3);
}

/* Inner answer wrapper for CSS transition animating height and opacity */
.faq-answer-wrapper {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

.faq-answer {
    padding: 0 30px 28px 30px;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-answer p {
    margin: 0;
}

/* ─────────────────────────────────────────────────────────────
   TAILWIND CSS UTILITY CLASSES (MAPPED FOR BRAND COMPATIBILITY)
───────────────────────────────────────────────────────────── */
.bg-white\/\[0\.02\] {
    background-color: rgba(255, 255, 255, 0.02) !important;
}

.backdrop-blur-xl {
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
}

.border-white\/10 {
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.transition-all {
    transition-property: all !important;
}

.duration-300 {
    transition-duration: 300ms !important;
}

.ease-in-out {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.rotate-180 {
    transform: rotate(180deg) !important;
}

/* ── Active & Hover brand color states ── */
.faq-item:hover {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

/* brandPurple/30 (secondary color) */
.brandPurple\/30 {
    border-color: rgba(123, 44, 191, 0.3) !important;
    box-shadow: 0 0 20px rgba(123, 44, 191, 0.15) !important;
}

.brandPurple\/30:hover {
    border-color: rgba(123, 44, 191, 0.5) !important;
    box-shadow: 0 0 25px rgba(123, 44, 191, 0.25) !important;
}

/* brandPink/30 (accent color) */
.brandPink\/30 {
    border-color: rgba(255, 0, 122, 0.3) !important;
    box-shadow: 0 0 20px rgba(255, 0, 122, 0.15) !important;
}

.brandPink\/30:hover {
    border-color: rgba(255, 0, 122, 0.5) !important;
    box-shadow: 0 0 25px rgba(255, 0, 122, 0.25) !important;
}

/* Responsive FAQ adjustment */
@media (max-width: 768px) {
    .faq-header {
        padding: 20px;
        font-size: 1.05rem;
    }
    .faq-answer {
        padding: 0 20px 20px 20px;
        font-size: 0.95rem;
    }
}

/* -------------------------------------------------------------
   RESPONSIVE MEDIA QUERIES
------------------------------------------------------------- */
@media (max-width: 1200px) {
    section {
        padding: 80px 5%;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .contact-container {
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }
    
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-bullets {
        align-items: center;
    }
    
    .hero-image {
        width: 100%;
        max-width: 500px;
    }
    
    .stats-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 600px;
    }
    
    .process-step {
        display: flex;
        align-items: flex-start;
        gap: 25px;
        text-align: left;
    }
    
    .step-number {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-info {
        text-align: center;
        align-items: center;
    }
    
    .contact-details {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 40px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(8, 12, 20, 0.96);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        padding: 40px;
        transform: translateY(-150%);
        transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        border-top: 1px solid var(--border-color);
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .btn-cta, .btn-secondary-cta {
        width: 100%;
        justify-content: center;
    }
    
    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-details {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-form-wrapper {
        padding: 25px 20px;
    }
}

/* =============================================================
   WHATSAPP FLOATING BUTTON (TAILWIND UTILITY SIMULATION)
   ============================================================= */

.fixed { position: fixed; }
.bottom-6 { bottom: 1.5rem; }
.bottom-24 { bottom: 6rem; }
.right-6 { right: 1.5rem; }
.z-50 { z-index: 50; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.w-14 { width: 3.5rem; }
.h-14 { height: 3.5rem; }
.mr-3 { margin-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: 0.5rem; }
.bg-\[\#25D366\] { background-color: #25D366; }
.bg-slate-900\/90 { background-color: rgba(15, 23, 42, 0.9); }
.text-white { color: #ffffff; }
.text-slate-100 { color: #f1f5f9; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.font-medium { font-weight: 500; }
.text-3xl { font-size: 1.875rem; }
.border { border: 1px solid transparent; }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.15); }
.pointer-events-none { pointer-events: none; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 300ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 300ms; }
.duration-300 { transition-duration: 300ms; }
.opacity-0 { opacity: 0; }
.translate-x-2 { transform: translateX(0.5rem); }
.hover\:scale-110:hover { transform: scale(1.1); }
.hidden { display: none; }

@media (min-width: 768px) {
    .md\:block { display: block; }
}

.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:translate-x-0 { transform: translateX(0); }

/* Animación de Pulso y Resplandor de WhatsApp */
.whatsapp-btn-glow {
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4);
    position: relative;
}

.whatsapp-btn-glow::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 9999px;
    border: 2px solid #25D366;
    opacity: 0;
    animation: whatsapp-pulse-anim 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    pointer-events: none;
}

@keyframes whatsapp-pulse-anim {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.25);
        opacity: 0;
    }
}

/* Ajustes de Responsividad para Dispositivos Móviles */
@media (max-width: 768px) {
    .whatsapp-btn-container .w-14 {
        width: 3rem; /* 48px */
    }
    .whatsapp-btn-container .h-14 {
        height: 3rem; /* 48px */
    }
    .whatsapp-btn-container .text-3xl {
        font-size: 1.5rem; /* Icono más compacto */
    }
    
    .scroll-to-top-btn {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }
    
    /* Reposicionar separación de botones en móvil */
    .bottom-6 {
        bottom: 1rem; /* 16px */
    }
    .bottom-24 {
        bottom: 4.5rem; /* 72px */
    }
    .right-6 {
        right: 1rem; /* 16px */
    }
}

/* =============================================================
   SECCIÓN PORTAFOLIO VISUAL (GLASSMORPHISM & GRID)
   ============================================================= */

.portfolio-visual {
    background: radial-gradient(circle at center, rgba(0, 82, 255, 0.03) 0%, transparent 70%);
    padding: 100px 8%;
    border-bottom: 1px solid var(--border-color);
}

.portfolio-visual .grid {
    display: grid;
}
.portfolio-visual .grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
.portfolio-visual .gap-8 {
    gap: 2rem;
}

@media (min-width: 640px) {
    .portfolio-visual .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .portfolio-visual .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.portfolio-visual .bg-white\/0\.02 {
    background-color: rgba(255, 255, 255, 0.02);
}
.portfolio-visual .backdrop-blur-xl {
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}
.portfolio-visual .border-white\/10 {
    border-color: rgba(255, 255, 255, 0.1);
}
.portfolio-visual .rounded-2xl {
    border-radius: 1rem;
}
.portfolio-visual .overflow-hidden {
    overflow: hidden;
}

/* Transiciones y Hover del Contenedor de la Tarjeta */
.portfolio-visual .group {
    transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 500ms ease, border-color 300ms ease;
    cursor: pointer;
}
.portfolio-visual .group:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Imagen y Animación Zoom */
.portfolio-visual .portfolio-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}
.portfolio-visual .portfolio-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}
.portfolio-visual .group:hover .portfolio-img-wrapper img {
    transform: scale(1.05);
}

/* Degradado de Fondo y Textos */
.portfolio-visual .absolute {
    position: absolute;
}
.portfolio-visual .inset-0 {
    top: 0; right: 0; bottom: 0; left: 0;
}
.portfolio-visual .bg-gradient-to-t {
    background: linear-gradient(to top, rgba(8, 12, 20, 0.95) 0%, rgba(8, 12, 20, 0.4) 60%, transparent 100%);
}
.portfolio-visual .opacity-0 {
    opacity: 0;
}
.portfolio-visual .transition-opacity {
    transition: opacity 300ms ease;
}
.portfolio-visual .group:hover .group-hover\:opacity-100 {
    opacity: 1;
}

.portfolio-visual .flex {
    display: flex;
}
.portfolio-visual .items-end {
    align-items: flex-end;
}
.portfolio-visual .p-6 {
    padding: 1.5rem;
}
.portfolio-visual .text-xs {
    font-size: 0.75rem;
}
.portfolio-visual .font-bold {
    font-weight: 700;
}
.portfolio-visual .uppercase {
    text-transform: uppercase;
}
.portfolio-visual .tracking-wider {
    letter-spacing: 0.05em;
}
.portfolio-visual .text-accent {
    color: var(--accent);
}
.portfolio-visual .text-primary {
    color: var(--primary);
}
.portfolio-visual .text-secondary {
    color: var(--secondary);
}
.portfolio-visual .text-lg {
    font-size: 1.125rem;
}
.portfolio-visual .text-white {
    color: #ffffff;
}
.portfolio-visual .mt-1 {
    margin-top: 0.25rem;
}

/* =============================================================
   SECCIÓN VIDEO CORPORATIVO
   ============================================================= */

.corporate-video {
    background: radial-gradient(circle at center, rgba(123, 44, 191, 0.03) 0%, transparent 70%);
    padding: 100px 8%;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-player-container {
    max-width: 900px;
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem; /* rounded-2xl */
    padding: 1.25rem; /* p-5 */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    transition: transform 500ms ease, box-shadow 500ms ease, border-color 300ms ease;
}

.video-player-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.8), 0 0 40px rgba(123, 44, 191, 0.2);
    border-color: rgba(255, 255, 255, 0.15);
}

.corporate-video-player {
    width: 100%;
    height: auto;
    border-radius: 1rem; /* rounded-xl */
    display: block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    background-color: #000;
}





