/* ===========================
   LUNGO DIGITAL MARKETING
   style.css
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* --- VARIABLES --- */
:root {
  --black:  #0A0A0A;
  --white:  #FFFFFF;
  --cream:  #F5F2ED;
  --blue:   #2A62F3;
  --gray:   #6B6B6B;
  --gray-light: #C9C9C9;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --nav-height: 72px;
  --max-width:  1280px;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* --- NAVIGATION --- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}
nav.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
}
.nav-logo img {
  height: 32px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.8;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }
.nav-links a.active { opacity: 1; color: var(--blue); }
.nav-cta {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--blue);
  padding: 10px 22px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: #1a4fd4; transform: translateY(-1px); }

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 48px;
  overflow: hidden;
  background: var(--black);
}
/* VIDEO BACKGROUND */
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
/* Desktop: muestra horizontal, oculta vertical */
.hero-video-desktop {
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
}
.hero-video-mobile {
  display: none;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,10,10,0.88) 0%,
    rgba(10,10,10,0.65) 50%,
    rgba(10,10,10,0.25) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding-top: var(--nav-height);
}
.hero-tag {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(52px, 6.5vw, 96px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--blue);
}
.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray-light);
  max-width: 540px;
  margin-bottom: 52px;
}
.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}
.btn-primary {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--white);
  padding: 16px 36px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.btn-primary:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-secondary {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-light);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s;
}
.btn-secondary:hover { color: var(--white); }
.btn-secondary::after {
  content: '→';
  font-size: 14px;
  transition: transform 0.2s;
}
.btn-secondary:hover::after { transform: translateX(4px); }

.hero-shape {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: min(620px, 55vw);
  mix-blend-mode: screen;
  animation: floatShape 6s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.95;
}
@keyframes floatShape {
  0%, 100% { transform: translateY(-50%) rotate(0deg); }
  33%       { transform: translateY(calc(-50% - 20px)) rotate(3deg); }
  66%       { transform: translateY(calc(-50% + 10px)) rotate(-2deg); }
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}
.hero-scroll::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gray);
}

/* --- TICKER --- */
.ticker {
  background: var(--blue);
  overflow: hidden;
  padding: 14px 0;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 22s linear infinite;
  white-space: nowrap;
}
.ticker-track span {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 32px;
  flex-shrink: 0;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --- SECTION COMMONS --- */
.section {
  padding: 120px 48px;
}
.section-cream { background: var(--cream); color: var(--black); }
.section-white { background: var(--white); color: var(--black); }
.section-dark  { background: var(--black); color: var(--white); }

.section-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
}
.section-title em { font-style: italic; }
.section-body {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--gray);
  max-width: 560px;
}
.section-dark .section-body { color: var(--gray-light); }

/* --- INTRO / SERVICIOS --- */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}
.intro-shape {
  position: relative;
  display: flex;
  justify-content: center;
}
.intro-shape img {
  width: 420px;
  mix-blend-mode: multiply;
  filter: invert(1);
  animation: floatShape2 7s ease-in-out infinite;
}
@keyframes floatShape2 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}
.servicios-list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.servicio-item {
  padding: 20px 0;
  border-top: 1px solid #00000015;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 10px;
}
.servicio-item::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

/* --- PHONE CAROUSEL (10 phones) --- */

/* --- REDES / PHONE MOCKUPS --- */
.redes-section {
  background: var(--cream);
  padding: 120px 0;
  overflow: hidden;
}
.redes-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}
.redes-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}

.redes-section .section-title { color: var(--black); }

/* CAROUSEL */
.phones-carousel-wrap {
  position: relative;
}
.carousel-arrow {
  position: absolute;
  bottom: -52px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(10,10,10,0.25);
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  line-height: 1;
}
.carousel-arrow:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  transform: scale(1.08);
}
.carousel-arrow:active { transform: scale(0.96); }
.carousel-arrow.disabled { opacity: 0.3; pointer-events: none; }
.carousel-arrow-left  { left: 80px; }
.carousel-arrow-right { left: 136px; }
.phones-carousel {
  display: flex;
  gap: 20px;
  align-items: center;
  overflow-x: auto;
  padding: 24px 48px 40px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.phones-carousel::-webkit-scrollbar { display: none; }
.phones-carousel.grabbing { cursor: grabbing; }

.phones-container {
  display: flex;
  justify-content: center;
  gap: 28px;
  align-items: center;
}

/* VIDEO TILES */
.video-tile {
  position: relative;
  width: 220px;
  height: 390px;
  flex-shrink: 0;
  scroll-snap-align: start;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
  transition: transform 0.3s ease;
}
.video-tile:hover { transform: translateY(-6px); }

.video-tile iframe,
.video-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  display: block;
}
.tile-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.tile-num {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 300;
  color: #222;
  line-height: 1;
}
.tile-play {
  width: 40px;
  height: 40px;
  border: 1px solid #2A2A2A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tile-play::after {
  content: '';
  display: block;
  width: 0; height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 11px solid #333;
  margin-left: 3px;
}

/* --- CLIENTES --- */
.clientes-section {
  background: var(--white);
  padding: 100px 48px;
}
.clientes-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.clientes-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}
.clientes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.cliente-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 52px;
  min-height: 220px;
  background: var(--white);
  border: 0.5px solid #E8E8E8;
  transition: background 0.2s;
}
.cliente-item:hover { background: #F9F9F9; }
.cliente-item img {
  max-height: 240px;
  max-width: 80%;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.6;
  transition: opacity 0.2s, filter 0.2s;
}
.cliente-item:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* Placeholder while logos aren't ready */
.cliente-placeholder {
  width: 80px;
  height: 28px;
  background: #222;
  border-radius: 2px;
  opacity: 0.4;
}

/* --- CTA SECTION --- */
.cta-section {
  background: var(--blue);
  padding: 100px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section .section-title {
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 20px;
}
.cta-section .section-body {
  color: rgba(255,255,255,0.75);
  margin: 0 auto 48px;
  max-width: 480px;
}
.btn-white {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--white);
  padding: 18px 44px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}
.btn-white:hover { background: var(--black); color: var(--white); transform: translateY(-2px); }
.cta-shape {
  position: absolute;
  right: -40px;
  bottom: -60px;
  width: 300px;
  mix-blend-mode: screen;
  opacity: 0.25;
  pointer-events: none;
}
.cta-shape-left {
  position: absolute;
  left: -60px;
  top: -40px;
  width: 260px;
  mix-blend-mode: screen;
  opacity: 0.2;
  pointer-events: none;
  transform: scaleX(-1);
}

/* --- FOOTER --- */
footer {
  background: var(--black);
  padding: 64px 48px 40px;
  border-top: 1px solid #1A1A1A;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-logo img { height: 28px; margin-bottom: 20px; }
.footer-tagline {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--gray-light);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid #1A1A1A;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.05em;
}

/* --- ABOUT PAGE --- */
.about-hero {
  min-height: 60vh;
  background: var(--black);
  display: flex;
  align-items: flex-end;
  padding: 0 48px 80px;
  padding-top: calc(var(--nav-height) + 60px);
  position: relative;
  overflow: hidden;
}
.about-hero-inner {
  max-width: var(--max-width);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.about-shape {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  mix-blend-mode: screen;
  opacity: 0.8;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 60px;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}
.value-card {
  background: var(--white);
  padding: 40px 36px;
}
.value-number {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 16px;
}
.value-title {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 12px;
}
.value-text {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

/* --- AGENDA PAGE --- */
.agenda-hero {
  min-height: 45vh;
  background: var(--black);
  display: flex;
  align-items: flex-end;
  padding: 0 48px 80px;
  padding-top: calc(var(--nav-height) + 60px);
}
.agenda-section {
  background: var(--cream);
  padding: 80px 48px 120px;
}
.agenda-inner {
  max-width: 900px;
  margin: 0 auto;
}
.calendly-embed {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  min-height: 700px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.08);
}

/* --- FADE IN ANIMATIONS --- */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }
.fade-up-delay-6 { transition-delay: 0.6s; }

/* --- HAMBURGER --- */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 200;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu overlay */
.nav-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.98);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  backdrop-filter: blur(12px);
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-mobile-menu a:hover { color: var(--blue); }
.nav-mobile-menu .nav-mobile-cta {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--blue);
  padding: 14px 32px;
  border-radius: 2px;
  font-style: normal;
  font-size: 12px;
  margin-top: 20px;
}

/* --- PLATAFORMAS --- */
.plataformas-section {
  background: var(--cream);
  padding: 80px 80px;
}
.plataformas-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.plataformas-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 56px;
  margin-top: 48px;
}
.plataforma-item img {
  height: 32px;
  width: auto;
  opacity: 0.5;
  transition: opacity 0.25s ease;
  display: block;
}
.plataforma-item:hover img {
  opacity: 1;
}

/* --- TEAM HOVER EFFECT --- */
.team-name {
  display: inline-block;
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
}
.team-name.highlight { transform: scale(1.65); color: var(--blue); }
.team-hotspot {
  position: absolute;
  border-radius: 50%;
  cursor: default;
}

/* --- RESPONSIVE TABLET --- */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: 0 24px; }
  .hero-shape { display: none; }
  .section { padding: 80px 24px; }
  .intro { grid-template-columns: 1fr; gap: 40px; }
  .intro-shape { display: none; }
  .redes-section { padding: 80px 0; }
  .redes-inner { padding: 0 24px; }
  .redes-header { grid-template-columns: 1fr; }
  .phones-carousel { padding: 24px 24px 40px; }
  .video-tile { width: 160px; height: 284px; }
  .clientes-section { padding: 80px 24px; }
  .clientes-grid { grid-template-columns: repeat(2, 1fr); }
  .clientes-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cliente-item { padding: 28px 20px; min-height: 140px; }
  .cliente-item img { max-height: 80px; }
  .cta-section { padding: 80px 24px; }
  footer { padding: 48px 24px 32px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .about-hero { padding: 0 24px 60px; }
  .about-hero-inner { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .agenda-hero { padding: 0 24px 60px; }
  .agenda-section { padding: 60px 24px 80px; }
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 768px) {
  :root { --nav-height: 60px; }

  /* NAV */
  nav { padding: 0 20px; height: var(--nav-height); }
  .nav-logo img { height: 26px; }

  /* HERO */
  .hero {
    padding: 0;
    min-height: 100svh;
    aspect-ratio: unset;
    max-height: unset;
    overflow: hidden;
  }
  /* Mobile: oculta horizontal, muestra vertical */
  .hero-video-desktop { display: none; }
  .hero-video-mobile {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    height: 100svh;
    width: 75svh;       /* 3:4 ratio × 100svh — llena alto completo */
    transform: translate(-50%, -50%);
    border: none;
    pointer-events: none;
  }
  .hero-video-overlay {
    background: linear-gradient(
      to bottom,
      rgba(10,10,10,0.15) 0%,
      rgba(10,10,10,0.75) 100%
    );
  }
  .hero-content {
    padding-top: var(--nav-height);
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 60px;
  }
  .hero-title { font-size: clamp(28px, 8vw, 40px); }
  .hero-subtitle { font-size: 13px; line-height: 1.6; margin-bottom: 32px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
  .btn-primary { width: 100%; text-align: center; padding: 16px 24px; }
  .hero-scroll { display: none; }

  /* SECCIONES */
  .section { padding: 64px 20px; }
  .section-title { font-size: clamp(32px, 8vw, 48px); }
  .servicios-list { grid-template-columns: 1fr 1fr; }
  .intro-text .section-body { font-size: 14px; line-height: 1.65; }

  /* TICKER */
  .ticker-track span { padding: 0 20px; font-size: 10px; }

  /* CAROUSEL */
  .redes-section { padding: 64px 0; }
  .redes-inner { padding: 0 20px; }
  .redes-header { grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px; }
  .phones-carousel { padding: 16px 20px 32px; gap: 12px; }
  .video-tile { width: 140px; height: 248px; border-radius: 6px; }
  .carousel-arrow-left  { left: 20px; }
  .carousel-arrow-right { left: 76px; }

  /* PLATAFORMAS */
  .plataformas-section { padding: 56px 20px; }
  .plataformas-grid { gap: 28px; }
  .plataforma-item img { height: 22px; }
  .plataforma-item img { opacity: 1; }                           /* siempre a color en mobile */
  .plataforma-item:nth-child(2) img { height: 16px !important; } /* Metricool -40% */
  .plataforma-item:nth-child(4) img { height: 44px !important; } /* Google Ads +100% */
  .plataforma-item:nth-child(5) img { height: 29px !important; } /* Claude +30% */

  /* CLIENTES */
  .clientes-section { padding: 64px 20px; }
  .clientes-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; }
  .clientes-header { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 40px; }
  .cliente-item { padding: 24px 16px; min-height: 120px; }
  .cliente-item img { max-height: 120px; max-width: 90%; filter: grayscale(0); opacity: 1; }

  /* EQUIPO (sección home e index) */
  .team-section-home {
    grid-template-columns: 1fr !important;
    padding: 40px 20px 0 !important;
    gap: 0 !important;
  }
  .team-section-home > div:last-child { display: none; }
  .team-section-home .team-label { text-align: center; }
  .team-section-home .team-names { align-items: center; text-align: center; }
  #home-name-rafa, #home-name-cami, #home-name-ainhoa { transform-origin: center center; }

  /* CTA */
  .cta-section { padding: 64px 20px; }
  .cta-section .section-body { font-size: 14px; }
  .btn-white { padding: 16px 32px; font-size: 11px; }

  /* FOOTER */
  footer { padding: 48px 20px 32px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; margin-bottom: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* QUIENES SOMOS — team hero */
  .team-hero {
    grid-template-columns: 1fr !important;
    padding: calc(var(--nav-height) + 24px) 20px 40px !important;
    gap: 0 !important;
    justify-items: center;
  }
  .team-hero > div:last-child { display: none; }
  .team-hero-left { align-items: center; text-align: center; padding-bottom: 20px; }
  .team-photo-wrap { justify-content: center; }
  .team-photo { width: 280px !important; }

  /* QUIENES SOMOS — member cards */
  .team-members { padding: 64px 20px !important; }
  .team-members-grid { grid-template-columns: 1fr !important; gap: 2px; }
  .member-card { padding: 32px 24px !important; }
  .team-members-header { margin-bottom: 40px; }

  /* TEAM INTRO */
  .team-intro { padding: 64px 20px !important; }
  .team-intro-inner { grid-template-columns: 1fr !important; gap: 40px !important; }
  .team-intro-left { position: static !important; }

  /* AGENDA */
  .agenda-hero { padding: 0 20px 48px; padding-top: calc(var(--nav-height) + 40px); }
  .agenda-section { padding: 48px 20px 80px; }
}
