/* ========== ARTS Landing Page — Sales Funnel ========== */

/* === DESIGN TOKENS === */
:root {
  --bg-deep: #0f1210;
  --bg-section: #141914;
  --bg-section-alt: #111510;
  --bg-card: rgba(208, 193, 169, 0.03);
  --bg-card-hover: rgba(208, 193, 169, 0.06);
  --gold: #d0c1a9;
  --gold-light: #e6dac6;
  --gold-dim: rgba(208, 193, 169, 0.5);
  --text-primary: #ebe4d8;
  --text-secondary: rgba(235, 228, 216, 0.6);
  --text-muted: rgba(235, 228, 216, 0.3);
  --border: rgba(208, 193, 169, 0.1);
  --border-hover: rgba(208, 193, 169, 0.22);
  --glow-gold: rgba(208, 193, 169, 0.06);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 40px;
  --radius-full: 999px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Outfit", sans-serif;
  --font-accent: "Syne", sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

/* === LAYOUT === */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

/* === SECTION COMMON === */
.section-label {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

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

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* === NAVIGATION === */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.landing-nav.scrolled {
  background: rgba(15, 18, 16, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 40px;
  object-fit: contain;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--bg-deep);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(208, 193, 169, 0.2);
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(208, 193, 169, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(44, 50, 40, 0.3) 0%, transparent 50%),
    var(--bg-deep);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.hero-label {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: rgba(208, 193, 169, 0.08);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.hero-title-small {
  font-size: 0.75em;
  font-weight: 400;
  vertical-align: baseline;
}

.hero-title-cursive {
  font-family: 'Great Vibes', cursive;
  font-size: 1.5em;
  font-weight: 400;
  line-height: 0.8;
  vertical-align: baseline;
  padding-right: 0.2em;
  background: linear-gradient(
    110deg,
    #cca458 0%,
    #cca458 35%,
    #ffffff 50%,
    #cca458 65%,
    #cca458 100%
  );
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: ticket-shine 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes ticket-shine {
  0% {
    background-position: -100% center;
  }
  25% {
    background-position: 200% center;
  }
  100% {
    background-position: 200% center;
  }
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.35;
  margin: 0 auto 1.5rem;
}

.video-demo-text {
  margin-bottom: 1.5rem;
  color: var(--gold-light);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* === VIDEO CONTAINER === */
.hero-video {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: rgba(20, 25, 20, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.video-container:hover {
  border-color: var(--border-hover);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px var(--glow-gold);
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.video-container video.playing {
  display: block;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background:
    linear-gradient(135deg, rgba(44, 50, 40, 0.4) 0%, rgba(15, 18, 16, 0.6) 100%);
}

.video-placeholder.hidden {
  display: none;
}

.video-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.4s var(--ease);
  animation: pulse-glow 2.5s ease-in-out infinite;
}

.video-play-btn svg {
  margin-left: 4px;
  width: 28px;
  height: 28px;
}

.video-container:hover .video-play-btn {
  transform: scale(1.1);
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(208, 193, 169, 0.15);
}

.video-label {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(208, 193, 169, 0.1);
  }

  50% {
    box-shadow: 0 0 30px 10px rgba(208, 193, 169, 0.08);
  }
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

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

/* === GALLERY === */
.gallery {
  padding: 4rem 0;
  background: var(--bg-section);
  text-align: center;
}

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

.gallery-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}

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

/* === ABOUT === */
.about {
  padding: 4rem 0;
  background: var(--bg-deep);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(208, 193, 169, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.about-content {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

.about-title {
  margin-bottom: 2rem;
}

.about-divider {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  margin: 0 auto 2.5rem;
}

.about-text p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.about-text strong {
  color: var(--gold-light);
  font-weight: 500;
}

.about-ornament {
  display: inline-block;
  color: var(--gold);
  font-size: 1.5rem;
  margin-top: 1rem;
  opacity: 0.4;
}

/* === PACKAGES === */
.packages {
  padding: 4rem 0;
  background: var(--bg-section);
  text-align: center;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  align-items: start;
}

.package-card {
  position: relative;
  background: #232724;
  border: 1px solid rgba(208, 193, 169, 0.3);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

/* Featured / Most expensive card */
.package-card.featured {
  background: linear-gradient(135deg, var(--gold-light), #c5b297);
  border: none;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6), 0 0 60px rgba(208, 193, 169, 0.25);
  transform: scale(1.08);
  z-index: 2;
  color: var(--bg-deep);
}

.package-card.featured:hover {
  transform: scale(1.08) translateY(-6px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7), 0 0 70px rgba(208, 193, 169, 0.35);
}

/* Featured Card Inverted Colors */
.package-card.featured .package-name {
  color: var(--bg-deep);
  font-size: 2.2rem;
  font-weight: 600;
}

.package-card.featured .price-amount,
.package-card.featured .price-currency,
.package-card.featured .feature-list li {
  color: var(--bg-deep);
}

.package-card.featured .price-amount {
  font-size: 4.2rem;
}

.package-card.featured svg {
  stroke: var(--bg-deep) !important;
  width: 26px;
  height: 26px;
}

.package-card.featured .package-divider {
  background: var(--bg-deep);
  opacity: 0.25;
  margin: 1.5rem auto;
}

.package-card.featured .package-ideal {
  color: rgba(15, 18, 16, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
}

.package-card.featured .package-includes p {
  color: rgba(15, 18, 16, 0.95);
  font-weight: 600;
  font-size: 0.95rem;
}

.package-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-deep);
  color: var(--gold-light);
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.8rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(208, 193, 169, 0.2);
}

.package-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 0;
  color: var(--text-primary);
}

.package-divider {
  width: 40px;
  height: 1px;
  background: var(--gold-dim);
  margin: 1.2rem auto;
  opacity: 0.5;
}

.package-ideal {
  font-size: 0.85rem;
  color: var(--gold-light);
  font-style: italic;
  line-height: 1.4;
  margin: 0.8rem 0 1.5rem;
}

.package-includes {
  margin-top: 1.5rem;
}

.package-includes p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.package-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 0.3rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.price-currency {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-dim);
  letter-spacing: 0.05em;
}

.price-usd {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.package-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.package-features li {
  padding: 0.55rem 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(208, 193, 169, 0.06);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.package-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.package-cta {
  display: inline-block;
  width: 100%;
  padding: 0.85rem 1.5rem;
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-primary);
  transition: all 0.3s var(--ease);
  letter-spacing: 0.02em;
}

.package-cta:hover {
  background: var(--gold);
  color: var(--bg-deep);
  border-color: var(--gold);
}

.package-card.featured .package-cta {
  background: var(--gold);
  color: var(--bg-deep);
  border-color: var(--gold);
}

.package-card.featured .package-cta:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 25px rgba(208, 193, 169, 0.2);
}

/* Package card reveal stagger */
.package-card.reveal:nth-child(1) {
  transition-delay: 0s;
}

.package-card.reveal:nth-child(2) {
  transition-delay: 0.15s;
}

.package-card.reveal:nth-child(3) {
  transition-delay: 0.3s;
}

/* === FAQ === */
.faq {
  padding: 1.5rem 0;
  background: var(--bg-deep);
  text-align: center;
}

.faq .section-label {
  font-size: 0.6rem;
  margin-bottom: 0.5rem;
}

.faq .section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 0.5rem;
}

.faq .section-subtitle {
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.faq-grid {
  max-width: 700px;
  margin: 1rem auto 0;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  text-align: left;
  line-height: 1.3;
  transition: color 0.3s var(--ease);
}

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

.faq-icon {
  font-size: 1rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.4s var(--ease);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.active .faq-question {
  color: var(--gold-light);
}

.faq-answer p {
  padding-bottom: 0.6rem;
  padding-right: 1.5rem;
  color: var(--text-secondary);
  font-size: 0.7rem;
  line-height: 1.35;
}

/* === CTA FINAL === */
.cta-final {
  position: relative;
  padding: 4rem 0;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(208, 193, 169, 0.08) 0%, transparent 60%),
    var(--bg-deep);
}

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

.cta-ornament {
  display: block;
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 2rem;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cta-title em {
  font-style: italic;
  color: var(--gold);
}

.cta-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.cta-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #25D366;
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  animation: pulse-whatsapp 2s ease-in-out infinite;
}

.cta-whatsapp-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.25);
}

@keyframes pulse-whatsapp {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.2);
  }

  50% {
    box-shadow: 0 0 20px 8px rgba(37, 211, 102, 0.1);
  }
}

.cta-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* === FOOTER === */
.landing-footer {
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid var(--border);
  background: var(--bg-deep);
}

.footer-logo {
  height: 30px;
  margin: 0 auto 1rem;
  opacity: 0.5;
}

.landing-footer p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Floating button CSS removed */

/* === SCROLL REVEAL ANIMATION === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

/* Keep featured card scale when revealed */
.package-card.featured.reveal.visible {
  transform: translateY(0) scale(1.08);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    gap: 3rem;
  }

  .package-card.featured {
    transform: scale(1.04);
  }

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

  .package-card.featured.reveal.visible {
    transform: translateY(0) scale(1.04);
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 1.5rem 0 2rem;
    min-height: auto;
    justify-content: flex-start;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-subtitle {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    max-width: 95%;
  }

  .video-demo-text {
    font-size: 0.7rem;
    margin-bottom: 1rem;
  }

  .hero-video {
    max-width: 100%;
  }

  .video-container {
    border-radius: 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .video-play-btn {
    width: 60px;
    height: 60px;
  }

  .video-play-btn svg {
    width: 22px;
    height: 22px;
  }

  .about-text p {
    font-size: 1rem;
  }

  .gallery,
  .about,
  .packages,
  .cta-final {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  .nav-cta span {
    font-size: 0.78rem;
  }

  .nav-cta {
    padding: 0.5rem 1.2rem;
  }

  .hero-label {
    font-size: 0.6rem;
    padding: 0.4rem 1rem;
  }

  .package-card {
    padding: 2rem 1.5rem;
  }

  .price-amount {
    font-size: 2.8rem;
  }

  .cta-whatsapp-btn {
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
  }
}

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

  50% {
    transform: translateY(10px);
  }

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