/* ═══════════════════════════════════════════════════
   components.css — Studio72H
   Elementos reutilizables: botones, cards, chips,
   items de FAQ, marquee, floats, mobile menu, popup
═══════════════════════════════════════════════════ */

/* ── NAV LINKS & CTA ── */
.nav-link {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cream3);
  text-decoration: none;
  transition: color .3s;
  font-weight: 400;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--cream);
}

.nav-cta {
  background: var(--lime);
  color: var(--bg);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .6rem 1.6rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(200, 245, 66, 0.3);
  transition: box-shadow .35s ease, transform .3s cubic-bezier(.25, .46, .45, .94);
}

.nav-cta:hover,
.nav-cta:focus {
  box-shadow: 0 0 35px rgba(200, 245, 66, 0.5);
  transform: translateY(-1px);
}

/* ── HAMBURGER BUTTON ── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 9001;
  min-width: 44px;
  min-height: 44px;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all .3s ease;
}

.nav-burger.menu-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-burger.menu-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 8500;
  background: #080808;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-nav-link {
  font-family: var(--bebas);
  font-size: 1.6rem;
  letter-spacing: .1em;
  color: var(--cream);
  text-decoration: none;
  display: block;
  width: 200px;
  padding: 1.2rem 0;
  text-align: center;
  border-bottom: 1px solid var(--cream5);
  opacity: 0;
  transform: translateY(10px);
  transition: color .2s, opacity .2s, transform .2s;
}

.mobile-nav-link:first-child {
  border-top: 1px solid var(--cream5);
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  color: var(--lime);
}

.mobile-menu.open .mobile-nav-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open .mobile-nav-link:nth-child(1) {
  transition-delay: .05s;
}

.mobile-menu.open .mobile-nav-link:nth-child(2) {
  transition-delay: .1s;
}

.mobile-menu.open .mobile-nav-link:nth-child(3) {
  transition-delay: .15s;
}

.mobile-menu-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lime);
  color: var(--bg);
  width: 200px;
  text-align: center;
  padding: .9rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .2s .2s, transform .2s .2s;
}

.mobile-menu.open .mobile-menu-cta {
  opacity: 1;
  transform: translateY(0);
}

/* ── HERO BUTTONS ── */
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  background: var(--lime);
  color: var(--bg);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 1.1rem 2.4rem;
  text-decoration: none;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(200, 245, 66, 0.25), 0 0 50px rgba(200, 245, 66, 0.1);
  transition: transform .3s, box-shadow .35s ease;
}

.hero-btn:hover,
.hero-btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(200, 245, 66, 0.4), 0 0 80px rgba(200, 245, 66, 0.15);
}

.hero-btn svg {
  width: 14px;
  height: 14px;
  transition: transform .3s;
}

.hero-btn:hover svg {
  transform: translate(3px, -3px);
}

.hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream3);
  text-decoration: none;
  margin-left: 1.5rem;
  transition: color .3s;
}

.hero-btn-ghost:hover,
.hero-btn-ghost:focus {
  color: var(--cream);
}

/* ── MARQUEE ── */
.marquee {
  background: var(--lime);
  overflow: hidden;
  padding: .55rem 0;
  position: relative;
  z-index: 5;
  box-shadow: 0 4px 30px rgba(200, 245, 66, 0.15);
}

.marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marquee 20s linear infinite;
  font-family: var(--bebas);
  font-size: .85rem;
  letter-spacing: .14em;
  color: var(--bg);
}

.marquee-sep {
  opacity: .25;
}

/* ── SERVICE CHIPS ── */
.svc-chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--lime);
  border: 1px solid rgba(200, 245, 66, 0.1);
  background: rgba(200, 245, 66, 0.04);
  padding: .35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.svc-chip-dot {
  width: 5px;
  height: 5px;
  background: var(--lime);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* ── SERVICE CARDS ── */
.svc-card {
  padding: 2.8rem;
  background: var(--bg3);
  border: 1px solid var(--cream5);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: border-color .4s, background .4s, transform .2s;
}

.svc-card:hover {
  border-color: rgba(200, 245, 66, 0.3);
  background: rgba(200, 245, 66, 0.02);
  box-shadow: 0 8px 40px rgba(200, 245, 66, 0.08);
}

.svc-card:active {
  transform: scale(.98);
}

.svc-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--lime), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s cubic-bezier(.16, 1, .3, 1);
}

.svc-card:hover::after {
  transform: scaleX(1);
}

.svc-card-head {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.svc-card-idx {
  font-family: var(--sans);
  font-size: .7rem;
  color: var(--lime);
  opacity: .5;
  letter-spacing: .1em;
}

.svc-card-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--lime2);
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: var(--lime3);
  transition: all .3s;
}

.svc-card:hover .svc-card-icon {
  background: var(--lime2);
  border-color: rgba(200, 245, 66, .3);
  box-shadow: 0 0 15px rgba(200, 245, 66, 0.15);
}

.svc-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--lime);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svc-card-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: .5rem;
  letter-spacing: -.01em;
}

.svc-card-desc {
  font-size: .82rem;
  color: var(--cream3);
  line-height: 1.8;
  font-weight: 300;
}

.svc-card-tags {
  display: flex;
  gap: .4rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.svc-card-tag {
  font-size: .58rem;
  border: 1px solid var(--cream5);
  padding: .15rem .5rem;
  border-radius: 3px;
  color: var(--cream4);
}

/* ── PRICING GUARANTEE & INCLUDED LIST ── */
.pricing-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border: 1px solid var(--lime2);
  padding: 1.4rem;
  border-radius: 6px;
  background: var(--lime3);
}

.pg-icon {
  width: 40px;
  height: 40px;
  background: var(--lime2);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 6px;
}

.pg-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--lime);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pg-text {
  font-size: .8rem;
  line-height: 1.7;
  color: var(--cream3);
  font-weight: 300;
}

.pg-text strong {
  color: var(--cream);
  font-weight: 500;
}

.inc-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--cream5);
  font-size: .85rem;
  color: var(--cream2);
  font-weight: 300;
  transition: all .25s;
}

.inc-row:hover {
  color: var(--cream);
  padding-left: .5rem;
}

.inc-row:first-of-type {
  border-top: 1px solid var(--cream5);
}

.inc-check {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(200, 245, 66, .25);
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.inc-row:hover .inc-check {
  background: var(--lime2);
  border-color: var(--lime);
  box-shadow: 0 0 10px rgba(200, 245, 66, 0.2);
}

.inc-check svg {
  width: 10px;
  height: 10px;
  stroke: var(--lime);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  background: var(--lime);
  color: var(--bg);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 1.1rem 2rem;
  text-decoration: none;
  margin-top: 2.5rem;
  border-radius: 4px;
  box-shadow: 0 0 25px rgba(200, 245, 66, 0.25), 0 0 50px rgba(200, 245, 66, 0.1);
  transition: transform .3s, box-shadow .35s ease;
}

.pricing-cta:hover,
.pricing-cta:focus {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(200, 245, 66, 0.4), 0 0 80px rgba(200, 245, 66, 0.15);
}

.pricing-cta svg {
  width: 14px;
  height: 14px;
}

/* ── TESTIMONIAL COMPONENTS ── */
.testi-slot {
  transition: opacity .4s, transform .4s;
}

.testi-slot.out {
  opacity: 0;
  transform: translateY(12px);
}

.testi-stars {
  color: var(--lime);
  font-size: 1.2rem;
  letter-spacing: .2em;
  margin-bottom: 1.5rem;
}

.testi-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.55;
  color: var(--cream2);
  margin-bottom: 2rem;
}

.testi-author {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cream4);
}

.testi-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.testi-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  min-height: 8px;
  border-radius: 50%;
  background: var(--cream4);
  cursor: pointer;
  flex-shrink: 0;
  transition: width .3s ease, border-radius .3s ease, background .3s ease;
  padding: 0;
  border: none;
}

.testi-dot.active {
  background: var(--lime);
  width: 24px;
  min-width: 24px;
  border-radius: 4px;
}

/* ── FAQ ITEMS ── */
.faq-item {
  background: var(--bg);
  padding: 2.5rem;
  transition: background .3s;
}

.faq-item:hover {
  background: var(--bg2);
}

.faq-q {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .6rem;
  letter-spacing: -.01em;
}

.faq-a {
  font-size: .8rem;
  color: var(--cream3);
  line-height: 1.8;
  font-weight: 300;
}

.faq-payment {
  margin-top: 2.5rem;
  border: 1px solid var(--lime2);
  border-radius: 6px;
  padding: 2.5rem;
  background: var(--lime3);
}

.faq-payment .faq-q {
  color: var(--lime);
  font-size: 1.15rem;
}

.faq-payment .faq-a {
  color: var(--cream2);
}

.faq-payment strong {
  color: var(--cream);
  font-weight: 600;
}

/* ── FINAL CTA BUTTON ── */
.final-btn {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  background: var(--bg);
  color: var(--lime);
  font-family: var(--bebas);
  font-size: 1.5rem;
  letter-spacing: .04em;
  padding: 1.1rem 3rem .95rem;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  transition: transform .3s, box-shadow .35s ease;
  white-space: nowrap;
}

.final-btn:hover,
.final-btn:focus {
  transform: translateY(-4px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.final-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--lime);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 800;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  transition: transform .3s;
  animation: wa-pulse 2s infinite;
}

.wa-float:hover {
  transform: scale(1.1);
}

/* ── REVEAL ANIMATIONS (components) ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s cubic-bezier(.16, 1, .3, 1),
              transform .8s cubic-bezier(.16, 1, .3, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .7s .1s cubic-bezier(.16, 1, .3, 1),
              transform .7s .1s cubic-bezier(.16, 1, .3, 1);
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(.95);
  transition: opacity .8s .15s cubic-bezier(.16, 1, .3, 1),
              transform .8s .15s cubic-bezier(.16, 1, .3, 1);
}

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