/* ============================================================
   Template: photo-studio (estudio fotográfico)
   Tema dark de punta a punta.
   Paleta:
   - Fondo ............. #0C0C0F / #17171C (60%)
   - Superficies ....... #1E1E24 (30%)
   - Acento dorado ..... #C9A15A (10%)
   - Texto principal ... #F5F3EF
   ============================================================ */

:root {
  --bg: #0C0C0F;
  --bg-soft: #17171C;
  --surface: #1E1E24;
  --surface-2: #26262E;
  --border: #2C2C34;
  --text: #F5F3EF;
  --text-soft: #A9A6A0;
  --accent: #C9A15A;
  --accent-dark: #A87F3E;
  --accent-soft: rgba(201, 161, 90, 0.14);
  --accent-lt: #E8CE9D;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.55);
  --radius: 16px;
  --radius-sm: 10px;
  --font-heading: "Fraunces", Georgia, serif;
  --font-body: "Work Sans", system-ui, sans-serif;
}

/* ---------- Reset básico ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
}

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

a {
  color: var(--accent-lt);
  text-decoration: none;
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

button {
  font-family: inherit;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* ---------- Utilidades ---------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 96px 0;
  background-color: var(--bg);
}

.section--alt {
  background-color: var(--bg-soft);
}

.section--dark-alt {
  background:
    radial-gradient(circle at 15% 0%, rgba(201, 161, 90, 0.08), transparent 45%),
    radial-gradient(circle at 85% 100%, rgba(201, 161, 90, 0.06), transparent 50%),
    var(--bg-soft);
}

.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.kicker {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-lt);
  background-color: var(--accent-soft);
  border: 1px solid rgba(201, 161, 90, 0.35);
  border-radius: 999px;
  padding: 6px 18px;
  margin-bottom: 16px;
}

.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  margin-bottom: 12px;
}

.section-head p {
  color: var(--text-soft);
}

/* Aparición al hacer scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background-color: var(--accent);
  color: #16130A;
  box-shadow: 0 10px 26px rgba(201, 161, 90, 0.3);
}

.btn--primary:hover {
  background-color: var(--accent-lt);
}

.btn--accent {
  background-color: var(--text);
  color: #16130A;
}

.btn--accent:hover {
  background-color: #FFFFFF;
}

.btn--ghost {
  background-color: transparent;
  color: var(--text);
  border-color: rgba(245, 243, 239, 0.35);
}

.btn--ghost:hover {
  background-color: rgba(245, 243, 239, 0.08);
  border-color: rgba(245, 243, 239, 0.6);
}

.btn--outline {
  background-color: transparent;
  color: var(--accent-lt);
  border-color: var(--accent-dark);
}

.btn--outline:hover {
  background-color: var(--accent-soft);
  border-color: var(--accent);
}

/* ---------- Header / Navegación ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(12, 12, 15, 0.82);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.header.is-scrolled {
  background-color: rgba(12, 12, 15, 0.96);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid var(--border);
}

.header__notice {
  background-color: #050506;
  color: #C7C3BB;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.4;
  padding: 8px 16px;
}

.header__notice span[aria-hidden] {
  margin-right: 6px;
}

.header__notice-short {
  display: none;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--text);
}

.brand__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background-color: var(--accent-soft);
  border: 1px solid rgba(201, 161, 90, 0.4);
  color: var(--accent-lt);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.nav a {
  font-family: var(--font-heading);
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text);
  padding: 8px 12px;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav a:hover {
  background-color: var(--accent-soft);
  color: var(--accent-lt);
}

.nav .nav__cta {
  background-color: var(--accent);
  color: #16130A;
  margin-left: 8px;
}

.nav .nav__cta:hover {
  background-color: var(--accent-lt);
  color: #16130A;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  border-radius: 3px;
  background-color: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 94vh;
  padding: 150px 0 90px;
  color: var(--text);
  background-color: #08080A;
  background-image: linear-gradient(100deg, rgba(8, 8, 10, 0.94) 10%, rgba(8, 8, 10, 0.72) 50%, rgba(8, 8, 10, 0.3) 100%),
    url("../img/hero.jpg");
  background-size: cover;
  background-position: center 20%;
}

.hero__content {
  max-width: 640px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent-lt);
  background-color: rgba(201, 161, 90, 0.14);
  border: 1px solid rgba(201, 161, 90, 0.4);
  border-radius: 999px;
  padding: 8px 18px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  margin-bottom: 20px;
}

.hero h1 .hl {
  color: var(--accent-lt);
}

.hero p {
  font-size: 1.15rem;
  color: #D9D5CC;
  margin-bottom: 34px;
  max-width: 540px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 42px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 0.95rem;
  color: #B7B2A8;
}

.hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ---------- Sobre el estudio ---------- */
.about {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 56px;
  align-items: center;
}

.about__photo {
  position: relative;
}

.about__photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  width: 100%;
}

.about__photo::before {
  content: "";
  position: absolute;
  inset: -18px auto auto -18px;
  width: 120px;
  height: 120px;
  border-radius: 24px;
  background-color: var(--accent-soft);
  border: 1px solid rgba(201, 161, 90, 0.3);
  z-index: -1;
}

.about__photo::after {
  content: "";
  position: absolute;
  inset: auto -18px -18px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: var(--surface);
  border: 1px solid var(--border);
  z-index: -1;
}

.about__card {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about__card span[aria-hidden] {
  font-size: 1.5rem;
}

.about__card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
}

.about__card small {
  color: var(--text-soft);
  font-size: 0.8rem;
}

.about__content h2 {
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}

.about__content p {
  color: var(--text-soft);
  margin-bottom: 16px;
}

.about__checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin: 22px 0 28px;
}

.about__checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
}

.about__checks span[aria-hidden] {
  color: var(--accent);
}

/* ---------- Servicios ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-dark);
}

.service-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  background-color: var(--accent-soft);
  border: 1px solid rgba(201, 161, 90, 0.3);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.98rem;
  color: var(--text-soft);
}

/* ---------- Beneficios ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.benefit > span[aria-hidden] {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background-color: var(--accent-soft);
}

.benefit h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.benefit p {
  font-size: 0.94rem;
  color: var(--text-soft);
}

/* ---------- Portfolio: filtro por pills ---------- */
.filter-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
}

.filter-pill {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-soft);
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 20px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.filter-pill:hover {
  border-color: var(--accent-dark);
  color: var(--text);
}

.filter-pill.is-active {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #16130A;
}

/* ---------- Portfolio: grilla bento ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
  gap: 14px;
}

.bento-tile {
  position: relative;
  grid-column: span 1;
  grid-row: span 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background-color: var(--surface);
  cursor: pointer;
  padding: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.bento-tile--wide {
  grid-column: span 2;
}

.bento-tile--tall {
  grid-row: span 2;
}

.bento-tile--big {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.bento-tile:hover img {
  transform: scale(1.08);
}

.bento-tile__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 30px 16px 14px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
  background: linear-gradient(to top, rgba(8, 8, 10, 0.92), transparent);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.bento-tile:hover .bento-tile__overlay,
.bento-tile:focus-visible .bento-tile__overlay {
  opacity: 1;
  transform: none;
}

.bento-tile.is-hiding {
  opacity: 0;
  transform: scale(0.85);
  pointer-events: none;
}

.bento-tile.is-filtered-out {
  display: none;
}

.bento-tile.is-entering {
  animation: bentoIn 0.5s ease both;
}

@keyframes bentoIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background-color: #000;
  background-size: cover;
  background-position: center;
  filter: blur(36px) brightness(0.45) saturate(1.1);
  transform: scale(1.15);
}

.lightbox__figure {
  position: relative;
  z-index: 1;
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.lightbox__figure img {
  max-width: 100%;
  max-height: 72vh;
  width: auto;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}

.lightbox__figure figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-heading);
  color: var(--text);
  font-size: 0.98rem;
}

.lightbox__count {
  color: var(--text-soft);
  font-family: var(--font-body);
  font-size: 0.85rem;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  z-index: 2;
  background-color: rgba(30, 30, 36, 0.7);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.lightbox__close:hover,
.lightbox__nav:hover {
  background-color: var(--accent);
  color: #16130A;
}

.lightbox__close {
  top: 24px;
  right: 24px;
}

.lightbox__nav--prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__nav--next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__nav--prev:hover,
.lightbox__nav--next:hover {
  transform: translateY(-50%) scale(1.08);
}

/* ---------- Proceso ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step {
  position: relative;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
}

.step__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: #16130A;
  background-color: var(--accent);
  margin-bottom: 16px;
}

.step h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.94rem;
  color: var(--text-soft);
}

/* ---------- Precios ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.price-card {
  position: relative;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.price-card--featured {
  background-color: var(--surface-2);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}

.price-card--featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.price-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent);
  color: #16130A;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 16px;
  border-radius: 999px;
}

.price-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.price-card__price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-lt);
  margin-bottom: 10px;
}

.price-card__desc {
  color: var(--text-soft);
  font-size: 0.95rem;
  margin-bottom: 22px;
}

.price-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex-grow: 1;
}

.price-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.price-card ul li span[aria-hidden] {
  color: var(--accent);
}

.price-card .btn {
  width: 100%;
}

/* ---------- Testimonios ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.testimonial__stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial blockquote {
  font-size: 0.98rem;
  color: var(--text-soft);
  font-style: italic;
}

.testimonial footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--accent-lt);
  background-color: var(--accent-soft);
}

.testimonial footer strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
}

.testimonial footer small {
  color: var(--text-soft);
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: 0;
  padding: 18px 22px;
  cursor: pointer;
}

.faq-item__q span[aria-hidden] {
  flex-shrink: 0;
  color: var(--accent);
  font-size: 1.2rem;
  transition: transform 0.25s ease;
}

.faq-item__q[aria-expanded="true"] span[aria-hidden] {
  transform: rotate(180deg);
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item__a p {
  padding: 0 22px 20px;
  color: var(--text-soft);
  font-size: 0.98rem;
}

/* ---------- CTA final ---------- */
.cta-band {
  background: linear-gradient(115deg, #1A140A 0%, var(--accent-dark) 70%, var(--accent) 130%);
  border-radius: var(--radius);
  padding: 56px 36px;
  text-align: center;
  color: var(--text);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
}

.cta-band::before {
  width: 220px;
  height: 220px;
  top: -80px;
  left: -60px;
}

.cta-band::after {
  width: 160px;
  height: 160px;
  bottom: -60px;
  right: -40px;
}

.cta-band h2 {
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.cta-band p {
  max-width: 560px;
  margin: 0 auto 28px;
  opacity: 0.92;
  position: relative;
  z-index: 1;
}

.cta-band .btn {
  position: relative;
  z-index: 1;
}

/* ---------- Contacto ---------- */
.contact {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 48px;
  align-items: start;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.contact-info__item:last-child {
  border-bottom: 0;
}

.contact-info__item > span[aria-hidden] {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background-color: var(--accent-soft);
}

.contact-info__item h3 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.contact-info__item p {
  color: var(--text-soft);
  font-size: 0.96rem;
}

.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.contact-socials a {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-lt);
  background-color: var(--accent-soft);
  border: 1px solid rgba(201, 161, 90, 0.3);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.contact-socials a svg {
  width: 20px;
  height: 20px;
}

.contact-socials a:hover {
  background-color: var(--accent);
  color: #16130A;
  transform: translateY(-3px);
}

.contact-form {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.contact-form > p {
  color: var(--text-soft);
  font-size: 0.95rem;
  margin-bottom: 22px;
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background-color: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field select {
  color-scheme: dark;
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 161, 90, 0.25);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form .btn {
  width: 100%;
  margin-top: 8px;
}

.form-note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--text-soft);
  text-align: center;
}

/* ---------- Footer ---------- */
.footer {
  background-color: #050506;
  color: #B7B2A8;
  padding: 56px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer .brand {
  color: var(--text);
  margin-bottom: 14px;
}

.footer .brand small {
  color: #7A7669;
}

.footer p {
  font-size: 0.95rem;
}

.footer h4 {
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer a {
  color: #B7B2A8;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: var(--accent-lt);
}

.footer__contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.95rem;
}

.footer__bottom {
  border-top: 1px solid rgba(245, 243, 239, 0.1);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.88rem;
  color: #7A7669;
}

.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__credit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
}

.footer__credit img {
  height: 17px;
  width: auto;
  display: inline;
}

/* ---------- Botón flotante de WhatsApp ---------- */
.whatsapp-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  background-color: #25D366;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease;
}

.whatsapp-fab:hover {
  transform: scale(1.08);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid,
  .benefits-grid,
  .testimonials,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .price-card--featured {
    grid-column: span 2;
    transform: none;
  }

  .price-card--featured:hover {
    transform: translateY(-6px);
  }

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

@media (max-width: 860px) {
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .about {
    gap: 44px;
  }

  .about__photo {
    max-width: 460px;
    margin: 0 auto;
  }

  .hero {
    background-position: center;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .header__notice {
    font-size: 0.7rem;
    padding: 6px 12px;
  }

  .header__notice-full {
    display: none;
  }

  .header__notice-short {
    display: inline;
  }

  /* Menú mobile */
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 108px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background-color: var(--bg-soft);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 24px rgba(0, 0, 0, 0.4);
    padding: 16px 20px 22px;
    transform: translateY(-130%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav a {
    padding: 12px 14px;
    text-align: center;
  }

  .nav .nav__cta {
    margin-left: 0;
    margin-top: 8px;
  }

  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .bento-tile--big {
    grid-column: span 2;
    grid-row: span 2;
  }

  .bento-tile--wide {
    grid-column: span 2;
    grid-row: span 1;
  }

  .bento-tile--tall {
    grid-column: span 1;
    grid-row: span 2;
  }

  .lightbox__nav {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }

  .lightbox__close {
    top: 14px;
    right: 14px;
  }

  .lightbox__nav--prev {
    left: 10px;
  }

  .lightbox__nav--next {
    right: 10px;
  }

  /* Reserva espacio para el botón flotante de WhatsApp
     sobre la última línea del footer */
  .footer__bottom {
    padding-bottom: 96px;
  }
}

@media (max-width: 560px) {
  .services-grid,
  .benefits-grid,
  .testimonials,
  .steps,
  .pricing-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .price-card--featured {
    grid-column: auto;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .footer__legal,
  .footer__credit {
    align-items: center;
  }

  .hero {
    min-height: 0;
    padding: 132px 0 72px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .about__checks {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px 20px;
  }

  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
    gap: 10px;
  }

  .bento-tile--big,
  .bento-tile--wide {
    grid-column: span 2;
  }

  .bento-tile--big {
    grid-row: span 2;
  }

  .filter-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 6px;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .filter-pill {
    flex-shrink: 0;
  }

  .lightbox__figure {
    max-width: 96vw;
  }

  .lightbox__figure img {
    max-height: 62vh;
  }
}
