/* ============================================================
   styles.css — ContentCreators
   Design system: dark premium, high-contrast, subtle motion
   ============================================================ */

/* ============================
   RESET & BASE
   ============================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --bg:            #0f1220;
    --surface:       #161a2e;
    --bg-elevated:   #1b2038;
    --border:        #262b45;
    --text:          #e6e8f0;
    --muted:         #a6accd;
    --accent:        #5b8cff;
    --accent-hover:  #4a7bf0;

    /* Semantic aliases */
    --bg-base:       var(--bg);
    --bg-surface:    var(--surface);
    --text-primary:  var(--text);
    --text-secondary:var(--muted);
    --accent-strong: var(--accent-hover);
    --border-color:  var(--border);

    /* Typography */
    --font: "DM Sans", system-ui, sans-serif;
    --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
    --font-weight-regular:  400;
    --font-weight-medium:   500;
    --font-weight-semibold: 600;
    --font-weight-bold:     700;
    --font-size-xs:   0.75rem;
    --font-size-sm:   0.875rem;
    --font-size-md:   1.1rem;
    --font-size-lg:   1.125rem;
    --font-size-xl:   1.5rem;
    --font-size-2xl:  2.25rem;
    --font-size-3xl:  3rem;

    /* Shadows */
    --shadow-sm: 0 6px 12px rgba(0,0,0,0.2);
    --shadow-md: 0 12px 24px rgba(0,0,0,0.25);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.25);
    --shadow-xl: 0 30px 60px rgba(0,0,0,0.3);

    /* Misc */
    --radius:     16px;
    --transition: all 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family:      var(--font);
    font-size:        var(--font-size-md);
    font-weight:      var(--font-weight-regular);
    line-height:      1.6;
    color:            var(--text-primary);
    background-color: var(--bg-base);
    overflow-x:       hidden;
}

h1, h2, h3 {
    font-family:    var(--font-display);
    color:          var(--text-primary);
    letter-spacing: -0.02em;
}

p, li { color: var(--text-secondary); }

a {
    color: inherit;
    transition: color 0.2s ease;
}
a:hover { color: var(--accent); }

.container {
    max-width: 1200px;
    margin:    0 auto;
    padding:   0 20px;
}

.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* Focus visible */
.nav-link:focus-visible,
.btn:focus-visible,
.form-group input:focus-visible,
.form-group textarea:focus-visible {
    outline:        3px solid rgba(91,140,255,0.6);
    outline-offset: 3px;
}

/* ============================
   NAVBAR
   ============================ */

.navbar {
    position:       fixed;
    top:            0;
    width:          100%;
    background:     rgba(11,15,25,0.9);
    backdrop-filter:blur(10px);
    border-bottom:  1px solid var(--border-color);
    z-index:        1000;
    padding:        1rem 0;
    transition:     var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin:    0 auto;
    padding:   0 20px;
    display:   flex;
    justify-content: space-between;
    align-items:     center;
}

.nav-logo a {
    font-size:       var(--font-size-xl);
    font-weight:     var(--font-weight-bold);
    color:           var(--text-primary);
    text-decoration: none;
    transition:      var(--transition);
}
.nav-logo a:hover { transform: translateY(-2px); }

.nav-menu {
    display:    flex;
    list-style: none;
    gap:        2rem;
}

.nav-link {
    text-decoration: none;
    color:           var(--text-secondary);
    font-weight:     var(--font-weight-medium);
    position:        relative;
    transition:      var(--transition);
}
.nav-link::after {
    content:    '';
    position:   absolute;
    bottom:     -5px; left: 0;
    width:      0; height: 2px;
    background: var(--accent);
    transition: var(--transition);
}
.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--text-primary); }

.nav-toggle {
    display:    none;
    flex-direction: column;
    cursor:     pointer;
    background: none;
    border:     none;
    padding:    4px;
}
.bar {
    width:      25px;
    height:     3px;
    background: var(--text-primary);
    margin:     3px 0;
    transition: var(--transition);
}

/* ============================
   BUTTONS
   ============================ */

.btn {
    display:         inline-flex;
    align-items:     center;
    justify-content: center;
    padding:         14px 28px;
    border-radius:   12px;
    font-size:       var(--font-size-md);
    font-weight:     var(--font-weight-semibold);
    text-decoration: none;
    border:          none;
    cursor:          pointer;
    transition:      var(--transition);
}

.btn-primary {
    background:  linear-gradient(135deg, #5b8dff, #2f54ff);
    color:       #fff;
    box-shadow:  0 14px 30px rgba(47,84,255,0.35);
    animation:   ctaPulse 2.5s infinite;
}
.btn-primary:hover {
    transform:  translateY(-2px);
    box-shadow: 0 18px 40px rgba(47,84,255,0.45);
    color:      #fff;
}
.btn-primary:active { transform: translateY(1px); }

.btn-secondary {
    background: transparent;
    color:      var(--text-primary);
    border:     1px solid var(--border);
}
.btn-secondary:hover {
    background: rgba(59,130,246,0.1);
    color:      var(--text-primary);
    transform:  translateY(-3px);
}

/* ================================================
   HERO REDISEÑADO
   Reemplazá todo el bloque /* HERO */ en tu styles.css
   ================================================ */

.hero {
    min-height:  100vh;
    display:     flex;
    align-items: center;
    background:  var(--bg-surface);
    position:    relative;
    overflow:    hidden;
    padding:     100px 0 80px;
}

/* Fondo atmosférico */
.hero::before {
    content:  '';
    position: absolute;
    inset:    0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 10%, rgba(91,140,255,0.15), transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 80%, rgba(91,60,255,0.08), transparent 55%);
    pointer-events: none;
    z-index: 0;
}

/* Grid de puntos sutil */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
}

.hero-container {
    max-width: 1200px;
    margin:    0 auto;
    padding:   0 40px;
    display:   grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap:       5rem;
    align-items: center;
    position:  relative;
    z-index:   1;
}

/* ---- Badge superior ---- */
.hero-badge-top {
    display:      inline-flex;
    align-items:  center;
    gap:          8px;
    padding:      7px 14px;
    border-radius:999px;
    background:   rgba(91,140,255,0.1);
    border:       1px solid rgba(91,140,255,0.2);
    font-size:    0.8rem;
    font-weight:  600;
    color:        rgba(255,255,255,0.7);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation:    fadeInUp 0.6s ease-out both;
}

.hero-badge-dot {
    width:        6px;
    height:       6px;
    border-radius:50%;
    background:   var(--accent);
    box-shadow:   0 0 8px var(--accent);
    animation:    blink 2s ease-in-out infinite;
}

/* ---- Título ---- */
.hero-title {
    font-size:     clamp(2.8rem, 5vw, 4.2rem);
    font-weight:   800;
    line-height:   1.08;
    letter-spacing:-0.03em;
    margin-bottom: 1.5rem;
    animation:     fadeInUp 0.6s ease-out 0.1s both;
    min-height: 3.5em;
}

.hero-title em {
    font-style:  normal;
    background:  linear-gradient(135deg, #5b8cff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Subtítulo plataformas ---- */
.hero-sub {
    font-size:     0.85rem;
    font-weight:   600;
    letter-spacing:0.12em;
    text-transform:uppercase;
    color:         var(--accent);
    margin-bottom: 1.25rem;
    animation:     fadeInUp 0.6s ease-out 0.2s both;
}

/* ---- Descripción ---- */
.hero-description {
    font-size:     1.05rem;
    line-height:   1.75;
    color:         var(--text-secondary);
    max-width:     440px;
    margin-bottom: 2.5rem;
    animation:     fadeInUp 0.6s ease-out 0.3s both;
}

/* ---- Acciones ---- */
.hero-actions {
    display:     flex;
    align-items: center;
    gap:         2rem;
    animation:   fadeInUp 0.6s ease-out 0.4s both;
}

.hero-cta {
    display:      inline-flex;
    align-items:  center;
    gap:          10px;
    padding:      14px 28px;
    border-radius:12px;
    font-size:    1rem;
    font-weight:  700;
    color:        #fff;
    background:   linear-gradient(135deg, #5b8cff, #3f6ff2);
    border:       1px solid rgba(129,170,255,0.4);
    box-shadow:   0 8px 24px rgba(91,140,255,0.4);
    text-decoration: none;
    transition:   transform 0.2s ease, box-shadow 0.2s ease;
    animation:    ctaPulse 3s ease-in-out infinite;
}
.hero-cta:hover {
    transform:  translateY(-2px);
    box-shadow: 0 14px 36px rgba(91,140,255,0.55);
    color:      #fff;
}
.hero-cta svg { transition: transform 0.2s ease; }
.hero-cta:hover svg { transform: translateX(3px); }

.hero-link-secondary {
    display:         inline-flex;
    align-items:     center;
    gap:             6px;
    font-size:       0.95rem;
    font-weight:     600;
    color:           var(--text-secondary);
    text-decoration: none;
    transition:      color 0.2s ease;
}
.hero-link-secondary:hover { color: var(--text-primary); }

/* ---- Reel cards ---- */
.hero-preview {
    display:         flex;
    gap:             20px;
    align-items:     center;
    justify-content: center;
    animation:       fadeInRight 0.8s ease-out 0.35s both;
    justify-self:    center;
}

.reel-card {
    position:      relative;
    width:         150px;
    height:        266px;
    border-radius: 22px;
    overflow:      hidden;
    border:        1px solid rgba(255,255,255,0.08);
    box-shadow:    0 24px 60px rgba(0,0,0,0.5);
    transition:    transform 0.3s ease, box-shadow 0.3s ease;
    background:    rgba(255,255,255,0.02);
    backdrop-filter: blur(4px);
}
.reel-card:hover {
    transform:  translateY(-8px);
    box-shadow: 0 36px 80px rgba(0,0,0,0.6);
}

.reel-center {
    width:  178px;
    height: 316px;
    z-index:2;
    border-color: rgba(91,140,255,0.25);
}

/* Glow interno de cada card */
.reel-glow {
    position:      absolute;
    inset:         0;
    border-radius: inherit;
    opacity:       0.3;  /* ← antes era 0.6 */
    transition:    opacity 0.3s ease;
}
.reel-glow--blue {
    background: radial-gradient(ellipse at 50% 0%, rgba(91,140,255,0.5), transparent 65%);
}
.reel-glow--purple {
    background: radial-gradient(ellipse at 50% 0%, rgba(139,92,246,0.45), transparent 65%);
}
.reel-glow--cyan {
    background: radial-gradient(ellipse at 50% 0%, rgba(34,211,238,0.35), transparent 65%);
}

/* Contenido interior de la card */
.reel-inner {
    position:        absolute;
    inset:           0;
    display:         flex;
    align-items:     center;
    justify-content: center;
    padding-bottom:  18px;
     text-align:      center;
}


.reel-tag {
    font-size:   12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color:       rgba(255,255,255,0.9);
    background:  rgba(15,18,32,0.7);
    border:      1px solid rgba(255,255,255,0.12);
    padding:     5px 12px;
    border-radius:999px;
    backdrop-filter: blur(8px);
}

/* Animaciones de flotado */
.reel-left,
.reel-center,
.reel-right {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.reel-left   { animation: floatReel 6s ease-in-out infinite; }
.reel-center { animation: floatReel 4.5s ease-in-out infinite 0.5s; }
.reel-right  { animation: floatReel 7s ease-in-out infinite 1s; }
/* ---- Mobile ---- */
@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap:       2.5rem;
        text-align:center;
        padding:   0 24px;
    }
    .hero-content  { order: 1; }
    .hero-preview  { order: 2; }
    .hero-badge-top { margin: 0 auto 1.5rem; }
    .hero-description { margin-left: auto; margin-right: auto; }
    .hero-actions  { justify-content: center; flex-wrap: wrap; gap: 1.25rem; }

    .reel-card     { width: 100px; height: 177px; border-radius: 16px; }
    .reel-center   { width: 118px; height: 210px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .hero-cta   { width: 100%; max-width: 280px; justify-content: center; }
}


/* ============================
   STATS
   ============================ */

.stats-section {
    background:    var(--bg-surface);
    padding:       60px 0;
    border-top:    1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display:               grid;
    grid-template-columns: repeat(4, 1fr);
    gap:                   2rem;
    text-align:            center;
}

.stat-item { padding: 1.5rem; }

.stat-number {
    font-size:    3.5rem;
    font-weight:  800;
    line-height:  1;
    letter-spacing: -0.04em;
    background:   linear-gradient(135deg, #fff 30%, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-suffix {
    font-size:   2.5rem;
    font-weight: 800;
    background:  linear-gradient(135deg, #fff 30%, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    margin-top:  0.5rem;
    color:       var(--text-secondary);
    font-size:   0.9rem;
    font-weight: var(--font-weight-medium);
}

/* ============================
   SECTION SHARED
   ============================ */

section { padding: 80px 0; }

.section-title {
    font-size:     var(--font-size-2xl);
    font-weight:   var(--font-weight-bold);
    text-align:    center;
    margin-bottom: 1rem;
    color:         var(--text-primary);
}

.section-subtitle {
    text-align:    center;
    color:         var(--text-secondary);
    margin-bottom: 3rem;
    font-size:     var(--font-size-lg);
}

/* ============================
   PROYECTOS (VIDEO GRID)
   ============================ */

#proyectos {
    padding:    100px 8%;
    background: #0f172a;
    text-align: center;
}

#proyectos h2 {
    font-size:     2.5rem;
    margin-bottom: 60px;
    color:         white;
    letter-spacing:1px;
}

.video-grid {
    display:               grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap:                   40px;
    max-width:             1200px;
    margin:                40px auto 0;
}

.video-grid video {
    width:         100%;
    aspect-ratio:  9 / 16;
    object-fit:    cover;
    border-radius: 16px;
    box-shadow:    0 20px 40px rgba(0,0,0,0.4);
    cursor:        pointer;
    transition:    transform 0.4s ease, box-shadow 0.4s ease;
}
.video-grid video:hover {
    transform:  translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}
.video-grid video:active { transform: scale(0.98); }

.hidden-video { display: none; }

.show-more-btn {
    margin:        40px auto ;
    display:       block;
    padding:       12px 32px;
    border-radius: 40px;
    border:        1px solid var(--border);
    cursor:        pointer;
    font-weight:   var(--font-weight-semibold);
    font-size:     var(--font-size-md);
    background:    var(--surface);
    color:         var(--text-primary);
    transition:    var(--transition);
}
.show-more-btn:hover {
    transform:     translateY(-2px);
    border-color:  var(--accent);
    color:         var(--accent);
}

/* Video Modal */
.video-modal {
    position:    fixed;
    inset:       0;
    background:  rgba(0,0,0,0.55);
    backdrop-filter: blur(8px);
    display:     flex;
    align-items: center;
    justify-content: center;
    opacity:     0;
    pointer-events: none;
    transition:  opacity 0.3s ease;
    z-index:     9999;
}
.video-modal.active {
    opacity:        1;
    pointer-events: all;
}
.video-modal video {
    width:         clamp(320px, 30vw, 600px);
    border-radius: 24px;
    box-shadow:    0 40px 100px rgba(0,0,0,0.8);
    transform:     scale(0.85);
    opacity:       0;
    transition:    transform 0.4s ease, opacity 0.4s ease;
}
.video-modal.active video {
    transform: scale(1);
    opacity:   1;
}

/* ============================
   SERVICIOS
   ============================ */

.services {
    background: var(--bg-base);
    padding:    100px 0;
}

.services-grid {
    display:               grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap:                   24px;
}

.service-card {
    background: var(--surface);
    border:     1px solid var(--border);
    border-radius: var(--radius);
    padding:    2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover {
    transform:    translateY(-5px);
    border-color: rgba(91,140,255,0.3);
    box-shadow:   0 24px 60px rgba(0,0,0,0.35);
}

.service-icon {
    font-size:     2rem;
    margin-bottom: 1rem;
    display:       block;
}

.service-title {
    font-size:     1.2rem;
    font-weight:   var(--font-weight-bold);
    color:         var(--text-primary);
    margin-bottom: 0.75rem;
}

.service-desc {
    color:         var(--text-secondary);
    font-size:     0.95rem;
    line-height:   1.6;
    margin-bottom: 1.25rem;
}

.service-list {
    list-style: none;
    display:    grid;
    gap:        0.5rem;
}
.service-list li {
    color:       var(--text-secondary);
    font-size:   var(--font-size-sm);
    padding-left:1.25rem;
    position:    relative;
}
.service-list li::before {
    content:  '→';
    position: absolute;
    left:     0;
    color:    var(--accent);
}

/* ============================
   FORMAS DE TRABAJO
   ============================ */

.packages {
    background: var(--bg-surface);
    padding:    100px 0;
}

.packages-note {
    text-align:    center;
    font-size:     var(--font-size-lg);
    color:         var(--text-secondary);
    margin-bottom: 3rem;
    margin-top:    -1rem;
}

.packages-grid {
    display:               grid;
    grid-template-columns: repeat(3, 1fr);
    gap:                   24px;
    align-items:           start;
}

.package-card {
    background:    var(--surface);
    border:        1px solid var(--border);
    border-radius: var(--radius);
    padding:       2rem;
    text-align:    center;
    transition:    transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.package-card:hover {
    transform:  translateY(-4px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}
.package-card.is-featured {
    border-color: rgba(91,140,255,0.45);
    box-shadow:
        0 0 0 1px rgba(91,140,255,0.2),
        0 30px 70px rgba(47,84,255,0.25);
    transform:  scale(1.03);
    background: linear-gradient(180deg, rgba(91,140,255,0.06), var(--surface) 60%);
}
.package-card.is-featured:hover { transform: scale(1.05) translateY(-4px); }

.service-icon {
    font-size:     2.5rem;
    margin-bottom: 0.75rem;
    display:       block;
}

.package-desc {
    color:         var(--text-secondary);
    font-size:     0.9rem;
    line-height:   1.6;
    margin-bottom: 1.5rem;
}

.package-list {
    list-style: none;
    text-align: left;
    display:    grid;
    gap:        0.6rem;
    margin-bottom: 2rem;
}
.package-list li {
    color:        var(--text-secondary);
    font-size:    0.9rem;
    padding:      0.35rem 0;
    border-bottom:1px solid rgba(255,255,255,0.04);
}
.package-list li:last-child { border-bottom: none; }

.package-btn {
    width:           100%;
    justify-content: center;
}

.plan-tagline {
    display:         flex;
    justify-content: center;
    margin-bottom:   1rem;
}

.plan-badge {
    display:      inline-flex;
    align-items:  center;
    padding:      8px 16px;
    border-radius:999px;
    font-size:    13px;
    font-weight:  var(--font-weight-semibold);
    color:        rgba(255,255,255,0.9);
    background:   rgba(91,141,255,0.18);
    border:       1px solid rgba(91,141,255,0.34);
}
.plan-badge.is-featured {
    background:   rgba(91,141,255,0.28);
    border-color: rgba(91,141,255,0.55);
    box-shadow:   0 8px 24px rgba(47,84,255,0.2);
}

.packages-cta-note {
    text-align: center;
    margin-top: 2.5rem;
    color:      var(--text-secondary);
    font-size:  0.95rem;
}
.packages-cta-note a {
    color:              var(--accent);
    text-decoration:    underline;
    text-underline-offset: 3px;
}

/* ============================
   TESTIMONIOS
   ============================ */

.testimonials {
    background: var(--bg-base);
    padding:    100px 0;
}

.testimonials-grid {
    display:               grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap:                   24px;
}

.testimonial-card {
    background:    var(--surface);
    border:        1px solid var(--border);
    border-radius: var(--radius);
    padding:       2rem;
    transition:    transform 0.2s ease, box-shadow 0.2s ease;
}
.testimonial-card:hover {
    transform:  translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.testimonial-stars {
    color:         #f59e0b;
    font-size:     1rem;
    letter-spacing:2px;
    margin-bottom: 1rem;
}

.testimonial-text {
    color:         var(--text-primary);
    font-size:     1rem;
    line-height:   1.7;
    font-style:    italic;
    margin-bottom: 1.5rem;
}

.testimonial-author-row {
    display:     flex;
    align-items: center;
    gap:         0.875rem;
}

.testimonial-avatar {
    width:        42px;
    height:       42px;
    border-radius:50%;
    background:   linear-gradient(135deg, var(--accent), #3f6ff2);
    display:      flex;
    align-items:  center;
    justify-content: center;
    font-size:    0.8rem;
    font-weight:  var(--font-weight-bold);
    color:        white;
    flex-shrink:  0;
}

.testimonial-author {
    font-weight: var(--font-weight-semibold);
    color:       var(--text-primary);
    font-size:   0.95rem;
}

.testimonial-role {
    color:     var(--text-secondary);
    font-size: 0.8rem;
    margin-top:2px;
}

/* ============================
   CTA FINAL + FORMULARIO
   ============================ */

.cta {
    background: var(--bg-surface);
    padding:    100px 0;
    position:   relative;
    overflow:   hidden;
}
.cta::before {
    content:  '';
    position: absolute;
    inset:    0;
    background: radial-gradient(circle at 50% 30%, rgba(91,140,255,0.12), transparent 65%);
    pointer-events: none;
}

.cta-content {
    position:   relative;
    z-index:    1;
    text-align: center;
    max-width:  680px;
    margin:     0 auto 4rem;
}

.cta-label {
    display:        inline-block;
    font-size:      0.85rem;
    font-weight:    var(--font-weight-semibold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color:          var(--accent);
    margin-bottom:  1rem;
    background:     rgba(91,140,255,0.1);
    border:         1px solid rgba(91,140,255,0.25);
    padding:        6px 16px;
    border-radius:  999px;
}

.cta-content h2 {
    font-size:     2.5rem;
    font-weight:   800;
    line-height:   1.2;
    margin-bottom: 1rem;
    letter-spacing:-0.03em;
}

.cta-content p {
    color:         var(--text-secondary);
    font-size:     1.1rem;
    margin-bottom: 0;
}

/* Contact form layout */
.contact-wrapper {
    display:     grid;
    grid-template-columns: 1fr 1fr;
    gap:         3rem;
    align-items: start;
    position:    relative;
    z-index:     1;
    margin-top: 2rem;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form-column {
    display: flex;
    flex-direction: column;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--surface);
    border-radius: 15px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.contact-info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.contact-info-icon {
    font-size: 1.5rem;
    min-width: 40px;
    text-align: center;
}

.contact-info-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.contact-info-value {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-value:hover {
    color: var(--accent);
}

.contact-form-card {
    background:    var(--surface);
    border:        1px solid var(--border);
    border-radius: var(--radius);
    padding:       2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:     1rem;
}

.form-group {
    display:       flex;
    flex-direction:column;
    gap:           0.5rem;
    margin-bottom: 1.25rem;
}

.form-group label {
    font-size:   var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color:       var(--text-secondary);
}

.form-group input,
.form-group textarea {
    width:        100%;
    padding:      0.875rem 1rem;
    background:   var(--bg-base);
    border:       1px solid var(--border);
    border-radius:10px;
    color:        var(--text-primary);
    font-family:  inherit;
    font-size:    0.95rem;
    transition:   border-color 0.2s ease, box-shadow 0.2s ease;
    resize:       none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group input:focus,
.form-group textarea:focus {
    outline:    none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(91,140,255,0.15);
}

.form-submit-btn {
    width:    100%;
    padding:  1rem;
    margin-top:0.5rem;
}
.form-submit-btn:disabled {
    opacity:   0.6;
    cursor:    not-allowed;
    transform: none !important;
}

.form-status {
    text-align: center;
    margin-top: 1rem;
    font-size:  0.9rem;
    font-weight:var(--font-weight-medium);
    min-height: 1.2em;
}
.form-status.success { color: #4ade80; }
.form-status.error   { color: #f87171; }

/* ============================
   FOOTER
   ============================ */

.footer {
    background:  #05070d;
    padding:     40px 0;
    text-align:  center;
    border-top:  1px solid var(--border);
}

.footer-logo {
    font-size:     1.25rem;
    font-weight:   var(--font-weight-bold);
    color:         var(--text-primary);
    margin-bottom: 8px;
}

.footer-content p {
    color:         var(--text-secondary);
    font-size:     0.9rem;
    margin-bottom: 6px;
}

/* ============================
   ANIMATIONS
   ============================ */

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes floatReel {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

@keyframes ctaPulse {
    0%   { box-shadow: 0 0 0 0 rgba(59,108,255,0.45); }
    70%  { box-shadow: 0 0 0 14px rgba(59,108,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(59,108,255,0); }
}

@keyframes heroCtaPulse {
    0%, 100% { box-shadow: 0 0 36px rgba(91,140,255,0.6), 0 24px 50px rgba(91,140,255,0.55); }
    50%       { box-shadow: 0 0 50px rgba(91,140,255,0.8), 0 30px 60px rgba(91,140,255,0.7); }
}

@keyframes heroCtaShine {
    0%   { transform: translateX(-120%); }
    60%  { transform: translateX(120%); }
    100% { transform: translateX(120%); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

/* ============================
   REVEAL ON SCROLL
   ============================ */

.reveal {
    opacity:    0;
    transform:  translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change:opacity, transform;
}
.reveal.active {
    opacity:   1;
    transform: translateY(0);
}
.no-js .reveal { opacity: 1; transform: none; }

/* ============================
   TYPEWRITER
   ============================ */

.typewriter-cursor::after {
    content:    '|';
    display:    inline-block;
    margin-left:3px;
    color:      var(--accent);
    animation:  blink 0.75s step-end infinite;
}

/* ============================
   RESPONSIVE
   ============================ */

@media (max-width: 1024px) {
    .packages-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .package-card.is-featured { transform: scale(1); }
    .package-card.is-featured:hover { transform: translateY(-4px); }
}

@media (max-width: 768px) {
    /* Navbar */
    .nav-menu {
        position:   fixed;
        left:       -100%;
        top:        70px;
        flex-direction: column;
        background: var(--bg-base);
        width:      100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        padding:    2rem 0;
        border-top: 1px solid var(--border);
    }
    .nav-menu.active { left: 0; }
    .nav-toggle { display: flex; }
    .nav-toggle.active .bar:nth-child(2) { opacity: 0; }
    .nav-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .nav-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    /* Contact Wrapper - Responsive */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-column {
        order: 2;
    }
    
    .contact-form-column {
        order: 1;
    }

    /* Hero */
    .hero { min-height: auto; padding: 120px 0 80px; }
    .hero-container { grid-template-columns: 1fr; gap: 28px; text-align: center; }
    .hero-content  { order: 1; }
    .hero-preview  { order: 2; gap: 14px; margin-top: 12px; }
    .hero-title    { font-size: 2.1rem; line-height: 1.15; }
    .hero-subtitle { font-size: 1.05rem; }
    .hero-description { font-size: 0.95rem; }
    .hero-buttons  { justify-content: center; }
    .hero-cta { width: 100%; max-width: 320px; padding: 16px 24px; font-size: 1.1rem; }
    .hero-preview .reel-card { width: 88px; height: 156px; border-radius: 14px; }
    .reel-center { width: 104px !important; height: 185px !important; }

    /* Stats */
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-number { font-size: 2.8rem; }
    .stat-suffix { font-size: 2rem; }

    /* Sections */
    .section-title { font-size: 2rem; }
    .services-grid { grid-template-columns: 1fr; }

    /* CTA */
    .cta-content h2 { font-size: 1.9rem; }
    .contact-wrapper { grid-template-columns: 1fr; gap: 2rem; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-card { padding: 1.5rem; }
}

@media (max-width: 480px) {
    .hero-title    { font-size: 1.9rem; }
    .hero-buttons  { flex-direction: column; align-items: center; }
    .stats-grid    { grid-template-columns: repeat(2, 1fr); }
    
    /* Contact Wrapper - Mobile */
    .contact-wrapper {
        gap: 1.5rem;
    }
    
    .contact-info-item {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .contact-info-icon {
        font-size: 1.25rem;
        min-width: 30px;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation:      none !important;
        transition:     none !important;
        scroll-behavior:auto !important;
    }
}
/* ========================= */
/* REEL CARDS — hover mejorado */
/* ========================= */

.reel-card {
    cursor: pointer;
}

/* Shine al hacer hover */
.reel-card::before {
    content:    '';
    position:   absolute;
    top:        0; left: -75%;
    width:      50%;
    height:     100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.08),
        transparent
    );
    transform:  skewX(-15deg);
    transition: left 0.5s ease;
    z-index:    10;
    pointer-events: none;
}
.reel-card:hover::before { left: 130%; }

/* Agrandar + iluminar al hover */
.reel-card:hover {
    transform:    translateY(-10px) scale(1.04);
    box-shadow:   0 40px 80px rgba(0,0,0,0.6);
}

.reel-center:hover {
    transform:    translateY(-10px) scale(1.04);
}

/* Borde de color por card */
.reel-left:hover   { border-color: rgba(139,92,246,0.5); box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 30px rgba(139,92,246,0.2); }
.reel-center:hover { border-color: rgba(91,140,255,0.5); box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 40px rgba(91,140,255,0.25); }
.reel-right:hover  { border-color: rgba(34,211,238,0.5); box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 30px rgba(34,211,238,0.2); }

/* Glow se intensifica al hover */
.reel-card:hover .reel-glow { opacity: 1; }

.reel-info {
    display:        flex;
    flex-direction: column;
    align-items:    center;
    gap:            4px;
    text-align:     center;
}

.reel-metric {
    font-size:     1.8rem;
    font-weight:   800;
    color:         #fff;
    letter-spacing:-0.03em;
    line-height:   1;
    margin:        6px 0 2px;
}

.reel-metric-label {
    font-size:     11px;
    color:         rgba(255,255,255,0.55);
    font-weight:   500;
    margin-bottom: 8px;
}
