:root {
  --black: #0a0a0a;
  --black-soft: #141414;
  --black-card: #1a1a1a;
  --gold: #c9a227;
  --gold-light: #e8c547;
  --gold-dark: #9a7b1a;
  --cream: #f5f0e6;
  --text: #e8e4dc;
  --text-muted: #a39e94;
  --border: rgba(201, 162, 39, 0.25);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', system-ui, sans-serif;
  --radius: 12px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.nav__inner {
  width: min(1140px, 92vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold-light);
}

.nav__logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}

.nav__links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav__links a:hover { color: var(--gold-light); }

.nav__cta {
  padding: 8px 18px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold-light) !important;
}

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

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: 0.3s;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 120px 24px 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 162, 39, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(201, 162, 39, 0.06) 0%, transparent 50%),
    var(--black);
  z-index: 0;
}

.hero__content { position: relative; z-index: 1; max-width: 720px; }

.hero__logo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 28px;
  box-shadow: 0 0 60px rgba(201, 162, 39, 0.3);
  border: 2px solid var(--border);
}

.hero__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero__subtitle {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.hero__text {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 520px;
  margin: 0 auto 36px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
  border: none;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--black);
  box-shadow: 0 8px 30px rgba(201, 162, 39, 0.35);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 162, 39, 0.45);
}

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

.btn--outline:hover {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.08);
}

.btn--large { padding: 18px 36px; font-size: 0.95rem; }

/* Sections */
.section { padding: 100px 0; }

.section__label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section__label--center { text-align: center; }

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--cream);
  margin-bottom: 48px;
  line-height: 1.2;
}

.section__title--center { text-align: center; }

/* About */
.section--about { background: var(--black-soft); }

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--cream);
  margin-bottom: 20px;
  line-height: 1.25;
}

.about__text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 0.92rem;
}

.about__features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature {
  padding: 24px;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.feature__icon {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.feature h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 6px;
}

.feature p { font-size: 0.85rem; color: var(--text-muted); }

/* Services */
.section--services { background: var(--black); }

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

.service-card {
  padding: 36px 28px;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.3s, border-color 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.service-card--featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(201, 162, 39, 0.1), var(--black-card));
}

.service-card__icon { font-size: 2rem; margin-bottom: 16px; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 12px;
}

.service-card__intro {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.5;
}

.service-card ul {
  list-style: none;
  margin-bottom: 20px;
}

.service-card li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.service-card li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.service-card__price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-light);
  font-weight: 600;
}

.services-extra {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.services-extra__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.services-extra__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.services-extra__item {
  padding: 20px;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.services-extra__item strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
}

.services-extra__item span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Workflow */
.section--workflow {
  background: linear-gradient(180deg, var(--black), var(--black-soft));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.workflow__intro {
  text-align: center;
  max-width: 640px;
  margin: -32px auto 48px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

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

.workflow__step {
  padding: 28px 22px;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  transition: border-color 0.3s;
}

.workflow__step:hover {
  border-color: var(--gold);
}

.workflow__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(201, 162, 39, 0.35);
  margin-bottom: 12px;
  line-height: 1;
}

.workflow__step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 10px;
  line-height: 1.25;
}

.workflow__step p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Vitrina premium */
.section--vitrina {
  position: relative;
  background: var(--black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.vitrina__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201, 162, 39, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.vitrina__intro {
  text-align: center;
  max-width: 680px;
  margin: -28px auto 48px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.vitrina__hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}

.vitrina__hero-media {
  position: relative;
  background: linear-gradient(160deg, #1a1a1a, #0a0a0a);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 0 80px rgba(201, 162, 39, 0.2);
}

.vitrina__hero-img {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
  margin: 0 auto;
}

.vitrina__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 8px 14px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
}

.vitrina__hero-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--cream);
  margin-bottom: 24px;
  line-height: 1.25;
}

.vitrina__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.vitrina__features li {
  padding-left: 20px;
  border-left: 2px solid var(--gold);
}

.vitrina__features strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.vitrina__features span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.vitrina__card {
  margin: 0;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.vitrina__card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.vitrina__card--featured {
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(201, 162, 39, 0.15);
}

.vitrina__card img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  background: #111;
  padding: 12px;
}

.vitrina__card figcaption {
  padding: 14px 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  border-top: 1px solid var(--border);
}

/* Premium */
.section--premium {
  background: linear-gradient(180deg, var(--black-soft), var(--black));
}

.premium__icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--gold);
}

.gallery__intro {
  text-align: center;
  max-width: 620px;
  margin: -32px auto 36px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

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

.premium__item {
  text-align: center;
  padding: 32px 24px;
}

.premium__item h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.premium__item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Gallery */
.section--gallery { background: var(--black-soft); }

.gallery__filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 22px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}

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

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.gallery__item--compare {
  grid-column: span 1;
}

@media (min-width: 768px) {
  .gallery__item--compare {
    grid-column: span 2;
  }
}

.gallery__item {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 162, 39, 0.4);
}

.gallery__item.hidden { display: none; }

.gallery__compare {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gallery__compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 12px;
  background: #0d0d0d;
}

.gallery__compare-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #111;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
  min-height: 280px;
}

.gallery__compare-panel span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 600;
}

.gallery__compare-panel img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 340px;
  object-fit: contain;
  object-position: center center;
}

/* Caso destacado Coco */
.case-study {
  margin-bottom: 48px;
  padding: 32px;
  background: linear-gradient(160deg, rgba(201, 162, 39, 0.08), var(--black-card));
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: 0 0 60px rgba(201, 162, 39, 0.12);
}

.case-study__header {
  text-align: center;
  margin-bottom: 28px;
}

.case-study__label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.case-study__header h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--cream);
  margin: 8px 0 10px;
}

.case-study__header p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 560px;
  margin: 0 auto;
}

.case-study__compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.case-study__panel {
  background: #111;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.case-study__panel span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 600;
}

.case-study__panel img {
  max-width: 100%;
  max-height: 320px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.case-study__figure {
  object-position: center 40%;
  max-height: 300px !important;
}

.case-study__arrow {
  font-size: 2rem;
  color: var(--gold);
  font-weight: 300;
}

.case-study__vitrina {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 20px;
  background: #0d0d0d;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.case-study__vitrina img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  background: #111;
  border-radius: 8px;
  padding: 8px;
}

.case-study__vitrina-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.case-study__vitrina-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.gallery__single {
  padding: 12px;
  background: #0d0d0d;
}

.gallery__single img {
  width: 100%;
  min-height: 280px;
  max-height: 400px;
  object-fit: contain;
  object-position: center;
  background: #111;
  border-radius: 8px;
  padding: 10px;
}

.gallery__labels {
  display: none;
}

.gallery__info {
  padding: 16px 18px;
}

.gallery__info h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 4px;
}

.gallery__info span {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Process videos */
.section--process-videos { background: var(--black); }

.videos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.video-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.video-card video {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  background: var(--black);
}

.video-card p {
  padding: 12px 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Pricing */
.section--pricing { background: var(--black-soft); }

.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto 24px;
}

.pricing__card {
  padding: 36px;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.pricing__card--highlight {
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(201, 162, 39, 0.12), var(--black-card));
}

.pricing__card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 12px;
}

.pricing__amount {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing__card p:last-child {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pricing__includes {
  list-style: none;
  margin-top: 16px;
  text-align: left;
}

.pricing__includes li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 4px 0 4px 16px;
  position: relative;
}

.pricing__includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* Value anchor */
.value-anchor {
  max-width: 760px;
  margin: -24px auto 40px;
  text-align: center;
}

.value-anchor__lead {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.value-anchor__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.value-anchor__item {
  padding: 24px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--black-card);
}

.value-anchor__item--gold {
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(201, 162, 39, 0.1), var(--black-card));
}

.value-anchor__item--muted { opacity: 0.75; }

.value-anchor__label {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 12px;
}

.value-anchor__item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 3px 0;
}

/* Testimonials */
.section--testimonials { background: var(--black-soft); }

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

.testimonial {
  padding: 0 0 28px;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 0;
  overflow: hidden;
}

.testimonial__img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background: #111;
  padding: 8px;
  border-bottom: 1px solid var(--border);
}

.testimonial .testimonial__stars,
.testimonial p,
.testimonial footer {
  padding-left: 24px;
  padding-right: 24px;
}

.testimonial .testimonial__stars { padding-top: 20px; }

.testimonial--featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(201, 162, 39, 0.08), var(--black-card));
}

.testimonial__stars {
  color: var(--gold-light);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial p {
  font-size: 0.88rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 16px;
}

.testimonial footer strong {
  display: block;
  font-size: 0.85rem;
  color: var(--cream);
}

.testimonial footer span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.testimonials__note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* FAQ */
.section--faq { background: var(--black); }

.faq {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq__item {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq__item summary {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--cream);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: '+';
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 300;
}

.faq__item[open] summary::after { content: '−'; }

.faq__item p {
  padding: 0 20px 18px;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.contact-form-wrap h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--cream);
  margin-bottom: 12px;
}

.contact-form__intro {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group input[type="file"] {
  padding: 10px;
  font-size: 0.82rem;
}

.form-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.photo-preview {
  margin-top: 10px;
  border-radius: 8px;
  overflow: hidden;
  max-width: 200px;
  border: 1px solid var(--border);
}

.photo-preview img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

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

.form-success {
  text-align: center;
  color: #6dd47e;
  font-size: 0.88rem;
  padding: 12px;
  background: rgba(109, 212, 126, 0.1);
  border-radius: 8px;
}

.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown) {
  border-color: rgba(220, 80, 80, 0.5);
}

.pricing__note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Steps */
.section--steps { background: var(--black); }

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.steps li {
  text-align: center;
  padding: 24px 16px;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.steps__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 0.9rem;
}

.steps p { font-size: 0.82rem; color: var(--text-muted); }

.terms {
  max-width: 700px;
  margin: 0 auto;
  padding: 28px;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.terms h3 {
  font-family: var(--font-display);
  color: var(--gold-light);
  margin-bottom: 12px;
}

.terms ul { list-style: none; }

.terms li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.terms li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* Contact */
.section--contact {
  background: linear-gradient(180deg, var(--black-soft), var(--black));
  border-top: 1px solid var(--border);
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact__info h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--cream);
  margin-bottom: 16px;
}

.contact__info > p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 0.92rem;
}

.contact__logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 24px 0 12px;
  border: 2px solid var(--border);
}

.contact__delivery {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Footer */
.footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--border);
  background: var(--black-soft);
}

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

.footer__logo {
  border-radius: 50%;
  margin-bottom: 12px;
  border: 1px solid var(--border);
}

.footer__tagline {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.footer__copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer__col h4 {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1rem;
  margin-bottom: 14px;
}

.footer__col ul {
  list-style: none;
}

.footer__col li {
  margin-bottom: 8px;
}

.footer__col a,
.footer__col p {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer__col a:hover { color: var(--gold-light); }

.footer__holder {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--gold);
  transition: background 0.2s, color 0.2s;
}

.footer__social a:hover {
  background: var(--gold);
  color: var(--black);
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.contact__link {
  font-size: 0.9rem;
  color: var(--text);
  transition: color 0.2s;
}

.contact__link:hover { color: var(--gold-light); }

.contact__link strong {
  color: var(--gold);
  margin-right: 8px;
}

.contact__payment h3 {
  font-family: var(--font-display);
  color: var(--cream);
  margin-bottom: 8px;
}

.contact__payment p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact__holder {
  margin-top: 4px;
  font-style: italic;
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s;
}

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

.whatsapp-float svg { width: 30px; height: 30px; color: #fff; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox[hidden] { display: none; }

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
}

.lightbox img {
  max-height: 80vh;
  max-width: 90vw;
  border-radius: var(--radius);
  object-fit: contain;
}

.lightbox__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 95vw;
}

.lightbox__compare[hidden] { display: none; }

.lightbox__panel {
  text-align: center;
}

.lightbox__panel span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 10px;
}

.lightbox__panel img {
  max-height: 70vh;
  max-width: 42vw;
  background: #111;
  padding: 12px;
  border-radius: var(--radius);
}

#lightboxImg[hidden] { display: none; }

.lightbox p {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
  .about,
  .services,
  .premium,
  .contact,
  .contact-grid,
  .pricing,
  .workflow,
  .services-extra__grid,
  .testimonials,
  .value-anchor__compare,
  .footer__grid,
  .vitrina__hero,
  .vitrina__showcase { grid-template-columns: 1fr; }

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

  .nav__toggle { display: flex; }

  .nav__links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.97);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
  }

  .nav__links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
}

@media (max-width: 600px) {
  .steps { grid-template-columns: 1fr; }
  .vitrina__hero,
  .vitrina__showcase,
  .lightbox__compare { grid-template-columns: 1fr; }

  .case-study__compare,
  .case-study__vitrina { grid-template-columns: 1fr; }

  .case-study__arrow { display: none; }

  .gallery__item--compare { grid-column: span 1; }

  .lightbox__panel img { max-width: 90vw; }
}
