/* =========================================
   BETA DIGITAL STUDIO — STYLES
   Editorial fashion · minimal · monochrome
   ========================================= */

/* ----- TIPOGRAFÍAS ----- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=DM+Mono:wght@300;400;500&family=Manrope:wght@200;300;400;500;600&display=swap');

/* ----- VARIABLES ----- */
:root {
  --color-bg: #ffffff;
  --color-fg: #0a0a0a;
  --color-fg-soft: #555555;
  --color-fg-faint: #999999;
  --color-line: #e8e8e8;
  --color-accent-bg: #f5f5f5;

  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Manrope', -apple-system, sans-serif;
  --font-mono: 'DM Mono', 'Courier New', monospace;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
  --space-2xl: 12rem;

  --max-w: 1400px;
  --max-w-text: 720px;

  --transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--color-bg);
  color: var(--color-fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

a:hover {
  opacity: 0.6;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* ----- HEADER / NAV ----- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  mix-blend-mode: difference;
  color: white;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.nav__menu {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 2rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.nav__lang {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: 1px solid currentColor;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
}

.nav__lang span {
  opacity: 0.5;
}

.nav__lang span.active {
  opacity: 1;
}

@media (max-width: 768px) {
  .nav__menu {
    display: none;
  }
  .nav {
    padding: 1rem 1.25rem;
  }
}

/* ----- HERO ----- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-fg);
  color: white;
}

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 2rem;
  max-width: 1000px;
}

.hero__symbol {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 9rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 1.2s 0.2s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 1.2s 0.5s forwards;
}

.hero__title em {
  font-style: italic;
  font-weight: 300;
}

.hero__subtitle {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  opacity: 0;
  animation: fadeInUp 1.2s 0.8s forwards;
  color: rgba(255,255,255,0.85);
}

.hero__cta {
  margin-top: 3rem;
  opacity: 0;
  animation: fadeInUp 1.2s 1.1s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1.5s 1.5s forwards;
}

.hero__scroll-ornament {
  width: 280px;
  height: auto;
  opacity: 0.85;
  margin-bottom: 0.3rem;
  mix-blend-mode: screen;
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero__scroll-ornament {
    width: 220px;
  }
}

.hero__scroll::after {
  content: '';
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.5);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}

/* ----- SECCIONES ----- */
section {
  padding: var(--space-xl) 2rem;
}

@media (max-width: 768px) {
  section {
    padding: var(--space-lg) 1.25rem;
  }
}

.section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section__label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-fg-faint);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-divider {
  width: 100px;
  height: auto;
  flex-shrink: 0;
  opacity: 0.85;
}

.case-divider {
  width: 80px;
  height: auto;
  flex-shrink: 0;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .section-divider {
    width: 80px;
  }
  .case-divider {
    width: 60px;
  }
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
  max-width: 900px;
}

.section__title em {
  font-style: italic;
}

/* ----- VALUE / WHAT I DO ----- */
.value {
  background: var(--color-bg);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.value__list {
  display: flex;
  flex-direction: column;
  margin-top: 4rem;
}

.value__item {
  display: grid;
  grid-template-columns: 100px 1fr 1.4fr;
  gap: 3rem;
  align-items: center;
  padding: 2.5rem 1rem;
  border-top: 1px solid var(--color-line);
  position: relative;
  transition: padding-left 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: default;
}

.value__item:last-child {
  border-bottom: 1px solid var(--color-line);
}

/* Línea horizontal animada en el fondo del hover */
.value__item::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--color-fg);
  transition: width 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 1;
}

.value__item:hover,
.value__item.reveal.is-visible:hover {
  padding-left: 2rem;
}

.value__item:hover::before {
  width: 100%;
}

.value__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
  color: var(--color-fg-faint);
  transition: color 0.4s ease;
}

.value__item:hover .value__num {
  color: var(--color-fg);
}

.value__heading {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 300;
  line-height: 1.2;
  margin: 0;
}

.value__heading em {
  font-style: italic;
}

.value__desc {
  font-size: 0.92rem;
  color: var(--color-fg-soft);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 768px) {
  .value__list {
    margin-top: 2.5rem;
  }
  .value__item {
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto;
    gap: 0.5rem 1.5rem;
    padding: 2rem 0.5rem;
  }
  .value__num {
    font-size: 2.2rem;
    grid-row: 1 / 3;
  }
  .value__heading {
    grid-column: 2;
  }
  .value__desc {
    grid-column: 2;
  }
  .value__item:hover,
  .value__item.reveal.is-visible:hover {
    padding-left: 1rem;
  }
}

/* ----- CASES / PORTFOLIO ----- */
.cases {
  background: var(--color-fg);
  color: white;
}

.cases .section__label {
  color: rgba(255,255,255,0.5);
}

.cases .section__title {
  color: white;
}

.cases .case__description {
  color: rgba(255,255,255,0.75);
}

.cases .case__meta {
  color: rgba(255,255,255,0.5);
}

.cases .case__meta span strong {
  color: white;
}

.cases__list {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.case {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.case--reverse {
  direction: rtl;
}

.case--reverse > * {
  direction: ltr;
}

.case__visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--color-accent-bg);
  overflow: hidden;
}

.case__visual img,
.case__visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--transition);
}

.case__visual:hover img,
.case__visual:hover video {
  transform: scale(1.03);
}

.case__visual--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--color-fg);
}

.case__split-side {
  position: relative;
  overflow: hidden;
  background: var(--color-accent-bg);
}

.case__split-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: white;
  background: rgba(0,0,0,0.5);
  padding: 0.4rem 0.8rem;
  backdrop-filter: blur(10px);
  z-index: 3;
}

/* Lado de fotos alternantes (antes) */
.case__split-side--photos {
  position: relative;
}

.case__photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.case__photo--active {
  opacity: 1;
}

/* Lado de video (después) */
.case__split-side--video {
  position: relative;
}

.case__split-side--video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case__info .section__label {
  margin-bottom: 1.5rem;
}

.case__client {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.case__client em {
  font-style: italic;
}

.case__description {
  font-size: 1rem;
  color: var(--color-fg-soft);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}

.case__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-fg-faint);
}

.case__meta span strong {
  display: block;
  color: var(--color-fg);
  font-weight: 500;
  margin-top: 0.3rem;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .case,
  .case--reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
    direction: ltr;
  }
}

/* ----- PROCESS / CÓMO TRABAJO ----- */
.process {
  background: var(--color-bg);
  color: var(--color-fg);
}

.process .section__label {
  color: var(--color-fg-faint);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.process__step {
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Imagen editorial arriba de cada paso */
.process__image {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 1.75rem;
  background: #1a1a1a;
}

.process__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.05);
  opacity: 0.88;
  transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.process__step:hover .process__image img {
  opacity: 1;
  filter: grayscale(0) contrast(1.05);
  transform: scale(1.04);
}

/* Número del paso: pequeño, monospace, alineado al título */
.process__num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--color-fg-faint);
  margin-right: 0.9rem;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -0.2em;
}

.process__heading {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 1;
}

.process__heading-text {
  display: inline;
}

.process__desc {
  font-size: 0.92rem;
  color: var(--color-fg-soft);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

@media (max-width: 968px) {
  .process__steps {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .process__image {
    aspect-ratio: 16 / 10;
  }
}

/* ----- TESTIMONIALS ----- */
.testimonials {
  background: var(--color-fg);
  color: white;
}

.testimonials .section__title {
  color: white;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial {
  border: 1px solid rgba(255,255,255,0.15);
  padding: 3rem 2.5rem;
  position: relative;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  transition: border-color 0.4s ease;
}

.testimonial:hover {
  border-color: rgba(255,255,255,0.4);
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -0.3em;
  left: 1.5rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 6rem;
  color: rgba(255,255,255,0.3);
  line-height: 1;
}

.testimonial__quote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.5;
  color: white;
  font-style: italic;
}

.testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.testimonial__name {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: white;
  text-transform: uppercase;
}

.testimonial__brand {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .testimonial {
    padding: 2.5rem 2rem;
  }
  .testimonial__quote {
    font-size: 1.1rem;
  }
}

/* ----- PRICING / PAQUETES ----- */
.pricing__intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 4rem;
}

.pricing__currency-toggle {
  display: flex;
  border: 1px solid var(--color-fg);
  border-radius: 999px;
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.pricing__currency-toggle button {
  padding: 0.6rem 1.2rem;
  background: transparent;
  color: var(--color-fg);
  transition: all var(--transition);
}

.pricing__currency-toggle button.active {
  background: var(--color-fg);
  color: white;
}

.pricing__coupon {
  background: var(--color-accent-bg);
  border: 1px dashed var(--color-fg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.pricing__coupon-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: var(--color-fg);
  color: white;
  padding: 0.4rem 0.8rem;
}

.pricing__coupon-text {
  flex: 1;
  font-size: 0.95rem;
  color: var(--color-fg);
}

.pricing__coupon-code {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 500;
  background: var(--color-fg);
  color: white;
  padding: 0.6rem 1rem;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .pricing__coupon {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 1.25rem;
    text-align: left;
  }

  .pricing__coupon-text {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .pricing__coupon-code {
    align-self: stretch;
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.plan {
  border: 1px solid var(--color-line);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition);
}

/* Hover: combinamos selectores con .reveal.is-visible para ganar
   especificidad y poder pisar su transform: translateY(0).
   Usamos !important en transform como red de seguridad porque la
   animación de aparición y el hover comparten la misma propiedad. */
.plan:hover,
.plan.reveal.is-visible:hover {
  border-color: var(--color-fg);
  transform: scale(1.025) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.plan--featured {
  background: var(--color-fg);
  color: white;
  border-color: var(--color-fg);
}

.plan--featured:hover,
.plan--featured.reveal.is-visible:hover {
  border-color: var(--color-fg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.plan--featured .plan__name,
.plan--featured .plan__tagline,
.plan--featured .plan__features li {
  color: rgba(255,255,255,0.85);
}

.plan--featured .plan__price {
  color: white;
}

.plan__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: white;
  color: var(--color-fg);
  padding: 0.4rem 0.8rem;
}

.plan__name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.plan__tagline {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-fg-faint);
  margin-bottom: 2rem;
}

.plan__price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
}

.plan__price-detail {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-fg-faint);
  margin-bottom: 2rem;
}

.plan__divider {
  width: 30px;
  height: 1px;
  background: var(--color-line);
  margin-bottom: 2rem;
}

.plan--featured .plan__divider {
  background: rgba(255,255,255,0.3);
}

.plan__features {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1;
}

.plan__features li {
  padding: 0.6rem 0;
  font-size: 0.9rem;
  color: var(--color-fg-soft);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-bottom: 1px solid var(--color-line);
}

.plan--featured .plan__features li {
  border-bottom-color: rgba(255,255,255,0.15);
}

.plan__features li::before {
  content: '+';
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-fg-faint);
  flex-shrink: 0;
}

.plan--featured .plan__features li::before {
  color: rgba(255,255,255,0.6);
}

/* Si el li tiene un .plan__icon, ocultamos el bullet + porque el icono
   ya cumple esa función. */
.plan__features li:has(.plan__icon)::before {
  display: none;
}

.plan__icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  color: var(--color-fg);
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  width: 1.5rem;
}

.plan--featured .plan__icon {
  color: rgba(255,255,255,0.9);
}

.plan__bonus {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 1rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.plan__bonus strong {
  display: block;
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  margin-bottom: 0.5rem;
  color: rgba(255,255,255,0.7);
}

.pricing__note {
  margin-top: 3rem;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-fg-faint);
}

@media (max-width: 968px) {
  .pricing__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ----- BUTTON ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 400;
  border: 1px solid currentColor;
  background: transparent;
  color: var(--color-fg);
  transition: all var(--transition);
  cursor: pointer;
}

.btn:hover {
  background: var(--color-fg);
  color: white;
  opacity: 1;
}

.btn--light {
  border-color: white;
  color: white;
}

.btn--light:hover {
  background: white;
  color: var(--color-fg);
}

.btn--filled {
  background: var(--color-fg);
  color: white;
}

.btn--filled:hover {
  background: transparent;
  color: var(--color-fg);
}

.plan--featured .btn {
  border-color: white;
  color: white;
}

.plan--featured .btn:hover {
  background: white;
  color: var(--color-fg);
}

.btn::after {
  content: '→';
  transition: transform var(--transition);
}

.btn:hover::after {
  transform: translateX(4px);
}

/* ----- ABOUT ----- */
.about {
  background: var(--color-fg);
  color: white;
}

.about .section__label {
  color: rgba(255,255,255,0.5);
}

.about__big {
  color: white;
}

.about__details {
  color: rgba(255,255,255,0.75);
}

.about__location {
  color: rgba(255,255,255,0.5);
  border-color: rgba(255,255,255,0.15);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.about__big {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.about__big em {
  font-style: italic;
}

.about__details {
  font-size: 1rem;
  color: var(--color-fg-soft);
  line-height: 1.8;
  max-width: 600px;
}

.about__details p {
  margin-bottom: 1.25rem;
}

.about__location {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-fg-faint);
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-line);
}

@media (max-width: 768px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ----- FAQ ----- */
.faq__list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--color-fg);
}

.faq__item {
  border-bottom: 1px solid var(--color-line);
}

.faq__question {
  width: 100%;
  text-align: left;
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--color-fg);
  transition: color var(--transition);
}

.faq__question:hover {
  color: var(--color-fg-soft);
  opacity: 1;
}

.faq__icon {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq__item.is-open .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease-out;
}

.faq__item.is-open .faq__answer {
  max-height: 500px;
}

.faq__answer-inner {
  padding-bottom: 2rem;
  font-size: 1rem;
  color: var(--color-fg-soft);
  line-height: 1.8;
  max-width: 720px;
}

/* ----- CONTACT / FOOTER ----- */
.contact {
  background: var(--color-fg);
  color: white;
  text-align: center;
  padding: var(--space-2xl) 2rem;
}

.contact__symbol {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 2rem;
}

.contact__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.contact__title em {
  font-style: italic;
}

.contact__subtitle {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4rem;
}

.contact__ornament {
  display: block;
  width: 280px;
  height: auto;
  margin: 2.5rem auto;
  opacity: 0.85;
  mix-blend-mode: screen;
  pointer-events: none;
}

@media (max-width: 768px) {
  .contact__ornament {
    width: 220px;
    margin: 2rem auto;
  }
}

.contact__methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.contact__method {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.25rem 2.5rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  transition: all var(--transition);
}

.contact__method:hover {
  background: white;
  color: var(--color-fg);
  border-color: white;
  opacity: 1;
}

.contact__footer {
  margin-top: 6rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ----- ANIMACIONES SCROLL ----- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----- UTILS ----- */
.divider-text {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-fg-faint);
  margin: 2rem 0;
}

.divider-text::before,
.divider-text::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-line);
}

/* Marquee opcional para el sello editorial */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  padding: 1.5rem 0;
  background: var(--color-bg);
}

.marquee__track {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.marquee__item {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 300;
  color: var(--color-fg-soft);
}

.marquee__item::after {
  content: ' ◆ ';
  margin-left: 4rem;
  color: var(--color-fg-faint);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================
   Detalles editoriales
   ========================================= */

/* Iconos en los métodos de contacto */
.contact__method i {
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
}
