/* ============================================================
   MULTISALUD — ESTILO DE DISEÑO PREMIUM (HEALTH-TECH OSCURO)
   Est. 2026. Caracas · Valencia · Venezuela.
   ============================================================ */

/* ------------------------------------------------------------
   1. RESET & VARIABLES
   ------------------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background-color: #051411;
}

:root {
  /* Paleta cromática Health-Tech Premium */
  --bg-primary: #051411;      /* Fondo principal: Verde bosque profundo */
  --bg-secondary: #0c211d;    /* Fondo secundario: Contenedores y elevaciones */
  --bg-tertiary: #132e29;     /* Detalles y bordes */
  
  --text-primary: #f1faf7;    /* Texto principal: Menta muy suave */
  --text-secondary: #89a59f;  /* Texto secundario: Menta grisáceo / Clínico */
  --text-muted: #57706c;      /* Muted text: Gris esmeralda */
  
  --accent: #00bfa5;          /* Acento: Menta brillante / Neón clínico */
  --accent-light: #33ccb7;    /* Acento hover */
  --accent-red: #ef4444;      /* Color de marca: Corazón pulsante */
  
  --border-light: rgba(0, 191, 165, 0.1);
  --border-medium: rgba(0, 191, 165, 0.25);
  
  /* Fuentes */
  --font-serif: 'Fraunces', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  
  /* Transiciones estándar */
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  
  /* Alturas */
  --header-height: 90px;
  --header-height-scrolled: 70px;
}

/* Scrollbar personalizado */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: 0.02em;
  overflow-x: hidden;
  position: relative;
}

/* ------------------------------------------------------------
   2. ESTILOS GLOBALES & CLASES DE UTILIDAD
   ------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
}

em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
}

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

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

.label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 1rem 2.2rem;
  border-radius: 0;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn--primary {
  background-color: var(--accent);
  color: var(--bg-primary);
}
.btn--primary:hover {
  background-color: var(--text-primary);
  color: var(--bg-primary);
  transform: translateY(-2px);
}

.btn--outline {
  background-color: transparent;
  border: 1px solid var(--border-medium);
  color: var(--text-primary);
}
.btn--outline:hover {
  background-color: var(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 0.7rem 1.5rem;
  font-size: 0.7rem;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ------------------------------------------------------------
   3. ANIMACIONES DE REVELACIÓN (SCROLL REVEAL)
   ------------------------------------------------------------ */
.reveal-fade,
.reveal-up,
.reveal-scale {
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-scale {
  transform: scale(0.96);
}

.revealed {
  opacity: 1;
  transform: none;
}

[style*="--delay"] {
  transition-delay: var(--delay);
}

/* ------------------------------------------------------------
   4. LOADER DE CARGA ECG
   ------------------------------------------------------------ */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--bg-primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              visibility 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.loader--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.loader__ecg-box {
  width: 150px;
  height: 60px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader__ecg-svg {
  width: 100%;
  height: 100%;
}

.loader__ecg-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw-ecg 3s linear infinite;
}

@keyframes draw-ecg {
  0% { stroke-dashoffset: 1000; }
  100% { stroke-dashoffset: 0; }
}

.loader__text {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  animation: pulse-text 2s ease-in-out infinite;
}

.loader__bar {
  width: 160px;
  height: 1px;
  background-color: var(--border-light);
  overflow: hidden;
  position: relative;
}

.loader__fill {
  height: 100%;
  width: 0%;
  background-color: var(--accent);
  transition: width 0.4s ease-out;
}

@keyframes pulse-text {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* ------------------------------------------------------------
   5. HEADER & NAVEGACIÓN
   ------------------------------------------------------------ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.header--scrolled {
  height: var(--header-height-scrolled);
  background-color: rgba(5, 20, 17, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-light);
}

.nav {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 4rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.nav__links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.nav__link {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 400;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav__link:hover {
  color: var(--text-primary);
}

.nav__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__logo {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
}

.nav__logo-svg {
  transition: var(--transition-smooth);
}

.nav__logo:hover .nav__logo-svg {
  transform: scale(1.08) rotate(-3deg);
}

.nav__logo-text {
  font-family: var(--font-serif);
  font-weight: 600;
}

.nav__icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.8rem;
}

.nav__icon {
  color: var(--text-secondary);
  display: flex;
  align-items: center;
}

.nav__icon svg {
  width: 18px;
  height: 18px;
  transition: var(--transition-fast);
}

.nav__icon:hover svg {
  color: var(--accent);
  transform: scale(1.1);
}

.nav__icon--cta {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: 1px solid var(--border-medium);
  padding: 0.5rem 1.2rem;
  transition: var(--transition-smooth);
}

.nav__icon--cta:hover {
  background-color: var(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  width: 24px;
  height: 20px;
  justify-content: center;
  z-index: 101;
}

.nav__toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--text-primary);
  transition: var(--transition-fast);
}

.nav__toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* Menú Móvil Lateral */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-primary);
  z-index: 95;
  display: flex;
  align-items: center;
  padding: 6rem 4rem;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 1px solid var(--border-light);
}

.mobile-menu[aria-hidden="false"] {
  transform: translateX(0);
}

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}

.mobile-menu__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-menu__link {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--text-primary);
}

.mobile-menu__link:hover {
  color: var(--accent);
  padding-left: 10px;
}

.mobile-menu__footer {
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
  color: var(--text-secondary);
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* ------------------------------------------------------------
   6. HERO SECTION
   ------------------------------------------------------------ */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 4rem;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero__img, .hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 30%, rgba(5, 20, 17, 0.8) 100%),
              linear-gradient(to bottom, rgba(5, 20, 17, 0.4) 0%, rgba(5, 20, 17, 0.9) 100%);
  z-index: 2;
}

.hero__grain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  opacity: 0.03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.hero__tag {
  position: absolute;
  left: 4rem;
  top: calc(var(--header-height) + 2rem);
  z-index: 4;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero__tag-line {
  width: 30px;
  height: 1px;
  background-color: var(--accent);
}

.hero__content {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero__text-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.hero__title {
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  align-items: center;
}

.hero__title-line--accent {
  font-style: italic;
  color: var(--accent);
}

.hero__dot {
  color: var(--text-primary);
  font-style: normal;
}

/* Distintivos de Confianza del Hero */
.hero-trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3.5rem;
}

.hero-trust__item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
}

.hero-trust__item i {
  color: var(--accent);
  font-size: 1.1rem;
}

/* Tarjeta Decorativa Verde del Hero (Rediseño Premium Glassmorphism) */
.hero-deco {
  background: linear-gradient(135deg, rgba(10, 35, 30, 0.75) 0%, rgba(5, 20, 17, 0.9) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: var(--text-primary);
  border: 1px solid rgba(0, 191, 165, 0.2); /* Borde translúcido en menta neón */
  position: relative;
  overflow: hidden;
  text-align: left;
  transition: var(--transition-smooth);
}

.hero-deco:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 191, 165, 0.35);
  box-shadow: 0 30px 60px rgba(0, 191, 165, 0.12);
}

.hero-deco::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 75% 25%, rgba(0, 191, 165, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero-deco__icon-box {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 191, 165, 0.25) 0%, rgba(0, 191, 165, 0.05) 100%);
  border: 1px solid rgba(0, 191, 165, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00bfa5; /* Verde menta neón */
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  box-shadow: 0 8px 20px rgba(0, 191, 165, 0.2);
}

.hero-deco__title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--text-primary);
}

.hero-deco__subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.hero-deco__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem; /* Reducido de 1rem para dar más espacio horizontal */
  border-top: 1px solid rgba(0, 191, 165, 0.25); /* Línea divisoria en menta neón */
  padding-top: 1.8rem;
  margin-top: 0.5rem;
  text-align: center;
}

.hero-deco__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.hero-deco__item:hover {
  transform: translateY(-2px);
  color: #00bfa5;
}

.hero-deco__item i {
  font-size: 1.3rem;
  color: #00bfa5; /* Iconos en verde menta */
}

.hero-deco__item span {
  font-size: 0.62rem; /* Reducido ligeramente de 0.7rem */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em; /* Reducido de 0.05em */
  color: var(--text-secondary);
  white-space: nowrap; /* Fuerza a que se mantenga en una sola línea */
}

/* Responsividad Hero Grid */
@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
    justify-items: center;
    padding-top: 2rem;
  }
  
  .hero__text-col {
    align-items: center;
  }
  
  .hero-trust {
    justify-content: center;
  }
  
  .hero-deco {
    width: 100%;
    max-width: 420px;
  }
}

.hero__sub {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.4rem;
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
  padding: 0.9rem 2.5rem;
  display: inline-block;
  transition: var(--transition-smooth);
}

.hero__sub:hover {
  background-color: var(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
  letter-spacing: 0.5rem;
}

.hero__location {
  position: absolute;
  left: 4rem;
  bottom: 3rem;
  z-index: 4;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
}

.hero__location-sep {
  margin: 0 0.8rem;
  color: var(--accent);
}

/* Botón de control de sonido */
.video-sound-btn {
  position: absolute;
  right: 4rem;
  bottom: 3rem;
  z-index: 4;
  background: transparent;
  border: 1px solid var(--border-medium);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.video-sound-btn:hover {
  background-color: var(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
  transform: scale(1.05);
}

.video-sound-btn svg {
  width: 18px;
  height: 18px;
  position: absolute;
  transition: var(--transition-fast);
}

.video-sound-btn .icon-sound {
  opacity: 0;
  transform: scale(0.8);
}

.video-sound-btn--unmuted .icon-muted {
  opacity: 0;
  transform: scale(0.8);
}

.video-sound-btn--unmuted .icon-sound {
  opacity: 1;
  transform: scale(1);
}

/* Scroll Indicator */
.hero__scroll {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}

.hero__scroll span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

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

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent) 50%, transparent 100%);
  background-size: 100% 200%;
  animation: scroll-line-animate 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes scroll-line-animate {
  0% { background-position: 0% 0%; }
  100% { background-position: 0% -200%; }
}

/* ------------------------------------------------------------
   7. MARQUEE
   ------------------------------------------------------------ */
.marquee-wrap {
  width: 100%;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
  padding: 0.8rem 0;
}

.marquee-track {
  display: flex;
  width: max-content;
}

.marquee-content {
  display: flex;
  white-space: nowrap;
  animation: marquee-scroll 28s linear infinite;
  padding-left: 2rem;
}

.marquee-content span {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
}

.marquee-dot {
  margin: 0 1.5rem;
  color: var(--accent);
  font-size: 1.1rem;
}

@keyframes marquee-scroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

/* ------------------------------------------------------------
   8. MEDIA GRID & SECCIONES VISUALES
   ------------------------------------------------------------ */
.media-grid {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

/* Split Panels (Fila 1 & Fila 5) */
.split-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.split-panel {
  position: relative;
  height: 600px;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.split-panel__media {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.split-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.split-panel__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(5,20,17,0.1) 50%, rgba(5,20,17,0.85) 100%);
  z-index: 2;
  transition: var(--transition-smooth);
}

.split-panel__label {
  position: absolute;
  left: 3rem;
  bottom: 3rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.split-panel__title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  line-height: 1.2;
  color: var(--text-primary);
  max-width: 80%;
}

.split-panel__link {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  align-self: flex-start;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid transparent;
}

/* Hover */
.split-panel:hover .split-panel__media img {
  transform: scale(1.05);
}

.split-panel:hover .split-panel__overlay {
  background: linear-gradient(to bottom, rgba(5,20,17,0.2) 40%, rgba(5,20,17,0.9) 100%);
}

.split-panel:hover .split-panel__link {
  border-bottom-color: var(--accent);
}

/* Category Grid (Fila 2) */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.category-item {
  position: relative;
  height: 380px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: flex-end;
  padding: 2.5rem 2rem;
}

.category-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-item__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(5,20,17,0.2) 0%, rgba(5,20,17,0.85) 100%);
  z-index: 2;
  transition: var(--transition-smooth);
}

.category-item__label {
  position: relative;
  z-index: 3;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--text-primary);
  transition: var(--transition-smooth);
}

.category-item:hover .category-item__img {
  transform: scale(1.08);
}

.category-item:hover .category-item__overlay {
  background: linear-gradient(to bottom, rgba(5,20,17,0.3) 0%, rgba(5,20,17,0.95) 100%);
}

.category-item:hover .category-item__label {
  color: var(--accent);
  transform: translateY(-5px);
}

/* Banner Portafolio (Fila 3) */
.banner {
  position: relative;
  height: 480px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 20, 17, 0.65);
  z-index: 2;
  transition: var(--transition-smooth);
}

.banner__content {
  position: relative;
  z-index: 3;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  padding: 0 2rem;
}

.banner__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.banner__title {
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.banner__cta {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  border: 1px solid var(--border-medium);
  padding: 0.8rem 2.2rem;
  transition: var(--transition-smooth);
}

.banner:hover img {
  transform: scale(1.03);
}

.banner:hover .banner__overlay {
  background-color: rgba(5, 20, 17, 0.75);
}

.banner__cta:hover {
  background-color: var(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
}

/* Editorial (Fila 4) */
.editorial {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.editorial__text {
  max-width: 500px;
}

.editorial__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent);
  display: block;
  margin-bottom: 1.5rem;
}

.editorial__title {
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.editorial__body {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.editorial__cta {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-primary);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 0.5rem;
}

.editorial__cta:hover {
  color: var(--accent);
}

.editorial__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  position: relative;
}

.editorial__img-wrap {
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.editorial__img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial__img-wrap:last-child {
  transform: translateY(3rem);
}

.editorial__img-wrap:hover img {
  transform: scale(1.05);
}

/* Cinematic Strip (Fila 6) */
.cinematic-strip {
  display: grid;
  grid-template-columns: 0.7fr 1.6fr 0.7fr;
  gap: 1.5rem;
  height: 520px;
}

.cinematic-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.cinematic-panel img, .cinematic-panel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cinematic-panel--video {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cinematic-panel__label {
  position: absolute;
  left: 3rem;
  bottom: 3rem;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: calc(100% - 6rem);
  color: var(--text-primary);
}

.cinematic-panel__label span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.cinematic-panel__label a {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 0.2rem;
  color: var(--accent);
}

.cinematic-panel__label a:hover {
  color: var(--text-primary);
  border-bottom-color: var(--text-primary);
}

.video-sound-btn--cinema {
  bottom: auto;
  top: 3rem;
}

/* ------------------------------------------------------------
   9. ESTUDIO / PLATAFORMA
   ------------------------------------------------------------ */
.studio {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 8rem 4rem;
}

.studio__container {
  max-width: 1200px;
  margin: 0 auto;
}

.studio__header {
  margin-bottom: 5rem;
}

.studio__title {
  font-size: 3.8rem;
  font-weight: 300;
  line-height: 1.15;
}

.studio__split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: flex-start;
  margin-bottom: 6rem;
}

.studio__intro {
  font-size: 1.3rem;
  color: var(--accent);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.studio__body {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.studio__image-block {
  display: flex;
  justify-content: flex-end;
}

.studio__img-frame {
  width: 100%;
  max-width: 440px;
  position: relative;
  border: 1px solid var(--border-light);
  padding: 1.5rem;
  background-color: var(--bg-primary);
}

.studio__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.studio__img-caption {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
  margin-top: 1.2rem;
  text-align: center;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  border-top: 1px solid var(--border-light);
  padding-top: 5rem;
}

.team-card {
  display: flex;
  flex-direction: column;
}

.team-card__number {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.team-card__name {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}

.team-card__role {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.team-card__bio {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.7;
}

/* ------------------------------------------------------------
   10. SERVICIOS
   ------------------------------------------------------------ */
.services {
  padding: 8rem 4rem;
}

.services__container {
  max-width: 1200px;
  margin: 0 auto;
}

.services__header {
  margin-bottom: 6rem;
}

.services__title {
  font-size: 3.8rem;
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 2rem;
}

.services__intro {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.7;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.service-item {
  border-top: 1px solid var(--border-light);
  padding-top: 4rem;
  padding-bottom: 1rem;
}

.service-item__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.service-item--reverse .service-item__inner {
  grid-template-columns: 0.9fr 1.1fr;
}

.service-item--reverse .service-item__info {
  order: 2;
}

.service-item--reverse .service-item__image {
  order: 1;
}

.service-item__info {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.service-item__num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--accent);
  line-height: 1;
}

.service-item__body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-item__title {
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--text-primary);
}

.service-item__desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-item__cta {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  align-self: flex-start;
  border-bottom: 1px solid transparent;
  padding-bottom: 0.2rem;
}

.service-item__cta:hover {
  border-bottom-color: var(--accent);
  color: var(--text-primary);
}

.service-item__image {
  position: relative;
  height: 400px;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.service-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-item__img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 20, 17, 0.2);
  transition: var(--transition-smooth);
}

.service-item:hover .service-item__image img {
  transform: scale(1.06);
}

.service-item:hover .service-item__img-overlay {
  background-color: rgba(5, 20, 17, 0.1);
}

/* ------------------------------------------------------------
   11. PORTAFOLIO / APLICACIÓN MOCKUPS
   ------------------------------------------------------------ */
.portfolio {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 8rem 4rem;
}

.portfolio__container {
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio__header {
  margin-bottom: 5rem;
}

.portfolio__title {
  font-size: 3.8rem;
  font-weight: 300;
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.portfolio__item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.portfolio__img-wrap {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.portfolio__img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio__item--large .portfolio__img-wrap img {
  height: 600px;
}

.portfolio__item--wide {
  grid-column: span 2;
}

.portfolio__item--wide .portfolio__img-wrap img {
  height: 520px;
}

.portfolio__hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(5,20,17,0.2) 40%, rgba(5,20,17,0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem;
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 2;
}

.portfolio__hover-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  transform: translateY(15px);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio__hover-sub {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  transform: translateY(20px);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.05s;
}

.portfolio__item:hover .portfolio__img-wrap img {
  transform: scale(1.05);
}

.portfolio__item:hover .portfolio__hover {
  opacity: 1;
}

.portfolio__item:hover .portfolio__hover-title,
.portfolio__item:hover .portfolio__hover-sub {
  transform: translateY(0);
}

.portfolio__note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ------------------------------------------------------------
   12. MANIFIESTO
   ------------------------------------------------------------ */
.manifesto {
  padding: 10rem 4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(0, 191, 165, 0.03) 0%, transparent 70%);
}

.manifesto__container {
  max-width: 800px;
}

.manifesto__quote {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 2rem;
  position: relative;
}

.manifesto__open, .manifesto__close {
  color: var(--accent);
  font-size: 5rem;
  line-height: 0;
  display: inline-block;
  vertical-align: middle;
}

.manifesto__open {
  margin-right: 0.5rem;
}

.manifesto__close {
  margin-left: 0.5rem;
}

.manifesto__cite {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-secondary);
}

/* ------------------------------------------------------------
   13. CONTACTO & CALENDARIO
   ------------------------------------------------------------ */
.contact {
  padding: 8rem 4rem;
  border-top: 1px solid var(--border-light);
}

.contact__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact__left {
  max-width: 900px;
  width: 100%;
  text-align: center;
}

.contact__title {
  font-size: 3.8rem;
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 2rem;
}

.contact__body {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 3.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact__channels {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  justify-content: center;
}

.contact__channel {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
  flex: 1;
  text-align: left;
}

.contact__channel:hover {
  border-color: var(--accent);
  transform: translateX(5px);
}

.contact__channel-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-right: 1.5rem;
  border: 1px solid var(--border-light);
}

.contact__channel-icon svg {
  width: 20px;
  height: 20px;
}

.contact__channel--wa:hover .contact__channel-icon {
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.4);
}

.contact__channel-text {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.contact__channel-label {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.2rem;
}

.contact__channel-sub {
  color: var(--text-secondary);
  font-size: 0.8rem;
}

.contact__channel-arrow {
  font-size: 1.2rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.contact__channel:hover .contact__channel-arrow {
  color: var(--accent);
  transform: translateX(3px);
}

.contact__locations {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

.contact__loc-sep {
  margin: 0 0.8rem;
  color: var(--accent);
}

/* Calendario */
.contact__calendar {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  padding: 2.5rem;
  position: relative;
}

.contact__calendar-header {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}

.contact__calendar-header span {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--text-primary);
  display: block;
}

.contact__calendar-sub {
  font-family: var(--font-sans) !important;
  font-size: 0.75rem !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent) !important;
  margin-top: 0.4rem;
}

.contact__calendly-fallback {
  display: none;
  min-height: 400px;
  align-items: center;
  justify-content: center;
}

.contact__calendly-placeholder {
  text-align: center;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.contact__cal-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(0, 191, 165, 0.05);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.contact__cal-icon svg {
  width: 24px;
  height: 24px;
}

.contact__calendly-placeholder h4 {
  font-size: 1.3rem;
  color: var(--text-primary);
}

.contact__calendly-placeholder p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.calendly-error .calendly-inline-widget {
  display: none !important;
}

.calendly-error .contact__calendly-fallback {
  display: flex !important;
}

/* ------------------------------------------------------------
   14. FOOTER
   ------------------------------------------------------------ */
.footer {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-light);
  padding: 6rem 4rem 3rem;
}

.footer__top {
  max-width: 1200px;
  margin: 0 auto 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.5fr;
  gap: 4rem;
}

.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer__nav-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.footer__nav-col a {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.footer__nav-col a:hover {
  color: var(--text-primary);
  transform: translateX(3px);
}

.footer__newsletter {
  max-width: 320px;
}

.footer__newsletter-text {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.footer__newsletter-form {
  display: flex;
  border-bottom: 1px solid var(--border-medium);
  padding-bottom: 0.5rem;
  transition: var(--transition-fast);
}

.footer__newsletter-form:focus-within {
  border-bottom-color: var(--accent);
}

.footer__newsletter-input {
  background: transparent;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-primary);
  width: 100%;
  outline: none;
}

.footer__newsletter-input::placeholder {
  color: var(--text-muted);
}

.footer__newsletter-btn {
  background: transparent;
  border: none;
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  padding-left: 1rem;
}

.footer__newsletter-btn:hover {
  color: var(--text-primary);
}

.footer__brand {
  max-width: 1200px;
  margin: 0 auto 3rem;
  border-top: 1px solid var(--border-light);
  padding-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.footer__address {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* ------------------------------------------------------------
   15. BOTÓN FLOTANTE DE WHATSAPP
   ------------------------------------------------------------ */
.wa-float {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  z-index: 90;
  transition: var(--transition-smooth);
}

.wa-float svg {
  width: 24px;
  height: 24px;
}

.wa-float:hover {
  transform: translateY(-4px) scale(1.05);
  background-color: #1ebea5;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

/* ------------------------------------------------------------
   16. MEDIA QUERIES
   ------------------------------------------------------------ */

@media (max-width: 1440px) {
  .nav { padding: 0 2rem; }
  .hero { padding: 0 2rem; }
  .hero__tag { left: 2rem; }
  .hero__location { left: 2rem; }
  .video-sound-btn { right: 2rem; }
  .media-grid { padding: 6rem 2rem; }
  .studio { padding: 8rem 2rem; }
  .services { padding: 8rem 2rem; }
  .portfolio { padding: 8rem 2rem; }
  .footer { padding: 6rem 2rem 3rem; }
}

@media (max-width: 1024px) {
  :root {
    --header-height: 80px;
  }
  
  .nav {
    grid-template-columns: auto 1fr;
  }
  
  .nav__links {
    display: none;
  }
  
  .nav__icons {
    display: flex;
    justify-content: flex-end;
    margin-right: 1.5rem;
  }
  
  .nav__toggle {
    display: flex;
  }
  
  .hero__title {
    font-size: 8vw;
  }
  
  .split-panels {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .split-panel {
    height: 480px;
  }
  
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .editorial {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .editorial__text {
    max-width: 100%;
  }
  
  .editorial__images {
    margin-top: 1rem;
  }
  
  .cinematic-strip {
    grid-template-columns: 1fr;
    height: auto;
  }
  
  .cinematic-panel {
    height: 300px;
  }
  
  .cinematic-panel--video {
    height: 450px;
    order: -1;
  }
  
  .studio__split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .studio__image-block {
    justify-content: center;
  }
  
  .studio__img-frame {
    max-width: 100%;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 4rem;
  }
  
  .service-item__inner,
  .service-item--reverse .service-item__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .service-item--reverse .service-item__info {
    order: 1;
  }
  
  .service-item--reverse .service-item__image {
    order: 2;
  }
  
  .contact__container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .footer__top {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  
  .footer__newsletter {
    max-width: 100%;
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .hero__title {
    font-size: 11vw;
  }
  
  .hero__tag {
    display: none;
  }
  
  .hero__location {
    bottom: 2rem;
  }
  
  .video-sound-btn {
    bottom: 2.2rem;
    width: 38px;
    height: 38px;
  }
  
  .video-sound-btn svg {
    width: 14px;
    height: 14px;
  }
  
  .split-panel__title {
    font-size: 1.8rem;
  }
  
  .category-grid {
    grid-template-columns: 1fr;
  }
  
  .category-item {
    height: 300px;
  }
  
  .banner {
    height: 360px;
  }
  
  .banner__title {
    font-size: 2.2rem;
  }
  
  .editorial__title,
  .studio__title,
  .services__title,
  .portfolio__title,
  .contact__title {
    font-size: 2.5rem;
  }
  
  .portfolio__grid {
    grid-template-columns: 1fr;
  }
  
  .portfolio__item--wide {
    grid-column: span 1;
  }
  
  .portfolio__img-wrap img,
  .portfolio__item--large .portfolio__img-wrap img,
  .portfolio__item--wide .portfolio__img-wrap img {
    height: 360px;
  }
  
  .manifesto__quote {
    font-size: 2rem;
  }
  
  .manifesto__open, .manifesto__close {
    font-size: 3rem;
  }
  
  .contact__calendar {
    padding: 1.5rem;
  }
  
  .footer__brand {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }
  
  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .contact__channels {
    flex-direction: column;
  }
}
