/*
Theme Name: Si Producciones Landing
Theme URI: https://www.siproducciones.com.ar
Author: Si Producciones
Description: Landing page responsive para Si Producciones, con animaciones y contacto directo por WhatsApp e Instagram.
Version: 1.0.8
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GPL-2.0-or-later
Text Domain: si-producciones
*/

:root {
  color-scheme: dark;
  --black: #000;
  --ink: #050505;
  --panel: #0a0a0a;
  --card: #111;
  --card-soft: #1a1a1a;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #fff;
  --muted: #a1a1aa;
  --muted-strong: #71717a;
  --cyan: #22d3ee;
  --cyan-dark: #0891b2;
  --lime: #a3e635;
  --lime-dark: #84cc16;
  --blue: #60a5fa;
  --radius-lg: 32px;
  --radius-xl: 40px;
  --shadow-cyan: 0 24px 70px rgba(8, 145, 178, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--muted);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
}

::selection {
  background: rgba(6, 182, 212, 0.3);
  color: var(--text);
}

.site-shell {
  min-height: 100vh;
  background: var(--black);
  color: var(--muted);
  overflow-x: hidden;
}

.container {
  width: min(100% - 48px, 1280px);
  margin-inline: auto;
}

.container-narrow {
  width: min(100% - 48px, 1024px);
  margin-inline: auto;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  min-height: 92px;
  border-bottom: 1px solid transparent;
  padding-block: 0;
  transition: background-color 300ms ease, border-color 300ms ease, min-height 300ms ease, box-shadow 300ms ease;
}

.site-nav.is-scrolled {
  min-height: 76px;
  padding-block: 0;
  background: rgba(0, 0, 0, 0.82);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(20px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: inherit;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  min-width: 260px;
  color: var(--text);
  font-size: 20px;
  font-weight: 650;
}

.brand img {
  display: block;
  width: clamp(220px, 16vw, 320px);
  height: auto;
  max-height: 88px;
  object-fit: contain;
  object-position: left center;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(90deg, var(--cyan), var(--lime));
  background-clip: text;
  -webkit-background-clip: text;
}

.gradient-flow {
  background-size: 180% 100%;
  animation: gradientFlow 8s ease-in-out infinite;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  transition: color 200ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.pill-link,
.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 300ms ease, background-color 300ms ease, color 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.pill-link {
  padding: 6px 16px;
  background: var(--lime);
  color: var(--black) !important;
  font-size: 12px;
}

.button-primary,
.button-secondary {
  min-height: 56px;
  padding: 14px 32px;
  font-size: 18px;
}

.button-primary {
  background: var(--lime);
  color: var(--black);
}

.button-secondary {
  background: var(--card);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pill-link:hover,
.button-primary:hover,
.button-secondary:hover,
.contact-link:hover,
.interactive-card:hover,
.media-card:hover {
  transform: translateY(-4px);
}

.button-primary:hover,
.pill-link:hover {
  background: var(--lime-dark);
}

.button-secondary:hover {
  background: #222;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: background-color 200ms ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-menu {
  display: none;
  position: absolute;
  inset: 100% 0 auto;
  height: calc(100dvh - 92px);
  overflow-y: auto;
  padding: 24px 24px 96px;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(24px);
}

.site-nav.is-scrolled .mobile-menu {
  height: calc(100dvh - 76px);
}

.mobile-menu.is-open {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu a {
  color: var(--text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 16px;
  font-size: 28px;
  font-weight: 700;
}

.mobile-menu .mobile-cta {
  border-bottom: 0;
  margin-top: 20px;
  padding: 16px;
  background: var(--lime);
  color: var(--black);
  text-align: center;
  border-radius: 999px;
  font-size: 18px;
}

.section {
  scroll-margin-top: 96px;
  padding-block: 128px;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 112px 0 64px;
  text-align: center;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  border-radius: 999px;
  pointer-events: none;
  background: linear-gradient(35deg, rgba(6, 182, 212, 0.2), rgba(132, 204, 22, 0.1), rgba(37, 99, 235, 0.2));
  filter: blur(120px);
  animation: glowBreath 9s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  padding: 6px 16px;
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.1);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  backdrop-filter: blur(12px);
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--cyan);
  animation: dotPulse 2s ease-in-out infinite;
}

.hero h1 {
  margin: 0 0 32px;
  color: var(--text);
  font-size: clamp(48px, 9vw, 112px);
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: 0;
}

.hero p {
  max-width: 680px;
  margin: 0 auto 44px;
  color: var(--muted);
  font-size: clamp(16px, 2.2vw, 24px);
  font-weight: 550;
  letter-spacing: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.section-heading {
  margin-bottom: 64px;
}

.section-heading h2,
.section-head-row h2,
.contact-heading h2 {
  margin: 0 0 16px;
  color: var(--text);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: 0;
}

.section-heading h2 span,
.section-head-row h2 span {
  color: var(--muted-strong);
}

.section-heading p,
.section-head-row p,
.contact-heading p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
}

.services-grid,
.video-grid,
.testimonials-grid {
  display: grid;
  gap: 24px;
}

.services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card,
.testimonial-card {
  min-height: 360px;
  padding: 56px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  background: var(--card);
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease, background-color 300ms ease;
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.service-card.featured {
  background: linear-gradient(135deg, #18181b, var(--card));
}

.service-card:hover,
.testimonial-card:hover,
.case-card:hover {
  border-color: rgba(6, 182, 212, 0.3);
  box-shadow: var(--shadow-cyan);
}

.service-icon {
  margin-bottom: 96px;
  transition: transform 400ms ease;
}

.service-card:hover .service-icon {
  transform: translateY(-8px) scale(1.08);
}

.icon-cyan {
  color: var(--cyan);
}

.icon-lime {
  color: var(--lime);
}

.icon-blue {
  color: var(--blue);
}

.icon-white {
  color: var(--text);
}

.service-card h3,
.case-card h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.12;
  letter-spacing: 0;
}

.service-card p,
.case-card p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 550;
}

.about {
  background: var(--text);
  color: var(--black);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about h2 {
  margin: 0 0 32px;
  font-size: clamp(40px, 7vw, 84px);
  line-height: 1.08;
  font-weight: 850;
  letter-spacing: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.stat-number {
  margin: 0;
  color: var(--black);
  font-size: clamp(48px, 6vw, 64px);
  line-height: 1;
  font-weight: 850;
}

.stat-label {
  margin: 8px 0 0;
  color: #71717a;
  font-weight: 700;
}

.about-copy {
  display: grid;
  gap: 32px;
  color: #52525b;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 600;
  line-height: 1.3;
}

.about-copy p {
  margin: 0;
}

.about-copy .strong {
  color: var(--black);
}

.gallery {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  border-radius: 999px;
  background: rgba(132, 204, 22, 0.1);
  filter: blur(150px);
  pointer-events: none;
}

.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 64px;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  transition: color 200ms ease;
}

.inline-link:hover {
  color: var(--cyan);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 96px;
}

.media-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #18181b;
  border: 1px solid rgba(255, 255, 255, 0.05);
  isolation: isolate;
  transition: transform 300ms ease, border-color 300ms ease;
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.18) 45%, transparent 65%);
  opacity: 0;
  transform: translateX(-120%) skewX(-14deg);
  transition: opacity 300ms ease, transform 700ms ease;
}

.media-card:hover::after {
  opacity: 1;
  transform: translateX(120%) skewX(-14deg);
}

.media-card img,
.media-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease, opacity 500ms ease;
}

.media-card:hover img {
  transform: scale(1.05);
}

.media-card video {
  display: block;
}

.media-large {
  grid-column: span 4;
  grid-row: span 2;
  min-height: 420px;
}

.media-square {
  grid-column: span 2;
  aspect-ratio: 1;
}

.media-wide {
  grid-column: span 3;
  height: 320px;
}

.media-overlay,
.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  padding: 32px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), transparent 70%);
  opacity: 0;
  transition: opacity 300ms ease;
}

.media-card:hover .media-overlay {
  opacity: 1;
}

.media-overlay p {
  margin: 0;
  color: var(--text);
  font-size: 20px;
  font-weight: 800;
}

.video-header {
  padding-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.video-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.video-card {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xl);
}

.video-card:hover {
  border-color: rgba(6, 182, 212, 0.5);
}

.video-card:nth-child(2):hover {
  border-color: rgba(132, 204, 22, 0.5);
}

.video-overlay {
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.play-button {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  animation: softPulse 2.8s ease-in-out infinite;
  transition: transform 300ms ease, background-color 300ms ease;
}

.video-card:hover .play-button {
  transform: scale(1.1);
  background: var(--cyan);
}

.video-card:nth-child(2):hover .play-button {
  background: var(--lime);
}

.video-overlay p {
  margin: 24px 0 0;
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
}

.experience {
  background: var(--ink);
}

.case-list {
  display: grid;
  gap: 24px;
}

.case-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  background: var(--card);
  transition: transform 300ms ease, background-color 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.case-title {
  display: flex;
  align-items: center;
  gap: 36px;
}

.case-icon {
  color: rgba(255, 255, 255, 0.4);
  transition: color 300ms ease, opacity 300ms ease;
}

.case-card:hover {
  background: #161616;
}

.case-card:hover .case-icon {
  color: var(--cyan);
}

.case-card:nth-child(even):hover .case-icon {
  color: var(--lime);
}

.case-card p {
  max-width: 440px;
}

.testimonials-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  background: var(--panel);
}

.quote-icon {
  color: rgba(6, 182, 212, 0.3);
  margin-bottom: 24px;
}

.quote-copy {
  margin: 0 0 32px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;
}

.testimonial-author {
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.testimonial-role {
  margin: 4px 0 0;
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 600;
}

.contact {
  background: var(--card);
}

.contact-heading {
  margin-bottom: 64px;
  text-align: center;
}

.contact-panel {
  display: grid;
  max-width: 860px;
  margin: 0 auto;
  gap: 28px;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 48px;
  background: var(--black);
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.035);
  transition: transform 300ms ease, border-color 300ms ease, background-color 300ms ease;
}

.contact-icon {
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  color: var(--text);
  background: var(--card-soft);
  transition: background-color 300ms ease, color 300ms ease;
}

.contact-link:hover .contact-icon {
  background: var(--text);
  color: var(--black);
}

.contact-link:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
}

.contact-icon-whatsapp {
  background: #25d366;
  color: #fff;
}

.contact-link:hover .contact-icon-whatsapp {
  background: #25d366;
  color: #fff;
}

.contact-icon-instagram {
  background: radial-gradient(circle at 30% 105%, #feda75 0 20%, #fa7e1e 32%, #d62976 52%, #962fbf 72%, #4f5bd5 100%);
  color: #fff;
}

.contact-link:hover .contact-icon-instagram {
  background: radial-gradient(circle at 30% 105%, #feda75 0 20%, #fa7e1e 32%, #d62976 52%, #962fbf 72%, #4f5bd5 100%);
  color: #fff;
}

.contact-label {
  display: block;
  margin: 0 0 4px;
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-value {
  display: block;
  margin: 0;
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.site-footer {
  padding-block: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--black);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
}

.footer-logo {
  display: block;
  width: min(340px, 36vw);
  height: auto;
  max-height: 112px;
  object-fit: contain;
  object-position: left center;
}

.footer-copy {
  margin: 0;
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 600;
}

.reveal-item {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  filter: blur(6px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1), filter 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

@keyframes gradientFlow {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes glowBreath {
  from {
    opacity: 0.64;
    transform: translate(-50%, -50%) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.04);
  }
}

@keyframes dotPulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.45;
  }
}

@keyframes softPulse {
  0%,
  100% {
    box-shadow: 0 0 26px rgba(6, 182, 212, 0.18);
  }

  50% {
    box-shadow: 0 0 44px rgba(163, 230, 53, 0.24);
  }
}

@keyframes successPop {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(8px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@media (max-width: 1120px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 900px) {
  .section {
    padding-block: 96px;
  }

  .services-grid,
  .about-grid,
  .video-grid,
  .testimonials-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .about-grid {
    gap: 48px;
  }

  .service-card {
    min-height: auto;
  }

  .service-icon {
    margin-bottom: 48px;
  }

  .section-head-row {
    display: grid;
    margin-bottom: 48px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    margin-bottom: 64px;
  }

  .media-large,
  .media-wide,
  .media-square {
    grid-column: auto;
  }

  .media-large,
  .media-wide {
    min-height: auto;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .media-square {
    aspect-ratio: 16 / 9;
  }

  .case-card {
    display: grid;
  }

  .case-title {
    gap: 20px;
  }

  .case-card p {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .container,
  .container-narrow {
    width: min(100% - 32px, 1280px);
  }

  .brand {
    min-width: 0;
    font-size: 18px;
  }

  .brand img {
    width: 170px;
    height: auto;
    max-height: 68px;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-glow {
    width: 520px;
    height: 520px;
    filter: blur(90px);
  }

  .hero-actions {
    display: grid;
    width: 100%;
  }

  .button-primary,
  .button-secondary {
    width: 100%;
    font-size: 16px;
  }

  .section {
    padding-block: 80px;
  }

  .service-card,
  .testimonial-card,
  .case-card,
  .contact-panel {
    border-radius: 24px;
    padding: 28px;
  }

  .contact-panel {
    padding: 24px;
  }

  .contact-links {
    grid-template-columns: 1fr;
  }

  .footer-logo {
    width: 240px;
    height: auto;
    max-height: 86px;
  }

  .stats-grid {
    gap: 20px;
    margin-top: 48px;
  }

  .play-button {
    width: 64px;
    height: 64px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-item {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .media-card::after {
    display: none;
  }
}
