/* ==========================================================================
   ANDREA SOLO — landing de portfolio
   Paleta: beige/crema cálido + verde pistacho pastel + marrón carbón.
   Tipografías: Fraunces (titulares) + Manrope (texto).
   ========================================================================== */

:root {
  --bg: #F6F1E6;
  --bg-soft: #FFFCF5;
  --card: #FFFDF8;
  --pistachio: #C7DAB2;
  --pistachio-deep: #55703F;
  --ink: #372E26;
  --ink-soft: #726251;
  --ink-faint: #9A8B79;
  --tan: #D8C1A0;
  --olive-pale: #E7EAD9;
  --dusty-pink: #EAD7D1;
  --dusty-pink-deep: #C06C87;
  --pastel-yellow: #F0DA9E;
  --sand: #E3D4B0;
  --line: #E3D7C4;
  --shadow-sm: 0 1px 2px rgba(55, 46, 38, .05);
  --shadow-md: 0 10px 30px -14px rgba(55, 46, 38, .28);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --header-h: 76px;
  --max: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; }
h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
p { margin: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 2px solid var(--dusty-pink-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--ink); color: var(--bg-soft);
  padding: 12px 18px; border-radius: 0 0 10px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

.section-inner { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }
@media (max-width: 760px) { section { padding: 64px 0; } }

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.section-sub { margin-top: 14px; color: var(--ink-soft); font-size: 1.05rem; line-height: 1.6; }
.section-highlight {
  margin-top: 18px; font-family: "Fraunces", serif; font-style: italic; font-weight: 480;
  font-size: 1.2rem; color: var(--pistachio-deep);
}
.section-close {
  text-align: center; margin-top: 48px; font-family: "Fraunces", serif; font-style: italic;
  font-weight: 480; font-size: 1.25rem; color: var(--ink);
}
.eyebrow {
  display: inline-block; font-size: .74rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--dusty-pink-deep); margin-bottom: 14px;
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Manrope", sans-serif; font-weight: 700; font-size: .92rem;
  padding: 14px 26px; border-radius: 100px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--dusty-pink-deep); color: var(--bg-soft); }
.btn-primary:hover { background: var(--dusty-pink-deep); filter: brightness(0.9); color: var(--bg-soft); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--bg-soft); }
.btn-sm { padding: 9px 18px; font-size: .82rem; }

/* ============================ HEADER ============================ */
.site-header {
  position: sticky; top: 0; z-index: 200; height: var(--header-h);
  background: rgba(246, 241, 230, .88); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--max); margin: 0 auto; height: 100%; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.logo-mark { font-family: "Fraunces", serif; font-weight: 600; font-size: 1.2rem; letter-spacing: .01em; }

.main-nav ul { display: flex; gap: 30px; }
.nav-link {
  font-size: .92rem; font-weight: 600; color: var(--ink-soft); position: relative; padding: 6px 0;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--dusty-pink-deep);
  transition: right .25s ease;
}
.nav-link:hover, .nav-link.active { color: var(--ink); }
.nav-link:hover::after, .nav-link.active::after { right: 0; }

.btn-nav-cta { flex-shrink: 0; }

.menu-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: none; border: none; cursor: pointer;
}
.menu-toggle span { width: 22px; height: 2px; background: var(--ink); transition: transform .25s ease, opacity .25s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .main-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    height: calc(100vh - var(--header-h)); height: calc(100dvh - var(--header-h));
    background: var(--bg-soft);
    transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .25s ease, transform .25s ease;
    overflow-y: auto; z-index: 190;
  }
  .main-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .main-nav ul { flex-direction: column; gap: 4px; padding: 28px 24px; }
  .nav-link { display: block; padding: 14px 4px; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
  .btn-nav-cta { display: none; }
  .menu-toggle { display: flex; }
}

/* ============================ HERO ============================ */
.hero { padding-top: 64px; }
.hero-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.hero-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.hero-chips span {
  font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  background: var(--dusty-pink-deep); color: var(--bg-soft); padding: 6px 13px; border-radius: 100px;
}
.hero-chips span:nth-child(4n+2) { background: var(--pastel-yellow); color: var(--ink); }
.hero-chips span:nth-child(4n+3) { background: var(--pistachio); color: var(--ink); }
.hero-chips span:nth-child(4n) { background: var(--sand); color: var(--ink); }
.hero-chips span.tag-green { background: var(--pistachio); color: var(--ink); }
.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.3rem); letter-spacing: .02em; line-height: 1;
}
.hero-role { margin-top: 12px; font-weight: 700; color: var(--dusty-pink-deep); font-size: 1.08rem; }
.hero-quote {
  margin-top: 26px; font-family: "Fraunces", serif; font-style: italic; font-weight: 460;
  font-size: clamp(1.3rem, 2.6vw, 1.75rem); max-width: 20ch; line-height: 1.3;
}
.hero-quote .scribble {
  text-decoration: underline wavy var(--dusty-pink);
  text-decoration-thickness: 2.5px;
  text-underline-offset: 5px;
}
.hero-copy { margin-top: 18px; max-width: 46ch; color: var(--ink-soft); font-size: 1.02rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-socials { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 32px; }
.hero-socials a { font-size: .86rem; font-weight: 700; color: var(--ink-soft); border-bottom: 1px solid transparent; }
.hero-socials a:hover { color: var(--ink); border-color: var(--dusty-pink-deep); }

.hero-media { position: relative; width: 100%; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.hero-media img, .hero-media video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}

/* Variante de portada con vídeo horizontal a pantalla completa y texto superpuesto */
.hero--fullbleed {
  position: relative; padding-top: 0; overflow: hidden;
  min-height: min(92vh, 820px); display: flex; align-items: flex-end;
}
.hero--fullbleed .hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero--fullbleed .hero-bg video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero--fullbleed .hero-bg-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,16,15,.12) 0%, rgba(20,16,15,.45) 60%, rgba(20,16,15,.72) 100%);
}
.hero--fullbleed .hero-inner {
  position: relative; z-index: 1; display: block; width: 100%;
  padding-top: 140px; padding-bottom: 72px;
}
.hero--fullbleed .hero-text { max-width: 640px; }
.hero--fullbleed .hero-title,
.hero--fullbleed .hero-copy,
.hero--fullbleed .hero-quote { color: var(--bg-soft); }
.hero--fullbleed .hero-role { color: var(--dusty-pink); }
.hero--fullbleed .hero-quote .scribble { text-decoration-color: var(--dusty-pink); }
.hero--fullbleed .hero-socials a { color: rgba(253, 250, 244, .82); }
.hero--fullbleed .hero-socials a:hover { color: var(--bg-soft); border-color: var(--dusty-pink); }
.hero--fullbleed .btn-outline { color: var(--bg-soft); border-color: rgba(253, 250, 244, .6); }
.hero--fullbleed .btn-outline:hover { background: var(--bg-soft); color: var(--ink); }
@media (max-width: 640px) {
  /* En móvil, un vídeo panorámico a pantalla completa se recorta demasiado
     (mucho zoom, poca legibilidad). En su lugar: el vídeo como banda superior
     con su proporción natural, y el texto debajo en flujo normal, como en la
     portada de foto de siempre. */
  .hero--fullbleed { display: block; min-height: 0; padding-top: 0; }
  .hero--fullbleed .hero-bg { position: relative; aspect-ratio: 16 / 10; }
  .hero--fullbleed .hero-bg-scrim { display: none; }
  .hero--fullbleed .hero-inner { position: static; padding-top: 32px; padding-bottom: 0; }
  .hero--fullbleed .hero-text { max-width: none; }
  .hero--fullbleed .hero-title,
  .hero--fullbleed .hero-copy,
  .hero--fullbleed .hero-quote { color: var(--ink); }
  .hero--fullbleed .hero-role { color: var(--dusty-pink-deep); }
  .hero--fullbleed .hero-socials a { color: var(--ink-soft); }
  .hero--fullbleed .hero-socials a:hover { color: var(--ink); border-color: var(--dusty-pink-deep); }
  .hero--fullbleed .btn-outline { color: var(--ink); border-color: var(--ink); }
  .hero--fullbleed .btn-outline:hover { background: var(--ink); color: var(--bg-soft); }
}

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-media { order: -1; width: 100%; max-width: 420px; margin: 0 auto; }
}

/* ============================ MARCAS (carrusel) ============================ */
.brands { padding-top: 72px; padding-bottom: 72px; }
.brands-marquee {
  margin-top: 40px; overflow: hidden; position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.brands-track {
  display: flex; align-items: stretch; gap: 18px; width: max-content;
  animation: marquee 46s linear infinite;
}
/* La pausa al pasar el ratón solo se activa en dispositivos con hover real
   (ratón). En móvil/táctil, un toque no dispara "mouseleave" y el carrusel
   se quedaba parado para siempre — con este media query no ocurre. */
@media (hover: hover) and (pointer: fine) {
  .brands-marquee:hover .brands-track,
  .brands-marquee:focus-within .brands-track { animation-play-state: paused; }
  .brand-tile:hover img, .brand-tile:focus-within img { filter: grayscale(0) opacity(1); }
}
/* En táctil (móvil), el mismo efecto lo controla JS (ver initBrandTouch en
   main.js): al tocar un logo se añaden estas clases un momento y luego se
   quitan solas, para que el carrusel siga corriendo después. */
.brands-marquee.is-paused .brands-track { animation-play-state: paused; }
.brand-tile.is-active img { filter: grayscale(0) opacity(1); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.brand-tile {
  flex-shrink: 0; width: 168px; height: 92px; background: var(--bg-soft);
  border: 1px solid var(--line); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; padding: 18px;
}
.brand-tile img {
  max-width: 100%; max-height: 100%; object-fit: contain;
  filter: grayscale(1) opacity(.55); transition: filter .25s ease;
}
.brand-tile-empty {
  flex-shrink: 0; width: 168px; height: 92px; border: 1.5px dashed var(--line); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-size: .74rem; color: var(--ink-faint); font-weight: 700; padding: 10px;
}

/* ============================ SOBRE MÍ ============================ */
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: center; }
.about-media { position: relative; width: 100%; aspect-ratio: 3/4; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.about-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.about-text p { color: var(--ink-soft); margin-top: 14px; max-width: 58ch; }
.about-text h2 { margin-top: 4px; }
.about-text .about-location { margin-top: 8px; font-weight: 600; color: var(--dusty-pink-deep); font-size: .9rem; }
.about-highlights {
  margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px;
}
.about-highlights li {
  font-size: .8rem; font-weight: 700; color: var(--bg-soft); padding: 8px 16px; border-radius: 100px;
  background: var(--dusty-pink-deep);
}
.about-highlights li:nth-child(4n+2) { background: var(--pastel-yellow); color: var(--ink); }
.about-highlights li:nth-child(4n+3) { background: var(--pistachio); color: var(--ink); }
.about-highlights li:nth-child(4n) { background: var(--sand); color: var(--ink); }
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-media { width: 100%; max-width: 380px; margin: 0 auto; }
}

/* ============================ PORTFOLIO ============================ */
.filter-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.filter-pill {
  font-size: .84rem; font-weight: 700; padding: 10px 20px; border-radius: 100px;
  border: 1.5px solid var(--line); background: var(--bg-soft); color: var(--ink-soft);
  cursor: pointer; transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.filter-pill:hover { border-color: var(--dusty-pink-deep); color: var(--ink); }
.filter-pill[aria-selected="true"] { background: var(--ink); border-color: var(--ink); color: var(--bg-soft); }

.portfolio-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px;
}
@media (max-width: 1080px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 480px) { .portfolio-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; } }

.pf-card {
  position: relative; aspect-ratio: 9/16; border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--line); background: var(--card); cursor: pointer;
  box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease;
  display: block; width: 100%; padding: 0; text-align: left;
}
.pf-card:hover, .pf-card:focus-visible { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.pf-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pf-card .pf-scrim {
  position: absolute; inset: 0; background: linear-gradient(180deg, rgba(55,46,38,0) 45%, rgba(55,46,38,.72) 100%);
}
.pf-card .pf-top { position: absolute; top: 12px; left: 12px; right: 12px; display: flex; justify-content: space-between; gap: 8px; }
.pf-badge {
  font-size: .62rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  background: var(--bg-soft); color: var(--ink); padding: 5px 10px; border-radius: 100px;
}
.pf-badge.pending { background: rgba(55,46,38,.55); color: var(--bg-soft); }
.pf-badge.paid { background: var(--dusty-pink); }
.pf-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.92);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.pf-bottom { position: absolute; bottom: 14px; left: 14px; right: 14px; color: var(--bg-soft); }
.pf-brand { font-family: "Fraunces", serif; font-weight: 600; font-size: 1.08rem; }
.pf-cat { font-size: .72rem; opacity: .92; margin-top: 2px; display: flex; align-items: center; gap: 6px; }
.pf-cat::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--dot-color, currentColor); flex-shrink: 0; }
.pf-card[hidden] { display: none; }
.pf-empty {
  grid-column: 1 / -1; text-align: center; color: var(--ink-soft); font-size: .95rem;
  padding: 40px 20px; max-width: 46ch; margin: 0 auto;
}
.portfolio-more-wrap { display: flex; justify-content: center; margin-top: 40px; }

.tv-teaser {
  margin-top: 48px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: var(--dusty-pink); color: var(--ink); border-radius: 100px;
  padding: 14px 26px; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease;
}
.tv-teaser:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -16px rgba(156, 84, 104, .4); }
.tv-teaser p { margin: 0; font-family: "Fraunces", serif; font-style: italic; font-weight: 460; font-size: 1rem; color: var(--ink); }
.tv-teaser-arrow { font-size: 1.2rem; color: var(--dusty-pink-deep); flex-shrink: 0; transition: transform .2s ease; }
.tv-teaser:hover .tv-teaser-arrow { transform: translateX(6px); }
@media (max-width: 640px) {
  .tv-teaser { flex-direction: column; align-items: flex-start; text-align: left; padding: 20px 24px; border-radius: var(--radius-lg); }
}

/* ============================ CASOS DE ÉXITO ============================ */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 980px) { .case-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

.case-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.case-media {
  position: relative; aspect-ratio: 9/16; cursor: pointer; background: var(--olive-pale);
}
.case-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.case-media .pf-play { width: 58px; height: 58px; font-size: 1.2rem; }
.case-logo {
  position: absolute; top: 14px; left: 14px; background: var(--bg-soft); border-radius: 10px;
  padding: 8px 12px; max-height: 34px; display: flex; align-items: center;
}
.case-logo img { max-height: 20px; max-width: 90px; object-fit: contain; }
.case-logo.text-only { font-family: "Fraunces", serif; font-weight: 600; font-size: .92rem; color: var(--ink); }

.case-body { padding: 26px; }
.case-body p { color: var(--ink-soft); font-size: .92rem; line-height: 1.6; }
.case-metrics { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 22px; padding-top: 22px; border-top: 1px dashed var(--line); }
.case-metric .m-num {
  font-family: "Fraunces", serif; font-weight: 600; font-size: 1.6rem; color: var(--pistachio-deep);
  font-variant-numeric: tabular-nums;
}
.case-metric .m-label { font-size: .74rem; color: var(--ink-soft); margin-top: 2px; }

/* ============================ CONTENIDO QUE CONVIERTE ============================ */
.conversion-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 26px; }
@media (max-width: 760px) { .conversion-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; } }
.conversion-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 28px; text-align: center; box-shadow: var(--shadow-sm);
}
.conversion-card img { height: 28px; max-width: 140px; object-fit: contain; margin: 0 auto 22px; }
.conversion-card .conv-num {
  font-family: "Fraunces", serif; font-weight: 600; font-size: 2.6rem; color: var(--dusty-pink-deep);
  font-variant-numeric: tabular-nums; line-height: 1;
}
.conversion-card .conv-label { font-size: .88rem; font-weight: 700; margin-top: 8px; }
.conversion-card .conv-period { font-size: .76rem; color: var(--ink-soft); margin-top: 4px; }

/* ============================ SERVICIOS ============================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .services-grid { grid-template-columns: 1fr; } }
.services-grid .service-card:nth-child(3n+1) { transition-delay: 0s; }
.services-grid .service-card:nth-child(3n+2) { transition-delay: .08s; }
.services-grid .service-card:nth-child(3n) { transition-delay: .16s; }

.service-card {
  background: var(--card); border: 1.5px solid var(--line); border-radius: var(--radius-md);
  padding: 28px; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.service-card:hover,
.service-card.is-active {
  border-color: var(--dusty-pink-deep); transform: translateY(-3px);
  box-shadow: 0 12px 28px -16px rgba(156, 84, 104, .45);
}
.service-card h3 { font-size: 1.08rem; margin-bottom: 10px; transition: color .2s ease; }
.service-card:hover h3,
.service-card.is-active h3 { color: var(--dusty-pink-deep); }
.service-card p { color: var(--ink-soft); font-size: .9rem; line-height: 1.6; }

.services-urgent {
  text-align: center; margin-top: 40px; padding: 16px 24px; max-width: 640px; margin-left: auto; margin-right: auto;
  background: var(--olive-pale); border-radius: 100px; font-size: .92rem; font-weight: 600; color: var(--ink);
}
.services-close { text-align: center; margin-top: 32px; }
.services-close p { font-family: "Fraunces", serif; font-style: italic; font-size: 1.2rem; margin-bottom: 22px; }

/* ============================ PROCESO ============================ */
.process { background: var(--bg-soft); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
@media (max-width: 980px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }
.process-step { padding: 8px 4px; }
.process-num {
  font-family: "Fraunces", serif; font-style: italic; font-size: 1.6rem; color: var(--dusty-pink-deep);
  display: block; margin-bottom: 12px;
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.process-step p { color: var(--ink-soft); font-size: .9rem; }

/* ============================ TESTIMONIOS ============================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }
.testimonial-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 26px;
}
.testimonial-card p.t-text { font-style: italic; font-family: "Fraunces", serif; font-size: 1.05rem; }
.t-author { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.t-author img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.t-author .t-name { font-weight: 700; font-size: .9rem; }
.t-author .t-role { font-size: .78rem; color: var(--ink-soft); }

/* ============================ CONTACTO ============================ */
.contact { background: var(--bg-soft); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: start; }
.contact-intro p { color: var(--ink-soft); margin-top: 16px; max-width: 46ch; }
.contact-direct { margin-top: 44px; padding-top: 30px; border-top: 1px solid var(--line); }
.contact-direct-label { font-weight: 700; margin-bottom: 14px; }
.contact-direct-list { display: flex; flex-direction: column; gap: 10px; }
.contact-direct-list a { font-weight: 600; color: var(--ink-soft); }
.contact-direct-list a:hover { color: var(--dusty-pink-deep); }

@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.contact-form-wrap {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.field { margin-bottom: 20px; }
.field label, fieldset.field legend { display: block; font-weight: 700; font-size: .86rem; margin-bottom: 8px; }
.req { color: var(--dusty-pink-deep); }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="number"],
.field input[type="date"],
.field select,
.field textarea {
  width: 100%; font: inherit; padding: 12px 14px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--line); background: var(--bg-soft); color: var(--ink);
  transition: border-color .18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--dusty-pink-deep); outline: none; }
.field textarea { resize: vertical; min-height: 110px; }
.field-error { display: block; color: #A5493A; font-size: .8rem; margin-top: 6px; min-height: 1em; }

fieldset.field { border: none; padding: 0; }
.radio-row { display: flex; flex-wrap: wrap; gap: 18px; }
.radio-row label { font-weight: 600; font-size: .9rem; display: flex; align-items: center; gap: 8px; }

.checkbox-field label { display: flex; align-items: flex-start; gap: 10px; font-weight: 500; font-size: .88rem; color: var(--ink-soft); }
.checkbox-field input { margin-top: 3px; }
.checkbox-field a { color: var(--dusty-pink-deep); font-weight: 700; }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.btn-submit { width: 100%; justify-content: center; margin-top: 6px; }
.form-status {
  margin-top: 18px; padding: 14px 16px; border-radius: var(--radius-sm); font-size: .9rem; font-weight: 600;
  background: var(--olive-pale); color: var(--ink);
}
.form-status.error { background: #F6E3DE; color: #A5493A; }

[data-social].is-pending { opacity: .5; cursor: default; }

/* ============================ FOOTER ============================ */
.site-footer { background: var(--ink); color: var(--bg-soft); padding: 64px 0 0; }
.footer-inner {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 32px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.footer-name { font-family: "Fraunces", serif; font-weight: 600; font-size: 1.3rem; }
.footer-role { color: rgba(255,255,255,.65); margin-top: 4px; font-size: .9rem; }
.footer-socials, .footer-legal { display: flex; flex-direction: column; gap: 10px; }
.footer-socials a, .footer-legal a { color: rgba(255,255,255,.78); font-size: .9rem; font-weight: 600; }
.footer-socials a:hover, .footer-legal a:hover { color: var(--dusty-pink); }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px;
  padding: 26px 24px 32px; font-size: .8rem; color: rgba(255,255,255,.55);
}
.footer-sign { font-family: "Fraunces", serif; font-style: italic; color: rgba(255,255,255,.7); }

/* ============================ VIDEO MODAL ============================ */
.video-modal { position: fixed; inset: 0; z-index: 500; display: flex; align-items: center; justify-content: center; padding: 24px; }
.video-modal[hidden] { display: none; }
.video-modal-backdrop { position: absolute; inset: 0; background: rgba(34, 28, 22, .82); }
.video-modal-inner {
  position: relative; z-index: 1; max-width: 420px; width: 100%; background: var(--ink);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
}
.video-modal-media { position: relative; width: 100%; aspect-ratio: 9/16; background: #000; }
.video-modal-media video { width: 100%; height: 100%; object-fit: contain; display: block; background: #000; }
.video-modal-pending {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; color: var(--bg-soft); text-align: center; padding: 24px; background: linear-gradient(160deg, #4A4034, #372E26);
}
.video-modal-pending .vp-icon { font-size: 1.8rem; }
.video-modal-pending p { font-size: .88rem; opacity: .8; max-width: 26ch; }
.video-modal-meta { padding: 18px 20px; color: var(--bg-soft); }
.video-modal-meta .vm-brand { font-family: "Fraunces", serif; font-weight: 600; font-size: 1.15rem; }
.video-modal-meta .vm-cat { font-size: .76rem; color: var(--dusty-pink); text-transform: uppercase; letter-spacing: .06em; font-weight: 700; margin-top: 4px; }
.video-modal-meta .vm-desc { font-size: .86rem; color: rgba(255,255,255,.75); margin-top: 10px; line-height: 1.5; }
.video-modal-close {
  position: absolute; top: 12px; right: 12px; z-index: 2; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,.4); color: #fff; border: none; cursor: pointer; font-size: .95rem;
}

/* ============================ PÁGINAS LEGALES ============================ */
.legal-header {
  padding: 28px 0; border-bottom: 1px solid var(--line); background: var(--bg-soft);
}
.legal-header .section-inner { display: flex; align-items: center; justify-content: space-between; }
.legal-back { font-weight: 700; font-size: .88rem; color: var(--ink-soft); }
.legal-back:hover { color: var(--dusty-pink-deep); }
.legal-main { max-width: 720px; margin: 0 auto; padding: 72px 24px 100px; }
.legal-main h1 { font-size: clamp(1.8rem, 4vw, 2.3rem); }
.legal-main h2 { font-size: 1.2rem; margin-top: 40px; }
.legal-main p, .legal-main li { color: var(--ink-soft); line-height: 1.7; }
.legal-main ul { margin-top: 12px; padding-left: 20px; list-style: disc; }
.legal-main li { margin-bottom: 8px; }
.legal-notice {
  margin-top: 24px; padding: 18px 20px; border-radius: var(--radius-md);
  background: var(--dusty-pink); border: 1px solid var(--line); font-size: .9rem; color: var(--ink);
}

/* ============================ COOKIE BANNER ============================ */
.cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 400; max-width: 560px; margin: 0 auto;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 20px 22px; box-shadow: var(--shadow-md);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { font-size: .86rem; color: var(--ink-soft); }
.cookie-banner a { color: var(--dusty-pink-deep); font-weight: 700; }
.cookie-actions { display: flex; gap: 12px; margin-top: 14px; }

/* ============================ PÁGINA "SPOTS TV" ============================ */
.tv-hero { padding: 168px 0 64px; text-align: center; }
.tv-hero .section-inner { max-width: 720px; }
.tv-hero h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); }
.tv-hero p { margin-top: 18px; color: var(--ink-soft); font-size: 1.08rem; }
.tv-hero-brand {
  margin-top: 32px; display: inline-flex; align-items: center; gap: 12px;
  background: var(--card); border: 1px solid var(--line); border-radius: 100px;
  padding: 10px 22px 10px 16px;
}
.tv-hero-brand img { height: 22px; width: auto; }
.tv-hero-brand span { font-size: .86rem; font-weight: 700; color: var(--ink-soft); }
.tv-hero-channels {
  margin-top: 16px; font-size: .78rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: var(--ink-faint);
}

.tv-spots { padding-bottom: 40px; }
.tv-spots .section-inner { display: flex; flex-direction: column; gap: 72px; }
.tv-spot-video {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); aspect-ratio: 16/9; background: var(--ink);
}
.tv-spot-video video { width: 100%; height: 100%; object-fit: cover; display: block; }
.tv-spot-info {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 16px;
  margin-top: 20px; flex-wrap: wrap;
}
.tv-spot-info h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.tv-spot-place { color: var(--dusty-pink-deep); font-weight: 700; font-size: .92rem; margin-top: 4px; }
.tv-spot-index {
  font-family: "Fraunces", serif; font-style: italic; color: var(--ink-faint); font-size: 1.1rem; flex-shrink: 0;
}

.tv-close { text-align: center; padding: 24px 0 100px; }
.tv-close p { font-family: "Fraunces", serif; font-style: italic; font-size: 1.2rem; color: var(--ink); margin-bottom: 24px; }
