:root {
  --gold: #C9A96E;
  --gold-light: #E8D5B0;
  --black: #0A0A0A;
  --dark: #111111;
  --dark2: #1A1A1A;
  --gray: #2A2A2A;
  --mid: #888;
  --white: #F8F5F0;
  --cream: #F2EDE4;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* CURSOR */
.cursor {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease;
}

.cursor-follower {
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.4s ease, width 0.3s, height 0.3s;
  transform: translate(-50%, -50%);
}

body:hover .cursor {
  opacity: 1;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 60px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  transition: var(--transition);
}

nav.scrolled {
  padding: 18px 60px;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--white);
  text-decoration: none;
}

.logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248, 245, 240, 0.7);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 10px 24px;
  font-size: 0.7rem !important;
  letter-spacing: 0.2em;
  cursor: none;
  transition: var(--transition) !important;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--black) !important;
}

.nav-cta::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

/* HERO */
#hero {
  min-height: 640px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-slide .overlay {
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.6) 100%);
}

/* Slide backgrounds usando gradientes cinematográficos */
.slide-1 .bg {
  background: linear-gradient(135deg, #1a0a00 0%, #3d1c00 30%, #2a0e0e 60%, #0a0a0a 100%);
}

.slide-2 .bg {
  background: linear-gradient(135deg, #0a0f1a 0%, #1a2a3d 30%, #0d1a2a 60%, #0a0a0a 100%);
}

.slide-3 .bg {
  background: linear-gradient(135deg, #1a0a1a 0%, #3d1a3d 30%, #2a0a2a 60%, #0a0a0a 100%);
}

.slide-4 .bg {
  background: linear-gradient(135deg, #0a1a00 0%, #1a3d00 30%, #0a2a0a 60%, #0a0a0a 100%);
}

.slide-5 .bg {
  background: linear-gradient(135deg, #1a1000 0%, #3d2800 30%, #2a1800 60%, #0a0a0a 100%);
}

/* Simulated photo overlays */
.slide-1 .bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201, 169, 110, 0.08) 0%, transparent 70%), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Ccircle cx='280' cy='200' r='120' fill='none' stroke='rgba(201,169,110,0.06)' stroke-width='80'/%3E%3C/svg%3E") center/cover;
}

.slide-2 .bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(100, 140, 200, 0.1) 0%, transparent 70%);
}

.slide-3 .bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(180, 100, 180, 0.1) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px 80px;
  max-width: 750px;
}

.hero-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  border-left: 2px solid var(--gold);
  padding-left: 12px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

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

.hero-sub {
  font-size: 1rem;
  color: rgba(248, 245, 240, 0.65);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  padding: 16px 36px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 500;
  cursor: none;
  transition: var(--transition);
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid rgba(248, 245, 240, 0.4);
  color: var(--white);
  padding: 16px 36px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: var(--font-body);
  cursor: none;
  transition: var(--transition);
  display: inline-block;
}

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

.hero-indicators {
  position: absolute;
  right: 60px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
}

.indicator {
  width: 2px;
  height: 24px;
  background: rgba(248, 245, 240, 0.2);
  cursor: none;
  transition: var(--transition);
}

.indicator.active {
  background: var(--gold);
  height: 40px;
}

.hero-scroll {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(248, 245, 240, 0.4);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  z-index: 2;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes scrollBounce {

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

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

/* MARQUEE */
.marquee-wrap {
  background: var(--gold);
  overflow: hidden;
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 500;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.marquee-item::before {
  content: '✦';
  font-size: 0.5rem;
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* SECTIONS */
section {
  padding: 120px 60px;
}

.section-label {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
}

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

/* ABOUT */
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--dark);
}

.about-visual {
  position: relative;
  height: 580px;
}

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  right: 60px;
  bottom: 60px;
  background: linear-gradient(135deg, var(--gray) 0%, var(--dark2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-img-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 40% 60%, rgba(201, 169, 110, 0.15) 0%, transparent 70%);
}

.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 220px;
  height: 220px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 2;
}

.about-stat {
  text-align: center;
}

.about-stat-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--black);
  line-height: 1;
}

.about-stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.6);
  margin-top: 4px;
}

.about-img-icon {
  font-size: 5rem;
  opacity: 0.1;
  user-select: none;
}

.about-content .section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.about-text {
  color: rgba(248, 245, 240, 0.65);
  line-height: 1.85;
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.feature-icon {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.feature-text {
  font-size: 0.85rem;
  color: rgba(248, 245, 240, 0.7);
  line-height: 1.6;
}

.feature-text strong {
  color: var(--white);
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
}

/* TEAM SHOWCASE */
.team-showcase {
  grid-column: 1 / -1;
  padding-top: 80px;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.team-showcase .section-label {
  justify-content: center;
}

.team-showcase .section-label::before,
.team-showcase .section-label::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 100px;
  padding: 0 20px;
}

.team-card {
  position: relative;
  background: linear-gradient(145deg, rgba(26, 26, 26, 0.8), rgba(17, 17, 17, 0.8));
  border: 1px solid rgba(201, 169, 110, 0.15);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.team-card:hover {
  border-color: rgba(201, 169, 110, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.team-img-wrapper {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 160px;
  z-index: 2;
  pointer-events: none;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.6));
  transition: var(--transition);
}

.team-card:hover .team-img {
  transform: scale(1.08) translateY(-10px);
  filter: drop-shadow(0 20px 30px rgba(201, 169, 110, 0.2));
}

.team-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: var(--gold);
  border-radius: 50%;
  filter: blur(45px);
  opacity: 0.15;
  z-index: -1;
  transition: var(--transition);
}

.team-card:hover .team-glow {
  opacity: 0.35;
  transform: translate(-50%, -50%) scale(1.3);
}

.team-info {
  margin-top: 80px;
}

.team-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 6px;
}

.team-role {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
}

.team-desc {
  font-size: 0.9rem;
  color: rgba(248, 245, 240, 0.65);
  line-height: 1.7;
}

/* SERVICES */
#services {
  background: var(--black);
}

.services-intro {
  max-width: 600px;
  margin-bottom: 60px;
}

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

.services-grid a.service-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card {
  position: relative;
  overflow: hidden;
  height: 380px;
  cursor: none;
  background: var(--dark2);
}

.service-card:nth-child(1) {
  background: linear-gradient(135deg, #1a0a00, #3d1c00);
}

.service-card:nth-child(2) {
  background: linear-gradient(135deg, #0a0f1a, #1a2a3d);
}

.service-card:nth-child(3) {
  background: linear-gradient(135deg, #1a0a1a, #2a102a);
}

.service-card:nth-child(4) {
  background: linear-gradient(135deg, #0a1a00, #1a3a00);
}

.service-card:nth-child(5) {
  background: linear-gradient(135deg, #1a1000, #3a2000);
}

.service-card:nth-child(6) {
  background: linear-gradient(135deg, #0a0a1a, #1a1a3d);
}

.service-card:nth-child(7) {
  background: linear-gradient(135deg, #1a000a, #3d001c);
}

.service-card:nth-child(8) {
  background: linear-gradient(135deg, #0d1a0d, #1a341a);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
  transition: var(--transition);
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.service-card-pattern {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  opacity: 0.3;
  user-select: none;
  transition: var(--transition);
}

.service-card:hover .service-card-pattern {
  transform: scale(1.1);
  opacity: 0.08;
}

.service-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  transform: translateY(0);
  transition: var(--transition);
}

.service-card-icon {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: block;
}

.service-card-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 8px;
}

.service-card-desc {
  font-size: 0.78rem;
  color: rgba(248, 245, 240, 0.55);
  line-height: 1.6;
  margin-bottom: 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.service-card:hover .service-card-desc {
  max-height: 80px;
}

.service-card-link {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.service-card-link::after {
  content: '→';
  transition: transform 0.3s;
}

.service-card-link:hover::after {
  transform: translateX(4px);
}

/* PACKAGES MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: var(--dark);
  border: 1px solid rgba(201, 169, 110, 0.2);
  max-width: 1000px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-header {
  padding: 40px 48px 32px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--mid);
  font-size: 1.5rem;
  cursor: none;
  transition: color 0.3s;
}

.modal-close:hover {
  color: var(--gold);
}

.modal-tag {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 0;
}

.package-card {
  padding: 15px 32px;
  border-right: 1px solid rgba(201, 169, 110, 0.1);
  position: relative;
  transition: var(--transition);
}

.package-card:last-child {
  border-right: none;
}

.package-card.featured {
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.08) 0%, rgba(201, 169, 110, 0.03) 100%);
}

.package-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 20px;
  font-weight: 500;
}

.package-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 8px;
}

.package-price {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 4px;
  font-family: var(--font-display);
}

.package-price span {
  font-size: 0.9rem;
  color: var(--mid);
}

.package-note {
  font-size: 0.75rem;
  color: var(--mid);
  margin-bottom: 28px;
}

.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(248, 245, 240, 0.7);
  line-height: 1.5;
}

.package-features li::before {
  content: '✓';
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.package-cta {
  display: block;
  text-align: center;
  padding: 14px 24px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: none;
  transition: var(--transition);
}

.package-cta-outline {
  border: 1px solid rgba(201, 169, 110, 0.4);
  color: var(--gold);
}

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

.package-cta-filled {
  background: var(--gold);
  color: var(--black);
}

.package-cta-filled:hover {
  background: var(--gold-light);
}

/* PORTFOLIO */
#portfolio {
  background: var(--dark);
}

.portfolio-filter {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 20px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  background: none;
  color: rgba(248, 245, 240, 0.5);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: none;
  transition: var(--transition);
  font-family: var(--font-body);
}

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

.portfolio-grid {
  column-count: 3;
  column-gap: 20px;
  width: 100%;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: none;
  background: var(--gray);
  break-inside: avoid;
  margin-bottom: 20px;
}

.pos-1 {
  grid-column: span 5;
  grid-row: span 6;
}

.pos-2 {
  grid-column: span 4;
  grid-row: span 4;
}

.pos-3 {
  grid-column: span 3;
  grid-row: span 4;
}

.pos-4 {
  grid-column: span 4;
  grid-row: span 5;
}

.pos-5 {
  grid-column: span 3;
  grid-row: span 5;
}

.pos-6 {
  grid-column: span 5;
  grid-row: span 5;
}

.pos-7 {
  grid-column: span 4;
  grid-row: span 4;
}

.pos-8 {
  grid-column: span 3;
  grid-row: span 3;
}

.pos-9 {
  grid-column: span 5;
  grid-row: span 4;
}

.pos-10 {
  grid-column: span 4;
  grid-row: span 3;
}

/* Portfolio color blocks (simulate photos) */
.bg-1 {
  background: linear-gradient(135deg, #1a0800, #3a1500) !important;
}

.bg-2 {
  background: linear-gradient(135deg, #0a0a1a, #1a1a3a) !important;
}

.bg-3 {
  background: linear-gradient(135deg, #1a0a0a, #3a1a1a) !important;
}

.bg-4 {
  background: linear-gradient(135deg, #0a1a00, #1a3a00) !important;
}

.bg-5 {
  background: linear-gradient(135deg, #1a000a, #3a0015) !important;
}

.bg-6 {
  background: linear-gradient(135deg, #0d0d1a, #2a2a4a) !important;
}

.bg-7 {
  background: linear-gradient(135deg, #1a1000, #3a2500) !important;
}

.bg-8 {
  background: linear-gradient(135deg, #001a0a, #003a1a) !important;
}

.bg-9 {
  background: linear-gradient(135deg, #1a001a, #3a003a) !important;
}

.bg-10 {
  background: linear-gradient(135deg, #1a0a00, #2a1500) !important;
}

.portfolio-item.hidden {
  display: none !important;
}


.portfolio-item-inner {
  position: relative;
  width: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

.portfolio-item-inner:has(img) {
  min-height: 0;
}

.portfolio-item-inner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.portfolio-item-inner .pi-icon {
  font-size: 3rem;
  opacity: 0.06;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.0);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
  background: rgba(0, 0, 0, 0.6);
}

.portfolio-info {
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-info {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-cat {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.portfolio-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
}

/* TESTIMONIALS */
#testimonials {
  background: var(--black);
}

.testimonials-track {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.testimonial-card {
  flex: 1;
  min-width: 300px;
  background: var(--dark2);
  border: 1px solid rgba(201, 169, 110, 0.1);
  padding: 40px 36px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 8rem;
  color: rgba(201, 169, 110, 0.08);
  position: absolute;
  top: -20px;
  left: 24px;
  line-height: 1;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 0.9rem;
  color: rgba(248, 245, 240, 0.7);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--black);
}

.author-name {
  font-size: 0.85rem;
  font-weight: 500;
}

.author-event {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

/* ADDITIONAL SERVICES */
#extras {
  background: var(--dark);
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.extra-card {
  background: var(--dark2);
  padding: 48px 40px;
  border: 1px solid rgba(201, 169, 110, 0.08);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.extra-card:hover {
  border-color: rgba(201, 169, 110, 0.3);
}

.extra-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.extra-card:hover::before {
  transform: scaleX(1);
}

.extra-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}

.extra-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 12px;
}

.extra-desc {
  font-size: 0.85rem;
  color: rgba(248, 245, 240, 0.6);
  line-height: 1.75;
  margin-bottom: 24px;
}

.extra-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.extra-features li {
  font-size: 0.78rem;
  color: rgba(248, 245, 240, 0.5);
  padding-left: 16px;
  position: relative;
}

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

/* CTA STRIP */
#cta-strip {
  background: var(--gold);
  padding: 80px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-text-block .cta-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 12px;
}

.cta-text-block h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--black);
  line-height: 1.1;
}

.cta-text-block h2 em {
  font-style: italic;
}

.cta-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.btn-dark {
  background: var(--black);
  color: var(--gold);
  padding: 16px 36px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: none;
  transition: var(--transition);
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
}

.btn-dark:hover {
  background: var(--dark2);
}

.btn-dark-outline {
  border: 2px solid var(--black);
  color: var(--black);
  padding: 16px 36px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: none;
  transition: var(--transition);
  display: inline-block;
  font-family: var(--font-body);
}

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

/* FOOTER */
footer {
  background: var(--black);
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  padding: 80px 60px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  display: block;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 0.82rem;
  color: rgba(248, 245, 240, 0.4);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 28px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid);
  text-decoration: none;
  font-size: 0.85rem;
  cursor: none;
  transition: var(--transition);
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 169, 110, 0.05);
}

.footer-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 0.82rem;
  color: rgba(248, 245, 240, 0.45);
  text-decoration: none;
  transition: color 0.3s;
  cursor: none;
}

.footer-col ul a:hover {
  color: var(--gold);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.contact-icon {
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-text {
  font-size: 0.8rem;
  color: rgba(248, 245, 240, 0.45);
  line-height: 1.5;
}

.contact-text a {
  color: rgba(248, 245, 240, 0.45);
  text-decoration: none;
  transition: color 0.3s;
  cursor: none;
}

.contact-text a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(201, 169, 110, 0.08);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(248, 245, 240, 0.25);
  letter-spacing: 0.05em;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.72rem;
  color: rgba(248, 245, 240, 0.25);
  text-decoration: none;
  cursor: none;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: var(--gold);
}

/* WHATSAPP */
.whatsapp-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  background: #25D366;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.5rem;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  cursor: none;
  transition: var(--transition);
  animation: fabPulse 3s ease-in-out infinite;
}

.whatsapp-fab img {
  width: 70%;
  height: 70%;
  object-fit: cover;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

@keyframes fabPulse {

  0%,
  100% {
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4)
  }

  50% {
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6)
  }
}

/* FADE IN */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) {
  transition-delay: 0.1s;
}

.fade-up:nth-child(3) {
  transition-delay: 0.2s;
}

.fade-up:nth-child(4) {
  transition-delay: 0.3s;
}

/* MOBILE */
@media (max-width: 768px) {
  nav {
    padding: 20px 24px;
  }

  nav.scrolled {
    padding: 14px 24px;
  }

  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--black);
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }

  .nav-links.open a {
    font-size: 1rem;
  }

  .hamburger {
    display: flex;
    z-index: 1000;
  }

  section {
    padding: 70px 24px;
  }

  .hero-content {
    padding: 0 24px 80px;
  }

  #about {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual {
    height: 300px;
  }

  .about-img-accent {
    width: 140px;
    height: 140px;
  }

  .about-stat-num {
    font-size: 2.5rem;
  }

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

  .service-card {
    height: 280px;
  }

  .service-card-desc {
    max-height: 80px;
  }

  .portfolio-grid {
    column-count: 2;
    column-gap: 12px;
  }

  .portfolio-item {
    margin-bottom: 12px;
  }

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

  .package-card {
    border-right: none;
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  }

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

  #cta-strip {
    flex-direction: column;
    text-align: center;
    padding: 60px 24px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .testimonials-track {
    flex-direction: column;
  }

  body {
    cursor: auto;
  }

  .cursor,
  .cursor-follower {
    display: none;
  }

  .modal {
    margin: 20px;
  }

  .modal-header {
    padding: 32px 24px 24px;
  }

  .modal-title {
    font-size: 2rem;
  }
}