/* ==============================================
   PATRICIA BELTRÁN FOTOGRAFÍA — style.css
   Blanco & Negro Premium / Editorial
   Optimizado y ordenado
   ============================================== */

/* ──────────────────────────────────────────────
   VARIABLES
────────────────────────────────────────────── */
:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark-mid: #1a1a1a;
  --gray-deep: #2a2a2a;
  --gray: #555555;
  --gray-mid: #888888;
  --gray-light: #c8c8c8;
  --silver: #e4e4e4;
  --off-white: #f5f5f3;
  --white: #ffffff;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Montserrat", Helvetica, sans-serif;

  --nav-h: 72px;
  --section-v: clamp(80px, 10vw, 140px);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.7, 0, 0.84, 0);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* ──────────────────────────────────────────────
   TIPOGRAFÍA / LAYOUT GENERAL
────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.section {
  padding: var(--section-v) 0;
}
.section--dark {
  background: var(--dark);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.section-header .section-desc {
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 1rem;
}

.section-label--light {
  color: var(--gray-light);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1.2rem;
}

.section-title em {
  font-style: italic;
  color: var(--gray);
}

.section-title--light {
  color: var(--white);
}
.section-title--light em {
  color: var(--gray-light);
}

.section-desc {
  font-size: 1rem;
  color: var(--gray);
  max-width: 52ch;
}

.section-desc--light {
  color: var(--gray-light);
}

/* ──────────────────────────────────────────────
   ANIMACIONES / REVEAL
────────────────────────────────────────────── */
.reveal {
  opacity: 1;
  transform: translateY(36px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
}

.reveal--right {
  transform: translateY(36px) translateX(20px);
}

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

/* ──────────────────────────────────────────────
   BOTONES
────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--dark);
  color: var(--white);
  border: 1px solid var(--dark);
}

.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gray-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.btn--primary:hover::before {
  transform: scaleX(1);
}
.btn--primary span,
.btn--primary svg {
  position: relative;
  z-index: 1;
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn--outline {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--dark);
}

.btn--outline:hover {
  background: var(--dark);
  color: var(--white);
}

.btn--full {
  width: 100%;
}

/* ──────────────────────────────────────────────
   NAVBAR
────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent);
  transition:
    background 0.4s ease,
    backdrop-filter 0.4s ease,
    box-shadow 0.4s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.navbar__inner {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.navbar__logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.03em;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.65);
}

.navbar__logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gray-light);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.65);
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.3s;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.75);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width 0.3s var(--ease-out);
}

.nav-link:hover {
  color: var(--white);
}
.nav-link:hover::after {
  width: 100%;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--white);
  transition: all 0.3s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.75);
}

.navbar__hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.navbar__hamburger.open span:nth-child(2) {
  opacity: 0;
}
.navbar__hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ──────────────────────────────────────────────
   HERO
────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.015) 2px,
    rgba(255, 255, 255, 0.015) 3px
  );
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.55) 50%,
    rgba(0, 0, 0, 0.75) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 clamp(20px, 6vw, 80px);
  max-width: 860px;
  transform: translateY(50px);
}

.hero__logo-wrap {
  position: relative; /* 👈 importante para la línea */
  padding: 30px 0;
  margin-bottom: 1.5rem;
}
.hero__logo-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;

  width: 100%;
  height: 1px;

  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 255, 255, 0.9) 20%,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 255, 255, 0.9) 80%,
    transparent 100%
  );

  box-shadow:
    0 0 6px rgba(255, 255, 255, 0.6),
    0 0 12px rgba(255, 255, 255, 0.4);
}
.hero__logo-placeholder {
  width: 80px;
  height: 80px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto;
  letter-spacing: 0.08em;
}
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

/* =========================
   FILM STRIPS
========================= */
.film-strip {
  position: absolute;
  display: flex;
  gap: 14px;
  padding: 14px;
  background: rgba(0, 0, 0, 0.82);
  border-top: 10px dashed rgba(255, 255, 255, 0.5);
  border-bottom: 10px dashed rgba(255, 255, 255, 0.3);
  opacity: 0.28;
  z-index: 0;
  pointer-events: none;
  backdrop-filter: blur(2px);
  width: max-content;
  will-change: transform;
}

.film-strip img {
  width: 150px;
  height: 100px;
  object-fit: cover;
  border-radius: 2px;
  filter: contrast(1.08) saturate(0.95);
  flex-shrink: 0;
  display: block;
}

.film-strip-1 {
  top: -10%;
  left: -10%;
  animation: moveFilm1 32s linear infinite;
}

.film-strip-2 {
  bottom: -12%;
  right: -10%;
  animation: moveFilm2 36s linear infinite;
}

@keyframes moveFilm1 {
  0% {
    transform: rotate(-18deg) translateX(0);
  }
  100% {
    transform: rotate(-18deg) translateX(-50%);
  }
}

@keyframes moveFilm2 {
  0% {
    transform: rotate(-18deg) translateX(0);
  }
  100% {
    transform: rotate(-18deg) translateX(50%);
  }
}

@media (max-width: 768px) {
  .film-strip {
    opacity: 0.38;
  }

  .film-strip img {
    width: 90px;
    height: 60px;
  }

  .film-strip-1 {
    top: -3%;
    left: -25%;
  }

  .film-strip-2 {
    bottom: -4%;
    right: -25%;
  }
}
/* =========================
   HERO CONTENT
========================= */
.hero__content {
  position: relative;
  z-index: 3;
}

.hero__camera {
  z-index: 1;
}

.hero__logo {
  width: clamp(320px, 48vw, 950px);
  height: auto;
  display: block;
  margin: 0 auto;

  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.18))
    drop-shadow(0 0 30px rgba(255, 255, 255, 0.08));

  opacity: 0.98;

  animation: logoFloat 7s ease-in-out infinite;
}
@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-6px);
  }
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.1;
  color: var(--white);
  margin-top: 0;
  margin-bottom: 1.4rem;
}

.hero__title em {
  font-style: italic;
  color: var(--silver);
}

.hero__subtitle {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
  margin-bottom: 2.8rem;
  line-height: 1.8;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll-hint {
  display: none;
}

/* ──────────────────────────────────────────────
   ABOUT / QUIÉN SOY
────────────────────────────────────────────── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.about__img-frame {
  position: relative;
}

.about__img-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--silver);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

.about__img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.about__img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 1px solid var(--silver);
  z-index: -1;
}

.about__body {
  font-size: 0.92rem;
  color: var(--gray-deep);
  margin-bottom: 1.2rem;
  line-height: 1.9;
}

.about__body strong {
  font-weight: 600;
  color: var(--dark);
}

.about__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--silver);
}

.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat__label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

/* ──────────────────────────────────────────────
   SERVICIOS
────────────────────────────────────────────── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}

.service-card {
  background: var(--dark-mid);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: clamp(28px, 4vw, 48px) clamp(24px, 3vw, 40px);
  transition:
    background 0.3s,
    border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  background: var(--gray-deep);
}
.service-card:hover::before {
  opacity: 1;
}
.service-card--wide {
  grid-column: 1 / -1;
}

.service-card__icon {
  width: 44px;
  height: 44px;
  color: var(--gray-mid);
  margin-bottom: 1.5rem;
  transition: color 0.3s;
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
}

.service-card:hover .service-card__icon {
  color: var(--silver);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.service-card__list li {
  font-size: 0.82rem;
  color: var(--gray-light);
  padding: 0.4rem 0 0.4rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.service-card__list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--gray);
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.service-card__tags span {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--gray-mid);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.3rem 0.85rem;
  transition: all 0.2s;
}

.service-card:hover .service-card__tags span {
  color: var(--silver);
  border-color: rgba(255, 255, 255, 0.25);
}

/* ──────────────────────────────────────────────
   PORTFOLIO / TRABAJOS
────────────────────────────────────────────── */
.portfolio__filters,
.portfolio__subfilters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.portfolio__filters {
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.portfolio__subfilters {
  gap: 12px;
  margin: 20px 0 30px;
}

.filter-btn,
.subfilter-btn {
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  padding: 0.7rem 1.8rem;
  border: 1px solid var(--silver);
  color: var(--gray);
}

.filter-btn:hover,
.filter-btn--active {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.subfilter-btn {
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.9);
}

.subfilter-btn:hover,
.subfilter-btn--active {
  background: var(--white);
  color: var(--black);
  text-shadow: none;
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.portfolio__item {
  overflow: hidden;
  background: #111;
}

.portfolio__img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
  opacity: 0;
  transform: scale(1.05);
  filter: blur(10px);
  transition:
    opacity 0.8s ease,
    transform 0.6s ease,
    filter 0.6s ease;
}

.portfolio__img.loaded {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.portfolio__item:hover .portfolio__img {
  transform: scale(1.04);
}

.portfolio__cta {
  text-align: center;
  margin-top: 3.5rem;
}

.btn-vermas {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 40px auto 0 !important;
  padding: 14px 24px;
  background: #111;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  text-align: center;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.btn-vermas:hover {
  transform: translateY(-2px);
  background: #000;
}

/* Soporte por si quedó algún item viejo con clase portfolio-item */
.portfolio-item.hidden {
  display: none;
}

/* ──────────────────────────────────────────────
   LIGHTBOX
────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lightbox.active {
  display: flex;
}
.lightbox.show,
.lightbox.active {
  opacity: 1;
}

.lightbox__img {
  max-width: min(92vw, 900px);
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  transform: scale(0.95);
  opacity: 0;
  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.5s ease;
}

.lightbox.active .lightbox__img,
.lightbox.show .lightbox__img {
  transform: scale(1);
  opacity: 1;
}

.lightbox__close {
  position: absolute;
  top: 22px;
  right: 28px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: white;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.8);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    background 0.3s ease;
}

.lightbox.active .lightbox__close,
.lightbox.show .lightbox__close {
  opacity: 1;
  transform: scale(1);
}

.lightbox__close:hover {
  background: rgba(0, 0, 0, 0.65);
}

/* ──────────────────────────────────────────────
   CONTACTO
────────────────────────────────────────────── */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.contact__desc {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

.contact__links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact__link--fb {
  color: #fff;
}

.contact__link {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  padding: 1rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.3s;
}

.contact__link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.contact__link:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.04);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.88rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 0.85rem 1rem;
  outline: none;
  transition:
    border-color 0.3s,
    background 0.3s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.07);
}

.form-group select option {
  background: var(--dark-mid);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
}

.form-success {
  display: none;
  font-size: 0.82rem;
  color: var(--gray-light);
  text-align: center;
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.form-success.visible {
  display: block;
}

/* ──────────────────────────────────────────────
   FOOTER
────────────────────────────────────────────── */
.footer {
  background: var(--black);
  padding: 4rem 0 2rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.footer__logo-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
}

.footer__logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

.footer__tagline {
  font-size: 0.78rem;
  color: var(--gray);
  font-style: italic;
  font-family: var(--font-display);
}

.footer__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.footer__nav a {
  font-size: 0.67rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 0.2s;
}

.footer__nav a:hover {
  color: var(--white);
}

.footer__social {
  display: flex;
  justify-content: flex-end;
  gap: 1.2rem;
}

.footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray);
  transition: all 0.3s;
}

.footer__social a svg {
  width: 18px;
  height: 18px;
}

.footer__social a:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.footer__bottom {
  padding-top: 1.8rem;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.1em;
}

/* ──────────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────────── */
@media (max-width: 960px) {
  .services__grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-card--wide {
    grid-column: 1 / -1;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__img-frame {
    max-width: 480px;
    margin: 0 auto;
  }

  .reveal--right {
    transform: translateY(36px);
  }
  .contact__grid {
    grid-template-columns: 1fr;
  }
  .portfolio__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__social {
    justify-content: center;
  }

  .footer__nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .navbar__hamburger {
    display: flex;
  }

  .navbar__nav {
    position: absolute;
    top: var(--nav-h);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 20px;
    background: rgba(10, 10, 10, 0.96);
    border: 1px solid rgba(111, 83, 62, 0.10);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .navbar__nav.open {
    display: flex !important;
  }
  .portfolio__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  :root {
    --nav-h: 60px;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .about__stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }
  .service-card--wide {
    grid-column: span 1;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
.hero__camera {
  position: absolute;
  right: 8%;
  top: 25%;
  z-index: 1;
  width: clamp(120px, 18vw, 260px);
  color: rgba(255, 255, 255, 0.12);
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.18));
  animation: cameraFloat 6s ease-in-out infinite;
  pointer-events: none;
}

.hero__camera svg {
  width: 100%;
  height: auto;
}

@keyframes cameraFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
  }
  50% {
    transform: translateY(-18px) rotate(3deg);
  }
}

@media (max-width: 768px) {
  .hero__camera {
    right: -20px;
    top: 20%;
    width: 150px;
    opacity: 0.5;
  }
}
.contact__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact__camera-card {
  width: min(420px, 100%);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.contact__camera-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .contact__visual {
    display: none;
  }
}
.contact__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__camera-deco {
  width: 320px;
  opacity: 0.12;
  color: white;

  animation: floatCamera 6s ease-in-out infinite;
}

.contact__camera-deco svg {
  width: 100%;
  height: auto;
}

@keyframes floatCamera {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

@media (max-width: 768px) {
  .contact__visual {
    display: none;
  }
}
.whatsapp-float {
  position: fixed;

  right: 22px;
  bottom: 22px;

  width: 68px;
  height: 68px;

  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  animation: whatsappPulse 2.2s infinite ease-in-out;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: contain;

  filter: drop-shadow(0 0 10px rgba(37, 211, 102, 0.7))
    drop-shadow(0 0 24px rgba(37, 211, 102, 0.45));

  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

.whatsapp-float:hover img {
  transform: scale(1.08);

  filter: drop-shadow(0 0 16px rgba(37, 211, 102, 0.9))
    drop-shadow(0 0 34px rgba(37, 211, 102, 0.65));
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 58px;
    height: 58px;

    right: 16px;
    bottom: 16px;
  }
}

/* ============================================================
   FAQ — Preguntas Frecuentes
   
   ============================================================ */

.faq__list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  /* Sin gap: los bordes se fusionan para efecto de lista unificada */
}

/* ── Ítem ── */
.faq__item {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.faq__item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Ítem activo: borde superior se destaca */
.faq__item.faq--open {
  border-top-color: rgba(255, 255, 255, 0.22);
}

/* ── Botón pregunta ── */
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.6rem 0;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 400;
  color: var(--silver, #e4e4e4);
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}
.faq__question:hover {
  color: var(--white, #ffffff);
}
.faq--open .faq__question {
  color: var(--white, #ffffff);
}

/* ── Ícono + / × ── */
.faq__icon {
  flex-shrink: 0;
  position: relative;
  width: 20px;
  height: 20px;
}
.faq__icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 14px;
  height: 1px;
  background: currentColor;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq__icon span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(0deg);
}
.faq__icon span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* Al abrir: la segunda barra desaparece → queda un – */
.faq--open .faq__icon span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

/* ── Panel respuesta ── */
.faq__answer {
  display: grid;
  grid-template-rows: 0fr;           /* colapso con CSS grid */
  transition: grid-template-rows 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq--open .faq__answer {
  grid-template-rows: 1fr;
}

/* Overflow hidden necesario para la animación de grid */
.faq__answer-inner {
  overflow: hidden;
}

.faq__answer-inner p {
  font-family: var(--font-body, 'Montserrat', sans-serif);
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--gray-light, #c8c8c8);
  padding-bottom: 1.6rem;
  max-width: 68ch;
}
.faq__answer-inner p strong {
  color: var(--white, #ffffff);
  font-weight: 500;
}

/* ── Responsive ── */
@media (max-width: 680px) {
  .faq__question {
    padding: 1.3rem 0;
    font-size: 1.05rem;
  }
  .faq__answer-inner p {
    font-size: 0.84rem;
    padding-bottom: 1.3rem;
  }
}

/* ── Preguntas ocultas ── */
.faq__extra {
  display: none;
}

.faq.show-extra .faq__extra {
  display: block;
}

/* ── Botón ver más ── */
.faq__toggle {
  margin: 2rem auto 0;
  padding: 0.9rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;

  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--silver, #e4e4e4);

  font-family: var(--font-body, 'Montserrat', sans-serif);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  cursor: pointer;
  transition: all 0.3s ease;
}

.faq__toggle:hover {
  color: var(--white, #ffffff);
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.08);
}

.faq__toggle span {
  font-size: 1rem;
  line-height: 1;
  transform: translateY(-1px);
  transition: transform 0.3s ease;
}

.faq.show-extra .faq__toggle span {
  transform: rotate(180deg);
}
/* ============================================================
   MEJORAS CTA + INVITACIONES + CONTACTO + WHATSAPP — SEP 2026
============================================================ */

/* CTA principal del hero: más visible + latido suave */
.btn--hero-primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  box-shadow: 0 10px 32px rgba(255, 255, 255, 0.12);
  animation: heroHeartbeat 3s ease-in-out infinite;
  transform-origin: center;
}

.btn--hero-primary::before {
  background: #e9e9e7;
}

.btn--hero-primary:hover {
  box-shadow: 0 14px 38px rgba(255, 255, 255, 0.2);
}

@keyframes heroHeartbeat {
  0%, 9%, 20%, 100% { transform: scale(1); }
  4% { transform: scale(1.045); }
  14% { transform: scale(1.028); }
}

/* ──────────────────────────────────────────────
   INVITACIONES WEB — STORYTELLING / MOTION-DRIVEN
────────────────────────────────────────────── */
.invitation {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 8%, rgba(0, 0, 0, 0.045), transparent 25%),
    linear-gradient(180deg, #f7f4ef 0%, #f1ede6 100%);
}

.invitation::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 67%, rgba(0, 0, 0, 0.022) 67% 68%, transparent 68%),
    radial-gradient(circle at 11% 88%, rgba(255,255,255,0.8), transparent 20%);
}

.invitation .container {
  position: relative;
  z-index: 1;
}

.invitation__intro {
  max-width: 850px;
  margin: 0 auto clamp(38px, 6vw, 72px);
  text-align: center;
}

.invitation__title {
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}

.invitation__lead {
  max-width: 62ch;
  margin: 0 auto 1.45rem;
  color: #5a534d;
  line-height: 1.85;
  font-size: 0.98rem;
}

.invitation__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.invitation__pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.58rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(10, 10, 10, 0.08);
  color: #4e4944;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  box-shadow: 0 9px 22px rgba(0, 0, 0, 0.035);
}

.invitation__showcase {
  display: grid;
  grid-template-columns: minmax(330px, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(42px, 7vw, 92px);
}

.invitation__visual {
  min-width: 0;
}

.invitation__visual-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.invitation__visual-head > span,
.invitation__details-kicker {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #59534d;
}

.invitation__visual-head small {
  font-size: 0.66rem;
  color: #8c847c;
}

.invitation__visual-stage {
  width: 100%;
  min-height: clamp(590px, 58vw, 710px);
  position: relative;
  display: grid;
  place-items: center;
  padding: clamp(2rem, 5vw, 3.2rem) 1.3rem;
  overflow: hidden;
  border: 1px solid rgba(84, 65, 50, 0.10);
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.98), transparent 24%),
    radial-gradient(circle at 84% 76%, rgba(239, 200, 202, 0.34), transparent 26%),
    radial-gradient(circle at 55% 38%, rgba(255, 235, 226, 0.72), transparent 36%),
    linear-gradient(145deg, #fbf8f4 0%, #f4eee8 54%, #f8f3ef 100%);
  box-shadow: 0 24px 58px rgba(73, 52, 38, 0.10);
}

.invitation__visual-stage::before,
.invitation__visual-stage::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(125, 94, 70, 0.10);
  pointer-events: none;
}

.invitation__visual-stage::before {
  width: 310px;
  height: 310px;
  right: -160px;
  top: -120px;
}

.invitation__visual-stage::after {
  width: 210px;
  height: 210px;
  left: -120px;
  bottom: -80px;
}

.phone-mockup {
  width: min(300px, 74vw);
  aspect-ratio: 9 / 18.6;
  position: relative;
  z-index: 2;
  padding: 8px;
  border-radius: 40px;
  background: linear-gradient(145deg, #343434, #050505 52%, #222);
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow:
    0 36px 70px rgba(0, 0, 0, 0.34),
    0 8px 24px rgba(0, 0, 0, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.phone-mockup::after {
  content: "";
  position: absolute;
  left: -4px;
  top: 120px;
  width: 3px;
  height: 64px;
  border-radius: 3px 0 0 3px;
  background: #1a1a1a;
  box-shadow: 0 82px 0 #1a1a1a;
}

.phone-mockup__speaker {
  position: absolute;
  z-index: 4;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 19px;
  border-radius: 14px;
  background: #050505;
}

.phone-mockup__screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 33px;
  background: #111;
}

.invitation__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.invitation__video.is-ready { opacity: 1; }

.invitation__video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
  padding: 2rem;
  color: var(--white);
  background: linear-gradient(165deg, #181818, #050505 70%);
  z-index: 1;
}

.invitation__placeholder-kicker {
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.56);
}

.invitation__video-placeholder strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
}

.invitation__video-placeholder > span:last-child {
  max-width: 20ch;
  font-size: 0.72rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.56);
}

.invitation__floating-card {
  position: absolute;
  z-index: 3;
  width: min(228px, 49%);
  padding: 0.95rem 1rem 1rem;
  background: rgba(255, 255, 255, 0.94);
  color: #171717;
  border: 1px solid rgba(96, 72, 54, 0.10);
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(73, 52, 38, 0.12);
  backdrop-filter: blur(10px);
}

.invitation__floating-card--rsvp {
  top: 42px;
  left: 18px;
}

.invitation__floating-card--diet {
  right: 18px;
  bottom: 44px;
}

.invitation__floating-kicker {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.52rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #77706a;
}

.invitation__floating-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 500;
  line-height: 1.08;
}


.invitation__floating-card p {
  margin-top: 0.55rem;
  font-size: 0.68rem;
  line-height: 1.55;
  color: #655d56;
}

.invitation__visual-note {
  max-width: 48ch;
  margin: 1rem auto 0;
  text-align: center;
  color: #7d756e;
  font-size: 0.7rem;
  line-height: 1.65;
}

.invitation__details {
  min-width: 0;
}

.invitation__details-kicker {
  display: block;
  margin-bottom: 0.9rem;
}

.invitation__details-title {
  max-width: 15ch;
  margin-bottom: 1.7rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.06;
  color: var(--dark);
}

.invitation__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.invitation__feature {
  min-height: 165px;
  padding: 1.25rem 1.15rem;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-content: start;
  gap: 0.75rem;
  border: 1px solid rgba(10, 10, 10, 0.1);
  background: rgba(255, 255, 255, 0.58);
  transition: transform 0.32s var(--ease-out), box-shadow 0.32s var(--ease-out), background 0.32s;
}

.invitation__feature-num {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.82rem;
}

.invitation__feature h4 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.17rem;
  font-weight: 500;
  line-height: 1.18;
  color: var(--dark);
}

.invitation__feature p {
  font-size: 0.74rem;
  line-height: 1.65;
  color: #605950;
}

@media (hover: hover) and (pointer: fine) {
  .invitation__feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.07);
    background: rgba(255, 255, 255, 0.82);
  }
}

.invitation__actions {
  margin-top: 1.8rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9rem 1.3rem;
}

.btn--invitation-demo {
  background: var(--dark);
  color: var(--white);
  border: 1px solid var(--dark);
}

.btn--invitation-demo:hover {
  background: transparent;
  color: var(--dark);
}

.invitation__whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  min-height: 44px;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--dark);
  border-bottom: 1px solid rgba(10, 10, 10, 0.26);
  transition: gap 0.28s var(--ease-out), border-color 0.28s;
}

.invitation__whatsapp-link:hover {
  gap: 0.9rem;
  border-color: var(--dark);
}

/* ──────────────────────────────────────────────
   CONTACTO — CTA comercial más claro
────────────────────────────────────────────── */
.contact {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact__grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: center;
}

.contact__desc {
  max-width: 60ch;
  margin-bottom: 1.8rem;
}

.contact__guide {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.9rem;
}

.contact__guide span {
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.contact__wa-primary {
  width: 100%;
  max-width: 610px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.055);
  color: var(--white);
  transition: transform 0.3s var(--ease-out), border-color 0.3s, background 0.3s;
}

.contact__wa-primary:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.09);
}

.contact__wa-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: white;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.2);
}

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

.contact__wa-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact__wa-copy strong {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact__wa-copy small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
  letter-spacing: 0.02em;
}

.contact__wa-arrow {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
  transition: transform 0.3s var(--ease-out);
}

.contact__wa-primary:hover .contact__wa-arrow {
  transform: translateX(4px);
}

.contact__social-row {
  margin-top: 1.4rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.contact__social-label {
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.66rem;
}

.contact__social-links {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

.contact__social-links a {
  border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}

.contact__social-links a:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.contact__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__availability-card {
  width: min(420px, 100%);
  min-height: 300px;
  padding: clamp(2rem, 5vw, 3.4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.07), transparent 32%),
    rgba(255, 255, 255, 0.018);
  position: relative;
  overflow: hidden;
}

.contact__availability-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -95px;
  bottom: -95px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact__availability-kicker {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 1rem;
}

.contact__availability-card strong {
  max-width: 10ch;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
}

.contact__availability-card p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact__availability-line {
  width: 58px;
  height: 1px;
  margin: 1.6rem 0 1rem;
  background: rgba(255, 255, 255, 0.3);
}

.contact__availability-note {
  color: rgba(255, 255, 255, 0.34);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
}

/* ──────────────────────────────────────────────
   WHATSAPP FLOTANTE + MENSAJE TYPEWRITER
────────────────────────────────────────────── */
.whatsapp-float-wrap {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  pointer-events: none;
}

.whatsapp-float-wrap .whatsapp-float {
  position: relative;
  right: auto;
  bottom: auto;
  width: 76px;
  height: 76px;
  flex: 0 0 76px;
  pointer-events: auto;
}

.whatsapp-float-message {
  width: 158px;
  min-width: 158px;
  max-width: 158px;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(10, 10, 10, 0.10);
  border-radius: 20px;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.16),
    0 2px 7px rgba(0, 0, 0, 0.08);
  color: #171717;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.32;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transform: translateX(12px) translateY(2px) scale(0.92);
  transition: opacity 0.32s ease, transform 0.4s var(--ease-out), visibility 0.32s;
  pointer-events: none;
  position: relative;
  margin-bottom: 4px;
}

/* cola lateral para que parezca que sale del botón */
.whatsapp-float-message::before {
  content: "";
  position: absolute;
  right: -7px;
  bottom: 18px;
  width: 16px;
  height: 16px;
  background: rgba(255, 255, 255, 0.98);
  border-right: 1px solid rgba(10, 10, 10, 0.10);
  border-bottom: 1px solid rgba(10, 10, 10, 0.10);
  transform: rotate(-45deg);
  border-bottom-right-radius: 4px;
}

.whatsapp-float-message::after {
  content: "";
  position: absolute;
  right: -17px;
  bottom: 14px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(10, 10, 10, 0.08);
}

.whatsapp-float-wrap.is-message-visible .whatsapp-float-message {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) translateY(0) scale(1);
  pointer-events: auto;
  animation: whatsappBubbleIn 0.42s var(--ease-out) both;
}

@keyframes whatsappBubbleIn {
  0% { opacity: 0; transform: translateX(16px) translateY(4px) scale(0.9); }
  72% { opacity: 1; transform: translateX(-2px) translateY(0) scale(1.02); }
  100% { opacity: 1; transform: translateX(0) translateY(0) scale(1); }
}

.type-cursor {
  display: inline-block;
  width: 1px;
  height: 1em;
  margin-left: 3px;
  background: rgba(23, 23, 23, 0.72);
  animation: typeCursorBlink 0.8s steps(1) infinite;
}

@keyframes typeCursorBlink {
  50% { opacity: 0; }
}

@media (max-width: 960px) {
  .invitation__showcase {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .invitation__visual {
    width: min(100%, 680px);
    margin: 0 auto;
  }

  .invitation__details {
    width: min(100%, 680px);
    margin: 0 auto;
  }

  .invitation__details-title {
    max-width: 18ch;
  }

  .invitation__visual-stage {
    min-height: 650px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact__visual {
    justify-content: flex-start;
  }

  .contact__availability-card {
    width: 100%;
    max-width: 610px;
    min-height: 220px;
  }
}

@media (max-width: 768px) {
  .invitation__intro {
    text-align: left;
    margin-bottom: 34px;
  }

  .invitation__title,
  .invitation__lead {
    margin-left: 0;
    margin-right: 0;
  }

  .invitation__pills {
    justify-content: flex-start;
    gap: 0.5rem;
  }

  .invitation__pills span {
    font-size: 0.56rem;
    letter-spacing: 0.08em;
  }

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

  .invitation__feature {
    min-height: auto;
  }

  .invitation__visual-stage {
    min-height: 590px;
    padding: 1.8rem 0.75rem 1.4rem;
  }

  .invitation__floating-card {
    width: min(180px, 53vw);
    padding: 0.78rem 0.82rem 0.86rem;
  }

  .invitation__floating-card strong {
    font-size: 1.08rem;
  }

  .invitation__floating-card p {
    font-size: 0.62rem;
  }

  .invitation__floating-card--rsvp {
    top: 18px;
    left: 10px;
  }

  .invitation__floating-card--diet {
    right: 10px;
    bottom: 16px;
  }

  .invitation__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .invitation__actions .btn {
    width: 100%;
    max-width: none;
  }

  .invitation__whatsapp-link {
    width: fit-content;
  }

  .contact.section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .contact__visual {
    display: flex;
  }

  .contact__availability-card {
    min-height: 190px;
    padding: 1.6rem;
  }

  .contact__availability-card strong {
    font-size: 2.2rem;
  }

  .contact__wa-primary {
    grid-template-columns: 44px 1fr auto;
    padding: 0.9rem;
  }

  .contact__wa-icon {
    width: 42px;
    height: 42px;
  }

  .whatsapp-float-wrap {
    right: 14px;
    bottom: 14px;
    gap: 7px;
  }

  .whatsapp-float-wrap .whatsapp-float {
    width: 76px;
    height: 76px;
    flex-basis: 76px;
  }

  .whatsapp-float-message {
    width: 146px;
    min-width: 146px;
    max-width: 146px;
    min-height: 68px;
    font-size: 0.62rem;
    padding: 0.82rem 0.9rem;
  }
}


@media (max-width: 768px) {
  .whatsapp-float-message::before {
    right: -6px;
    bottom: 17px;
    width: 14px;
    height: 14px;
  }

  .whatsapp-float-message::after {
    right: -14px;
    bottom: 14px;
    width: 8px;
    height: 8px;
  }
}

@media (max-width: 430px) {
  .invitation__lead {
    font-size: 0.9rem;
  }

  .invitation__visual-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }

  .phone-mockup {
    width: min(264px, 75vw);
  }

  .invitation__visual-stage {
    min-height: 530px;
    padding-inline: 0.45rem;
  }

  .invitation__floating-card {
    width: min(154px, 47vw);
  }

  .invitation__floating-card strong {
    font-size: 0.98rem;
  }

  .invitation__floating-card--rsvp {
    top: 10px;
    left: 5px;
  }

  .invitation__floating-card--diet {
    right: 5px;
    bottom: 9px;
  }

  .contact__guide {
    gap: 0.45rem;
  }

  .contact__guide span {
    font-size: 0.56rem;
    padding: 0.48rem 0.58rem;
  }

  .contact__wa-copy strong {
    font-size: 0.66rem;
  }

  .contact__wa-copy small {
    font-size: 0.61rem;
  }

  .contact__wa-arrow {
    display: none;
  }

  .contact__wa-primary {
    grid-template-columns: 42px 1fr;
  }

  .contact__social-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .whatsapp-float-wrap .whatsapp-float {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
  }

  .whatsapp-float-message {
    width: 134px;
    min-width: 134px;
    max-width: 134px;
    min-height: 64px;
    font-size: 0.59rem;
    padding: 0.75rem 0.82rem;
  }
}


/* ──────────────────────────────────────────────
   UX / RESPONSIVE HARDENING — UI UX PRO MAX
────────────────────────────────────────────── */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

@supports (text-wrap: balance) {
  .hero__title,
  .section-title,
  .invitation__details-title {
    text-wrap: balance;
  }
}

p, h1, h2, h3, h4, a, button, span {
  overflow-wrap: break-word;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

[id] {
  scroll-margin-top: calc(var(--nav-h) + 16px);
}

@media (hover: none) {
  .btn:hover,
  .service-card:hover,
  .invitation__feature:hover {
    transform: none;
  }
}

@media (max-width: 375px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero__ctas {
    width: 100%;
  }

  .hero__ctas .btn {
    width: 100%;
  }

  .invitation__pills span {
    max-width: 100%;
  }

  .invitation__details-title {
    font-size: 1.9rem;
  }

  .whatsapp-float-wrap {
    right: 10px;
    bottom: 10px;
    gap: 6px;
  }

  .whatsapp-float-wrap .whatsapp-float {
    width: 68px;
    height: 68px;
    flex-basis: 68px;
  }

  .whatsapp-float-message {
    width: 124px;
    min-width: 124px;
    max-width: 124px;
    min-height: 60px;
    padding: 0.7rem 0.74rem;
    font-size: 0.55rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .btn--hero-primary,
  .whatsapp-float-wrap .whatsapp-float,
  .type-cursor {
    animation: none !important;
  }
}

/* ============================================================
   V6 — EDITORIAL CONTRAST / COLOR EXPLORATION
   Inspiración: UI UX Pro Max → Photography Studio
   Motion-Driven + Minimalism/Swiss + Storytelling/Hero-Centric
============================================================ */
:root {
  --v6-ink: #161216;
  --v6-ink-2: #211a20;
  --v6-paper: #fbf7f2;
  --v6-paper-2: #f4eee8;
  --v6-berry: #a82f55;
  --v6-berry-deep: #7f1f3d;
  --v6-champagne: #d4b06a;
  --v6-rose: #e9c7d1;
  --v6-muted: #776b72;
}

body {
  background: var(--v6-paper);
  color: var(--v6-ink);
}

/* Jerarquía general: menos tímida, más editorial */
.section-label {
  position: relative;
  color: var(--v6-berry);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  margin-bottom: 1.15rem;
}

.section-label::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  margin-right: 10px;
  vertical-align: middle;
  background: var(--v6-berry);
}

.section-label--light {
  color: var(--v6-champagne);
}

.section-label--light::before {
  background: var(--v6-champagne);
}

.section-title {
  max-width: 18ch;
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--v6-ink);
  margin-bottom: 1.45rem;
}

.section-title em {
  color: var(--v6-berry);
  font-weight: 500;
}

.section-title--light {
  color: #fff;
}

.section-title--light em {
  color: var(--v6-champagne);
}

.section-desc {
  font-size: clamp(0.96rem, 1.4vw, 1.08rem);
  line-height: 1.75;
  color: #655b61;
}

.section-desc--light {
  color: rgba(255,255,255,0.66);
}

.section-header {
  margin-bottom: clamp(48px, 7vw, 86px);
}

/* HERO: marca B/N + un acento de color claro */
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 7px;
  z-index: 4;
  background: linear-gradient(90deg, var(--v6-berry) 0 42%, var(--v6-champagne) 42% 58%, #fff 58% 100%);
}

.hero__overlay {
  background:
    radial-gradient(circle at 50% 56%, rgba(168,47,85,0.12), transparent 36%),
    linear-gradient(to bottom, rgba(0,0,0,0.36), rgba(0,0,0,0.74));
}

.hero__title {
  font-size: clamp(3.4rem, 8vw, 6.7rem);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.025em;
  text-shadow: 0 16px 42px rgba(0,0,0,0.25);
}

.hero__title em {
  color: #f0d7aa;
  font-weight: 500;
}

.hero__subtitle {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(0.92rem, 1.5vw, 1.07rem);
  font-weight: 500;
  color: rgba(255,255,255,0.76);
  letter-spacing: 0.015em;
}

.btn {
  min-height: 52px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.btn--hero-primary {
  background: var(--v6-berry);
  color: #fff;
  border-color: var(--v6-berry);
  box-shadow: 0 14px 40px rgba(168,47,85,0.28);
}

.btn--hero-primary::before {
  background: var(--v6-berry-deep);
}

.btn--hero-primary:hover {
  box-shadow: 0 18px 52px rgba(168,47,85,0.42);
}

.btn--ghost {
  border-color: rgba(255,255,255,0.62);
  background: rgba(255,255,255,0.03);
}

/* QUIÉN SOY: más editorial y con color sin dejar de ser sobrio */
.about {
  background:
    linear-gradient(90deg, rgba(168,47,85,0.035), transparent 28%),
    var(--v6-paper);
}

.about__img {
  border-radius: 0;
  box-shadow: 22px 22px 0 rgba(168,47,85,0.10), 0 22px 54px rgba(34,25,30,0.12);
}

.about__img-accent {
  border: 2px solid rgba(212,176,106,0.65);
}

.about__body {
  color: #51494e;
  font-size: 0.96rem;
}

.about__body strong {
  color: var(--v6-berry-deep);
  font-weight: 800;
}

.about__stats {
  border-top: 2px solid rgba(168,47,85,0.15);
}

.stat__num {
  color: var(--v6-berry);
  font-weight: 600;
  font-size: 3.15rem;
}

.stat__label {
  color: #6e6269;
  font-weight: 700;
}

/* SERVICIOS: negro menos plano, tarjetas con ritmo visual */
.services.section--dark {
  position: relative;
  background:
    radial-gradient(circle at 12% 18%, rgba(168,47,85,0.14), transparent 28%),
    radial-gradient(circle at 88% 80%, rgba(212,176,106,0.08), transparent 26%),
    var(--v6-ink);
}

.services__grid {
  gap: 14px;
}

.service-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  min-height: 320px;
}

.service-card:nth-child(2) {
  background: linear-gradient(145deg, rgba(168,47,85,0.13), rgba(255,255,255,0.03));
}

.service-card:nth-child(3) {
  background: linear-gradient(145deg, rgba(212,176,106,0.09), rgba(255,255,255,0.03));
}

.service-card--wide {
  min-height: 0;
}

.service-card__icon {
  width: 50px;
  height: 50px;
  color: var(--v6-champagne);
}

.service-card__title {
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.015em;
}

.service-card__list li {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.74);
}

.service-card__list li::before {
  color: var(--v6-berry);
  font-weight: 800;
}

.service-card__tags span {
  border-radius: 999px;
  color: rgba(255,255,255,0.72);
  border-color: rgba(212,176,106,0.26);
  background: rgba(255,255,255,0.025);
}

@media (hover:hover) and (pointer:fine) {
  .service-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.065);
    border-color: rgba(212,176,106,0.42);
  }
}

/* INVITACIONES: más viva, mantiene protagonismo del video */
.invitation {
  background:
    radial-gradient(circle at 12% 16%, rgba(168,47,85,0.13), transparent 23%),
    radial-gradient(circle at 88% 78%, rgba(212,176,106,0.14), transparent 22%),
    linear-gradient(180deg, #fff9f7 0%, #f7eef0 50%, #f7f0e8 100%);
}

.invitation__title {
  max-width: 15ch;
}

.invitation__lead {
  color: #5c5057;
  font-size: 1rem;
}

.invitation__pills span {
  color: var(--v6-berry-deep);
  font-weight: 800;
  border-color: rgba(168,47,85,0.16);
  background: rgba(255,255,255,0.78);
  box-shadow: 0 10px 26px rgba(100,50,67,0.07);
}

.invitation__visual-head > span,
.invitation__details-kicker {
  color: var(--v6-berry);
  font-weight: 800;
  letter-spacing: 0.18em;
}

.invitation__visual-stage {
  border: 1px solid rgba(168,47,85,0.12);
  background:
    radial-gradient(circle at 16% 12%, rgba(255,255,255,0.94), transparent 23%),
    linear-gradient(145deg, #f8eaee 0%, #f8f3ed 48%, #ead9c2 100%);
  box-shadow: 0 28px 70px rgba(83,44,57,0.12);
}

.invitation__floating-card {
  border-radius: 16px;
  border-color: rgba(168,47,85,0.13);
  box-shadow: 0 18px 44px rgba(85,46,58,0.13);
}

.invitation__floating-kicker {
  color: var(--v6-berry);
  font-weight: 800;
}

.invitation__details-title {
  font-size: clamp(2.45rem, 4.7vw, 4.3rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--v6-ink);
}

.invitation__features {
  gap: 14px;
}

.invitation__feature {
  border-radius: 16px;
  border-color: rgba(70,35,48,0.10);
  background: rgba(255,255,255,0.76);
  box-shadow: 0 10px 24px rgba(75,39,52,0.045);
}

.invitation__feature-num {
  background: var(--v6-berry);
  font-weight: 600;
}

.invitation__feature:nth-child(even) .invitation__feature-num {
  background: var(--v6-ink);
}

.invitation__feature--music {
  grid-column: 1 / -1;
  min-height: 130px;
  background:
    linear-gradient(90deg, rgba(168,47,85,0.10), rgba(212,176,106,0.11)),
    rgba(255,255,255,0.78);
}

.invitation__feature h4 {
  font-size: 1.3rem;
  font-weight: 600;
}

.btn--invitation-demo {
  background: var(--v6-berry);
  border-color: var(--v6-berry);
  box-shadow: 0 14px 34px rgba(168,47,85,0.20);
}

.btn--invitation-demo:hover {
  background: var(--v6-berry-deep);
  color: #fff;
  border-color: var(--v6-berry-deep);
}

.invitation__whatsapp-link {
  color: var(--v6-berry-deep);
  border-color: rgba(168,47,85,0.34);
  font-weight: 800;
}

/* PORTFOLIO: más contraste y fotos como foco */
.portfolio {
  background: var(--v6-paper);
}

.filter-btn {
  border-radius: 999px;
  border-color: rgba(22,18,22,0.14);
  color: #5f545b;
  font-weight: 800;
}

.filter-btn:hover,
.filter-btn--active {
  background: var(--v6-berry);
  color: #fff;
  border-color: var(--v6-berry);
}

.portfolio__grid {
  gap: 14px;
}

.portfolio__item {
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(28,20,25,0.08);
}

.btn-vermas {
  border-radius: 999px;
  background: var(--v6-ink);
  padding-inline: 30px;
  letter-spacing: 0.08em;
}

.btn--outline {
  color: var(--v6-berry-deep);
  border-color: var(--v6-berry);
  font-weight: 800;
}

.btn--outline:hover {
  background: var(--v6-berry);
  color: #fff;
}

/* FAQ: oscuro editorial con acentos claros */
.faq.section--dark {
  background:
    radial-gradient(circle at 85% 10%, rgba(168,47,85,0.13), transparent 30%),
    var(--v6-ink-2);
}

.faq__item {
  border-top-color: rgba(255,255,255,0.11);
}

.faq__question {
  font-size: clamp(1.28rem, 2.5vw, 1.65rem);
  font-weight: 600;
  color: rgba(255,255,255,0.86);
}

.faq--open .faq__question,
.faq__question:hover {
  color: #fff;
}

.faq--open .faq__question .faq__icon {
  color: var(--v6-champagne);
}

.faq__toggle {
  border-radius: 999px;
  border-color: rgba(212,176,106,0.30);
  color: var(--v6-champagne);
  font-weight: 800;
}

/* CONTACTO: más conversional y menos plano */
.contact.section--dark {
  background:
    radial-gradient(circle at 12% 22%, rgba(168,47,85,0.18), transparent 30%),
    linear-gradient(145deg, #171217 0%, #241820 100%);
}

.contact__desc {
  color: rgba(255,255,255,0.73);
  font-size: 1rem;
}

.contact__guide span {
  border-radius: 999px;
  border-color: rgba(212,176,106,0.26);
  color: var(--v6-champagne);
  font-weight: 700;
}

.contact__wa-primary {
  border-radius: 16px;
  border-color: rgba(255,255,255,0.18);
  background: linear-gradient(90deg, rgba(168,47,85,0.14), rgba(255,255,255,0.045));
}

.contact__wa-copy strong {
  font-size: 0.78rem;
  font-weight: 800;
}

.contact__availability-card {
  border-radius: 22px;
  border-color: rgba(212,176,106,0.24);
  background:
    radial-gradient(circle at 75% 18%, rgba(212,176,106,0.15), transparent 32%),
    rgba(255,255,255,0.035);
}

.contact__availability-card strong {
  color: #fff;
  font-weight: 600;
}

.contact__availability-kicker,
.contact__availability-note {
  color: var(--v6-champagne);
}

/* Navbar: mantiene logo B/N pero con más presencia */
.navbar.scrolled,
.navbar.navbar--scrolled {
  background: rgba(22,18,22,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.navbar__logo-text {
  font-weight: 600;
}

.navbar__logo-sub {
  color: rgba(255,255,255,0.70);
  font-weight: 700;
}

/* WhatsApp bubble blanca sigue siendo sutil */
.whatsapp-float-message {
  background: rgba(255,255,255,0.97);
  color: var(--v6-ink);
  border-color: rgba(22,18,22,0.10);
  box-shadow: 0 14px 38px rgba(31,21,27,0.18);
}

.type-cursor {
  background: var(--v6-berry);
}

/* Responsive real: reflow, no simple shrink */
@media (max-width: 960px) {
  .section-title {
    max-width: 20ch;
  }

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

  .service-card--wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: clamp(2.65rem, 12vw, 4rem);
    line-height: 1.0;
  }

  .hero__title {
    font-size: clamp(3.15rem, 15vw, 5rem);
  }

  .hero__subtitle {
    max-width: 35ch;
  }

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

  .service-card,
  .service-card--wide {
    min-height: auto;
    grid-column: auto;
    border-radius: 15px;
  }

  .invitation__feature--music {
    grid-column: auto;
    min-height: auto;
  }

  .invitation__details-title {
    max-width: 17ch;
    font-size: clamp(2.35rem, 10vw, 3.35rem);
  }
}

@media (max-width: 430px) {
  .section-label {
    font-size: 0.61rem;
    letter-spacing: 0.17em;
  }

  .section-label::before {
    width: 20px;
    margin-right: 7px;
  }

  .hero__title {
    font-size: clamp(2.9rem, 15vw, 4.2rem);
  }

  .btn {
    font-size: 0.68rem;
    letter-spacing: 0.13em;
  }

  .service-card__title {
    font-size: 1.85rem;
  }

  .invitation__pills {
    gap: 0.45rem;
  }

  .invitation__pills span {
    font-size: 0.54rem;
    letter-spacing: 0.08em;
    padding: 0.55rem 0.68rem;
  }

  .invitation__feature h4 {
    font-size: 1.16rem;
  }

  .faq__question {
    font-size: 1.12rem;
  }
}
