:root {
  --header-height: 4.5rem;
  --first-color: #d4a853;
  --first-color-alt: #c49b48;
  --text-color: #f0f0f0;
  --text-color-light: #a0a0a0;
  --body-color: #0f0f0f;
  --container-color: #1a1a1a;
  --container-color-alt: #141414;
  --border-color: #2a2a2a;
  --white: #fff;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 4px 20px rgba(212, 168, 83, 0.2);
  --transition: all 0.4s ease;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--body-color);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__box {
  text-align: center;
  animation: preloaderFade 1s ease;
}

.preloader__logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 1.25rem;
  animation: preloaderPulse 2s ease-in-out infinite;
  box-shadow: 0 0 40px rgba(212, 168, 83, 0.35);
}

.preloader__title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 0.4rem;
}

.preloader__subtitle {
  color: var(--text-color-light);
  font-size: 0.9rem;
  margin-bottom: 1.75rem;
}

.preloader__btn i {
  margin-left: 0.5rem;
}

@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

@keyframes preloaderFade {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.light-mode {
  --text-color: #1a1a1a;
  --text-color-light: #666;
  --body-color: #f5f5f5;
  --container-color: #fff;
  --container-color-alt: #f0f0f0;
  --border-color: #e0e0e0;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-gold: 0 4px 20px rgba(212, 168, 83, 0.3);
  --shadow-light: #ffffff;
  --shadow-dark: #d1d1d1;
}

.light-mode .about__card,
.light-mode .service__card,
.light-mode .pricing__card,
.light-mode .contact__card,
.light-mode .contact__form-wrapper {
  box-shadow: 6px 6px 12px var(--shadow-dark), -6px -6px 12px var(--shadow-light);
  border: none;
}

.light-mode .pricing__card--featured {
  box-shadow: 8px 8px 16px #cacaca, -8px -8px 16px #ffffff;
  transform: scale(1.05);
}

.light-mode .about__card:hover,
.light-mode .service__card:hover,
.light-mode .pricing__card:hover {
  transform: translateY(-3px);
  box-shadow: 4px 4px 8px var(--shadow-dark), -4px -4px 8px var(--shadow-light);
}

.light-mode .pricing__card--featured:hover {
  transform: scale(1.05) translateY(-3px);
  box-shadow: 8px 8px 16px #cacaca, -8px -8px 16px #ffffff;
}

.light-mode .button--gold {
  box-shadow: 6px 6px 12px rgba(170, 141, 48, 0.4), -6px -6px 12px rgba(255, 255, 255, 0.6);
  border: none;
}

.light-mode .button--outline {
  box-shadow: 6px 6px 12px var(--shadow-dark), -6px -6px 12px var(--shadow-light);
}

.light-mode .theme__toggle {
  box-shadow: 5px 5px 10px var(--shadow-dark), -5px -5px 10px var(--shadow-light);
}

.light-mode .whatsapp-float {
  box-shadow: 5px 5px 10px rgba(37, 211, 102, 0.3), -5px -5px 10px rgba(255, 255, 255, 0.8);
}

.light-mode .form__input {
  box-shadow: inset 4px 4px 8px var(--shadow-dark), inset -4px -4px 8px var(--shadow-light);
  border: none;
}

.light-mode .studio__highlight {
  box-shadow: 6px 6px 12px var(--shadow-dark), -6px -6px 12px var(--shadow-light);
  border-left: none;
}

.light-mode .contact__card:hover {
  transform: translateX(3px);
  box-shadow: 4px 4px 8px var(--shadow-dark), -4px -4px 8px var(--shadow-light);
}

.light-mode .nav__menu {
  background: #f3f4f4;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--body-color);
  overflow-x: hidden;
}

.gold {
  color: var(--first-color);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.light-mode .header {
  background-color: rgba(255, 255, 255, 0.95);
}

.header--scrolled {
  box-shadow: var(--shadow);
  border-bottom: 1px solid var(--border-color);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: var(--header-height);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  
}

.nav__logo-img {
  height: 1.5rem;
  width: auto;
  display: block;
  margin-right: 0.5rem;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
  margin-right: 0.75rem;
  transition: background-color 0.5s ease, color 0.5s ease;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav__link {
  color: var(--text-color-light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav__link:hover,
.nav__link.active {
  color: var(--first-color);
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--first-color);
  transition: var(--transition);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__tools {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.theme__toggle,
.lang__toggle {
  background: var(--container-color);
  border: 1px solid var(--border-color);
  color: var(--text-color);
  padding: 0.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  position: relative;
  overflow: hidden;
}

.theme__toggle:hover,
.lang__toggle:hover {
  border-color: var(--first-color);
  color: var(--first-color);
}

.theme__toggle {
  width: 2.2rem;
  height: 2.2rem;
  padding: 0;
}

.theme__icon--sun,
.theme__icon--moon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease, transform 0.4s ease;
  font-size: 0.85rem;
}

.theme__icon--sun {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0deg) scale(1);
}

.theme__icon--moon {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-90deg) scale(0.5);
}

.light-mode .theme__icon--sun {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scale(0.5);
}

.light-mode .theme__icon--moon {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0deg) scale(1);
}

.theme__toggle:active {
  transform: scale(0.92);
}

.lang__toggle {
  gap: 0.25rem;
  font-weight: 600;
}

.lang__divider {
  color: var(--text-color-light);
}

.lang__option {
  cursor: pointer;
  transition: var(--transition);
}

.lang__option--active {
  color: var(--first-color);
}

.nav__toggle,
.nav__close {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-color);
  cursor: pointer;
}

.nav__overlay {
  display: none;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Section */
.section {
  padding: 5rem 0;
}

.section__title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.section__title .gold {
  color: var(--first-color);
}

.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out !important;
}

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

.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.15s; }
.stagger-3 { transition-delay: 0.25s; }
.stagger-4 { transition-delay: 0.35s; }
.stagger-5 { transition-delay: 0.45s; }

/* Buttons */
.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  font-size: 0.95rem;
  text-align: center;
}

.button--gold {
  background-color: var(--first-color);
  color: #0f0f0f;
  border-color: var(--first-color);
}

.button--gold:hover {
  background-color: var(--first-color-alt);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.button--outline {
  background-color: transparent;
  color: var(--first-color);
  border-color: var(--first-color);
}

.button--outline:hover {
  background-color: var(--first-color);
  color: #0f0f0f;
  transform: translateY(-2px);
}

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

/* Home */
.home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.home__video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

#youtube-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

#youtube-background iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw !important;
  height: 56.25vw !important;
  min-height: 100vh !important;
  min-width: 177.77vh !important;
  pointer-events: none;
  border: 0;
}

.home__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
  z-index: 1;
}

.home__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.home__subtitle {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--first-color);
}

.home__title {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.home__description {
  font-size: 1.1rem;
  color: var(--text-color-light);
  margin-bottom: 2rem;
  max-width: 600px;
}

.home__description strong {
  color: var(--first-color);
}

.home__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Studio */
.studio__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 2rem;
}

.studio__text {
  margin-bottom: 1rem;
  color: var(--text-color-light);
  line-height: 1.8;
  text-align: justify;
  overflow-wrap: break-word;
  word-break: break-word;
}

.studio__text strong {
  color: var(--first-color);
}

.studio__image {
  position: relative;
  justify-self: center;
  max-width: 500px;
  width: 100%;
  overflow: hidden;
}

.studio__image-photo {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  will-change: transform;
}

.studio__image-photo.is-near {
  transform: scale(1.06) skewX(-6deg);
  box-shadow: 0 12px 35px rgba(212, 168, 83, 0.4);
}

.studio__highlight {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-color);
  padding: 1.5rem;
  border-left: 4px solid var(--first-color);
  background-color: var(--container-color-alt);
  border-radius: 0.5rem;
}

/* Marquee */
.marquee {
  overflow: hidden;
  width: 100%;
  background-color: transparent;
  border-radius: 8px;
  margin-top: 1rem;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.marquee:hover {
  box-shadow: 0 0 22px rgba(212, 168, 83, 0.35), 0 0 60px rgba(212, 168, 83, 0.15);
  transform: translateY(-2px);
}

.marquee-content {
  display: flex;
  gap: 2rem;
  list-style: none;
  animation: scroll 20s linear infinite;
  width: max-content;
  background: transparent;
  padding: 0;
  margin: 0;
}

.marquee-content--reverse {
  animation: scroll-reverse 25s linear infinite;
}

.marquee-content li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.5rem;
  background: transparent;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.marquee-content li img {
  display: block;
  background: transparent;
  width: 100%;
  max-width: 48px;
  height: auto;
  object-fit: contain;
}

.marquee-content li:hover {
  transform: translateY(-2px);
  border-color: var(--first-color);
  box-shadow: 0 6px 18px rgba(212, 168, 83, 0.25);
}

.light-mode .marquee-content li:hover {
  box-shadow: 6px 6px 12px var(--shadow-dark), -6px -6px 12px var(--shadow-light);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scroll-reverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.studio__marquee {
  overflow: hidden;
  width: 100%;
  margin-top: 1rem;
  border-radius: 0;
  padding: 1rem 0;

}

.studio__marquee-content {
  display: flex;
  gap: 2.5rem;
  animation: scroll 25s linear infinite;
  width: max-content;
}

.marquee__logo {
  height: 2.2rem;
  width: auto;
  object-fit: contain;
  opacity: 0.8;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* About */
.about__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.about__card {
  background-color: var(--container-color);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  text-align: center;
}

.about__card:hover {
  transform: translateY(-5px);
  border-color: var(--first-color);
  box-shadow: var(--shadow-gold);
}

.about__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--container-color-alt);
  border-radius: 50%;
  color: var(--first-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.about__title {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--text-color);
}

.about__text {
  font-size: 0.95rem;
  color: var(--text-color-light);
  line-height: 1.7;
}

/* Services */
.services__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service__card {
  background-color: var(--container-color);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service__card:hover {
  transform: translateY(-5px);
  border-color: var(--first-color);
  box-shadow: var(--shadow-gold);
}

.service__number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--first-color);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.service__title {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--text-color);
}

.service__text {
  font-size: 0.9rem;
  color: var(--text-color-light);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.service__list {
  list-style: none;
  padding: 0;
}

.service__list li {
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-color-light);
}

.service__list li::before {
  content: "▹";
  position: absolute;
  left: 0;
  color: var(--first-color);
}

.service__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--first-color);
  margin: 0.75rem 0;
}

.service__cta {
  margin-top: 1rem;
}

.services__empty {
  text-align: center;
  color: var(--text-color-light);
  padding: 3rem 1rem;
  font-size: 1rem;
}

.contact__empty {
  text-align: center;
  color: var(--text-color-light);
  padding: 3rem 1rem;
  font-size: 1rem;
}
.pricing__subtitle {
  text-align: center;
  color: var(--text-color-light);
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

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

.pricing__card {
  background-color: var(--container-color);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 2rem;
  transition: var(--transition);
  position: relative;
}

.pricing__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.pricing__card--featured {
  border-color: var(--first-color);
  box-shadow: var(--shadow-gold);
  transform: scale(1.05);
}

.pricing__card--featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--first-color);
  color: #0f0f0f;
  padding: 0.25rem 1rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing__header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.pricing__name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.pricing__price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--first-color);
}

.pricing__period {
  font-size: 0.9rem;
  color: var(--text-color-light);
}

.pricing__features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing__features li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-color-light);
  font-size: 0.95rem;
}

.pricing__features li:last-child {
  border-bottom: none;
}

/* Gallery */
.gallery__content {
  display: grid;
  gap: 1.5rem;
}

.gallery__row {
  display: grid;
  gap: 1.5rem;
}

.gallery__row--vertical {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  justify-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery__row--vertical .gallery__item {
  width: 100%;
  max-width: 320px;
}

.gallery__row--horizontal {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.gallery__row--horizontal .gallery__item {
  width: 100%;
  min-width: 0;
}

.gallery__item {
  position: relative;
  border-radius: 1rem;
  overflow: clip;
  cursor: pointer;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.gallery__item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
  border-color: var(--first-color);
}

.gallery__item--video {
  grid-column: 1 / -1;
}

.gallery__video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: clip;
}

.gallery__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.gallery__item--vertikal .gallery__video iframe {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vh;
  height: 100%;
  transform: translateX(-50%);
}

.gallery__item--vertikal .gallery__video {
  aspect-ratio: 9 / 16;
}

.gallery__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  pointer-events: none;
}

.gallery__item:hover .gallery__video-overlay {
  background: rgba(0, 0, 0, 0.1);
}

.gallery__image {
  aspect-ratio: 16 / 9;
  background-color: var(--container-color-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color-light);
  overflow: hidden;
}

.gallery__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.gallery__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: var(--white);
}

.gallery__title {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.gallery__category {
  font-size: 0.85rem;
  color: var(--first-color);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.lightbox__close:hover {
  color: var(--first-color);
  transform: scale(1.1);
}

.lightbox__content {
  max-width: 900px;
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
}

.lightbox--vertikal .lightbox__content {
  aspect-ratio: 9 / 16;
  max-height: 85vh;
  width: 90vw;
  max-width: 90vw;
}

.lightbox__content iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.lightbox__placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  text-align: center;
  width: 90%;
}

.lightbox__placeholder svg {
  margin-bottom: 1rem;
  color: var(--first-color);
}

.lightbox__title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.lightbox__category {
  color: var(--text-color-light);
}

/* Contact */
.contact__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background-color: var(--container-color);
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  transition: var(--transition);
}

.contact__card:hover {
  border-color: var(--first-color);
  transform: translateX(5px);
}

.contact__map {
  width: 100%;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background-color: var(--container-color);
  transition: var(--transition);
}

.contact__map:hover {
  border-color: var(--first-color);
  transform: translateX(5px);
}

.contact__map iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}

.contact__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--container-color-alt);
  border-radius: 0.75rem;
  color: var(--first-color);
  flex-shrink: 0;
}

.contact__label {
  font-size: 0.85rem;
  color: var(--text-color-light);
  margin-bottom: 0.25rem;
}

.contact__text,
.contact__link {
  font-size: 1rem;
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
}

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

.contact__form-wrapper {
  background-color: var(--container-color);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.contact__form-wrapper iframe {
  width: 100%;
  border: 0;
  display: block;
  border-radius: 0.5rem;
}

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

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

.form__label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-color);
}

.form__input {
  padding: 0.75rem 1rem;
  background-color: var(--container-color-alt);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  color: var(--text-color);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form__input:focus {
  outline: none;
  border-color: var(--first-color);
  box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.1);
}

.form__input::placeholder {
  color: var(--text-color-light);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.footer {
  background-color: var(--container-color);
  border-top: 1px solid var(--border-color);
  padding: 2rem 0;
  text-align: center;
}

.footer__text {
  font-size: 0.9rem;
  color: var(--text-color-light);
}

.footer__text .gold {
  color: var(--first-color);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  z-index: 999;
  text-decoration: none;
  animation: float-bounce 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  animation: none;
}

.whatsapp-float .top-icon {
  display: none;
}

.whatsapp-float.is-top {
  background-color: var(--first-color);
  color: #0f0f0f;
  animation: float-bounce 3s ease-in-out infinite;
}

.whatsapp-float.is-top .whatsapp-icon {
  display: none;
}

.whatsapp-float.is-top .top-icon {
  display: block;
}

.whatsapp-float.is-top:hover {
  box-shadow: 0 6px 20px rgba(212, 168, 83, 0.5);
}

@keyframes float-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* WhatsApp Modal */
.wa-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.wa-modal.active {
  display: flex;
}

.wa-modal__box {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--container-color);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  animation: wa-pop 0.35s ease-out;
}

@keyframes wa-pop {
  from { opacity: 0; transform: translateY(16px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.wa-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: var(--text-color-light);
  cursor: pointer;
  transition: var(--transition);
}

.wa-modal__close:hover {
  color: var(--first-color);
  transform: rotate(90deg);
}

.wa-modal__loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  color: var(--text-color-light);
  font-size: 0.95rem;
}

.wa-modal__spinner {
  width: 44px;
  height: 44px;
  border: 4px solid var(--border-color);
  border-top-color: var(--first-color);
  border-radius: 50%;
  animation: wa-spin 0.8s linear infinite;
}

@keyframes wa-spin {
  to { transform: rotate(360deg); }
}

.wa-modal__form-wrap {
  display: none;
}

.wa-modal__form-wrap.visible {
  display: block;
}

.wa-modal__title {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  text-align: center;
}

.wa-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wa-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.wa-form__field label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-color-light);
}

.wa-form__field input {
  padding: 0.7rem 1rem;
  background: var(--container-color-alt);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  color: var(--text-color);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}

.wa-form__field input:focus {
  outline: none;
  border-color: var(--first-color);
  box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.15);
}

.wa-form__field input::placeholder {
  color: var(--text-color-light);
}

.wa-form__submit {
  margin-top: 0.5rem;
  padding: 0.85rem;
  background: linear-gradient(135deg, #25d366, #1eb85a);
  color: var(--white);
  border: none;
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.wa-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.wa-form__submit:active {
  transform: translateY(0);
}

/* Smooth theme transition */
body {
  transition: background-color 0.5s ease, color 0.5s ease;
}

.home__title,
.home__description,
.home__subtitle,
.section__title,
.studio__text,
.studio__highlight,
.service__title,
.service__text,
.service__list,
.pricing__name,
.pricing__price,
.pricing__period,
.pricing__features,
.gallery__title,
.gallery__category,
.contact__label,
.contact__text,
.contact__link,
.footer__text,
.lightbox__title,
.lightbox__category,
input,
textarea,
select {
  transition: color 0.5s ease, background-color 0.5s ease, border-color 0.5s ease;
}

/* Responsive */
@media (max-width: 1024px) {
  :root {
    --header-height: 4.25rem;
  }

  .container {
    padding: 0 1.25rem;
  }

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

  .pricing__content {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .pricing__card--featured {
    transform: none;
  }

  .pricing__card--featured:hover {
    transform: translateY(-5px);
  }

  .home__title {
    font-size: 2.5rem;
  }

  .section__title {
    font-size: 2rem;
  }

  .studio__wrapper {
    gap: 1.75rem;
  }

  .studio__text {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.85rem;
    overflow-wrap: break-word;
    word-break: break-word;
    text-align: center;
  }

  .studio__image {
    max-width: 380px;
  }

  .studio__image-photo {
    max-height: none;
    object-fit: contain;
  }

  .studio__highlight {
    margin-top: 1.5rem;
  }

  .contact__content {
    gap: 2rem;
  }

  .contact__map iframe {
    height: 200px;
  }

  .gallery__content {
    gap: 1rem;
  }

  .gallery__row--vertical {
    grid-template-columns: 1fr;
    max-width: 400px;
    justify-self: center;
  }

  .gallery__row--horizontal {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .marquee-content li {
    min-width: 40px;
    padding: 0.4rem;
  }

  .marquee-content li img {
    max-width: 40px;
  }

  .about__card,
  .service__card {
    padding: 1.75rem;
  }
}

@media (max-width: 820px) {
  .gallery__row--vertical {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .gallery__row--vertical .gallery__item {
    width: 100%;
    max-width: 100%;
  }

  .gallery__row--horizontal {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .gallery__item {
    border-radius: 0.75rem;
  }

  .gallery__overlay {
    padding: 0.875rem;
  }

  .gallery__title {
    font-size: 0.95rem;
  }

  .gallery__category {
    font-size: 0.75rem;
  }

  .studio__wrapper {
    gap: 1.25rem;
  }

  .studio__text {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
  }

  .studio__image-photo {
    max-height: none;
    object-fit: contain;
  }

  .studio__highlight {
    margin-top: 1.25rem;
  }

  .marquee-content {
    gap: 1.25rem;
  }

  .home__title {
    font-size: 2.2rem;
  }

  .section__title {
    font-size: 1.75rem;
  }

  .about__card,
  .service__card {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 4rem;
  }

  .container {
    padding: 0 1rem;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh;
    background-color: var(--container-color);
    flex-direction: column;
    padding: 5.5rem 1.5rem 2rem;
    transition: right 0.35s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    border-left: 1px solid var(--border-color);
    z-index: 1001;
  }

  .nav__menu.active {
    right: 0;
  }

  .nav__overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }

  .nav__overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .nav__list {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }

  .nav__link {
    display: block;
    padding: 0.85rem 0;
    font-size: 1.05rem;
  }

  .nav__link:hover {
    transform: translateY(0);
  }

  .nav__tools {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .nav__toggle,
  .nav__close {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav__toggle {
    margin-left: 0.5rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-color);
    cursor: pointer;
    transition: background-color 0.5s ease, border-color 0.5s ease, color 0.5s ease;
  }

  .nav__toggle:hover {
    border-color: var(--first-color);
    color: var(--first-color);
  }

  .nav__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-color);
    cursor: pointer;
    transition: background-color 0.5s ease, border-color 0.5s ease, color 0.5s ease;
  }

  .nav__close:hover {
    border-color: var(--first-color);
    color: var(--first-color);
  }

  .home {
    min-height: 100svh;
    padding-top: var(--header-height);
  }

  .home__title {
    font-size: 2rem;
  }

  .home__description {
    font-size: 0.95rem;
    word-break: break-word;
  }

  .home__buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .home__buttons .button {
    width: 100%;
    text-align: center;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section__title {
    font-size: 1.75rem;
  }

  .studio__wrapper {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .studio__text {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
    overflow-wrap: break-word;
    word-break: break-word;
    text-align: center;
  }

  .studio__image-photo {
    max-height: none;
    object-fit: contain;
  }

  .studio__highlight {
    margin-top: 1.25rem;
  }

  .marquee-content {
    gap: 1rem;
  }

  .about__content {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .about__card {
    padding: 1.5rem;
  }

  .services__content {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .service__card {
    padding: 1.5rem;
  }

  .pricing__content {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
    gap: 1.25rem;
  }

  .pricing__card--featured {
    transform: none;
  }

  .gallery__row--vertical {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    justify-self: center;
  }

  .gallery__row--vertical .gallery__item {
    width: 100%;
    max-width: 100%;
  }

  .gallery__row--horizontal {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .gallery__item {
    cursor: pointer;
  }

  .gallery__video-overlay {
    pointer-events: none;
  }

  .gallery__video iframe {
    width: 100%;
    height: 100%;
    border: none;
  }

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

  .marquee-content li {
    min-width: 36px;
    padding: 0.35rem;
  }

  .marquee-content li img {
    max-width: 36px;
  }

  .contact__content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact__form-wrapper {
    padding: 1.25rem;
  }

  .contact__form-wrapper iframe {
    height: 220px;
  }

  .home__video-background {
    opacity: 0.85;
  }

  .home {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
  }

  .form__input,
  .form__textarea {
    font-size: 1rem;
    padding: 0.7rem 0.85rem;
  }

  .footer {
    padding: 1.5rem 0;
  }

  .whatsapp-float {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 50px;
    height: 50px;
  }

  .lightbox {
    padding: 1rem;
  }

  .lightbox--vertikal .lightbox__content {
    max-height: 80vh;
    max-width: 320px;
  }

  .lightbox__content iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 480px) {
  .home__title {
    font-size: 1.6rem;
  }

  .home__description {
    font-size: 0.85rem;
  }

  .home__subtitle {
    font-size: 0.8rem;
    letter-spacing: 1px;
  }

  .section__title {
    font-size: 1.45rem;
  }

  .studio__text {
    overflow-wrap: break-word;
    word-break: break-word;
    margin-bottom: 0.7rem;
    text-align: center;
  }

  .studio__highlight {
    font-size: 0.85rem;
    padding: 1.1rem;
    margin-top: 1rem;
  }

  .studio__image-photo {
    max-height: none;
  }

  .marquee-content {
    gap: 1rem;
  }

  .marquee {
    padding: 0.4rem 0;
  }

  .pricing__price {
    font-size: 1.45rem;
    
  }

  .pricing__header {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }

  .button {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  .service__list li {
    font-size: 0.8rem;
  }

  .contact__form-wrapper iframe {
    height: 160px;
  }

  .marquee-content li {
    min-width: 28px;
    padding: 0.25rem;
  }

  .marquee-content li img {
    max-width: 28px;
  }

  .about__icon {
    width: 45px;
    height: 45px;
  }

  .about__icon svg {
    width: 28px;
    height: 28px;
  }

  .contact__icon {
    width: 40px;
    height: 40px;
  }

  .contact__icon svg,
  .contact__icon i {
    font-size: 20px;
  }

  .gallery__overlay {
    padding: 0.875rem;
  }

  .gallery__title {
    font-size: 0.9rem;
  }

  .gallery__category {
    font-size: 0.75rem;
  }

  .lightbox {
    padding: 0.75rem;
  }

  .lightbox__title {
    font-size: 1.1rem;
  }

  .pricing__badge {
    font-size: 0.75rem;
    padding: 0.2rem 0.8rem;
  }

  .home__video-background {
    opacity: 0.85;
  }

  .home {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.95));
  }

  .lightbox__content iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .lightbox--vertikal .lightbox__content {
    max-height: 70vh;
    max-width: 280px;
  }

  .contact__card {
    padding: 1rem;
    gap: 0.75rem;
  }

  .contact__link {
    font-size: 0.85rem;
    word-break: break-word;
  }

  .gallery__item:hover {
    transform: none;
  }

  .gallery__item:hover .gallery__video-overlay {
    background: rgba(0, 0, 0, 0.3);
  }

  .light-mode .contact__card:hover {
    transform: none;
  }

  .about__card:hover,
  .service__card:hover,
  .pricing__card:hover {
    transform: translateY(-3px);
  }
}

@media (max-width: 393px) {
  .home__title {
    font-size: 1.55rem;
  }

  .home__description {
    font-size: 0.82rem;
  }

  .home__subtitle {
    font-size: 0.7rem;
    letter-spacing: 0.5px;
  }

  .section__title {
    font-size: 1.35rem;
  }

  .studio__text {
    overflow-wrap: break-word;
    word-break: break-word;
    margin-bottom: 0.65rem;
    text-align: center;
  }

  .studio__highlight {
    font-size: 0.82rem;
    padding: 0.95rem;
    margin-top: 1rem;
  }

  .studio__image-photo {
    max-height: none;
  }

  .marquee-content {
    gap: 0.5rem;
  }

  .marquee {
    padding: 0.3rem 0;
  }

  .pricing__price {
    font-size: 1.35rem;
  }

  .button {
    padding: 0.55rem 0.85rem;
    font-size: 0.78rem;
  }

  .service__list li {
    font-size: 0.75rem;
  }

  .contact__form-wrapper iframe {
    height: 150px;
  }

  .marquee-content li {
    min-width: 23px;
    padding: 0.1rem;
  }

  .marquee-content li img {
    max-width: 23px;
  }

  .about__icon {
    width: 40px;
    height: 40px;
  }

  .about__icon svg {
    width: 24px;
    height: 24px;
  }

  .contact__icon {
    width: 38px;
    height: 38px;
  }

  .contact__icon svg,
  .contact__icon i {
    font-size: 17px;
  }

  .gallery__overlay {
    padding: 0.7rem;
  }

  .gallery__title {
    font-size: 0.82rem;
  }

  .gallery__category {
    font-size: 0.68rem;
  }

  .lightbox {
    padding: 0.5rem;
  }

  .lightbox__title {
    font-size: 0.95rem;
  }

  .pricing__badge {
    font-size: 0.7rem;
    padding: 0.15rem 0.7rem;
  }

  .contact__card {
    padding: 0.85rem;
    gap: 0.55rem;
  }

  .contact__link {
    font-size: 0.78rem;
    word-break: break-word;
  }

  .whatsapp-float {
    bottom: 0.9rem;
    right: 0.9rem;
    width: 43px;
    height: 43px;
  }

  .nav__menu {
    width: 85%;
    max-width: 280px;
  }

  .home__buttons {
    gap: 0.55rem;
  }

  .form__input,
  .form__textarea {
    font-size: 0.9rem;
    padding: 0.6rem 0.75rem;
  }
}

@media (max-width: 360px) {
  .home__title {
    font-size: 1.45rem;
  }

  .home__description {
    font-size: 0.78rem;
  }

  .home__subtitle {
    font-size: 0.68rem;
    letter-spacing: 0.5px;
  }

  .section__title {
    font-size: 1.25rem;
  }

  .studio__text {
    overflow-wrap: break-word;
    word-break: break-word;
    margin-bottom: 0.6rem;
    text-align: center;
  }

  .studio__highlight {
    font-size: 0.78rem;
    padding: 0.8rem;
    margin-top: 0.75rem;
  }

  .studio__image-photo {
    max-height: none;
  }

  .marquee-content {
    gap: 0.75rem;
  }

  .marquee {
    padding: 0.25rem 0;
  }

  .pricing__price {
    font-size: 1.25rem;
  }

  .button {
    padding: 0.5rem 0.75rem;
    font-size: 0.72rem;
  }

  .service__list li {
    font-size: 0.72rem;
  }

  .contact__form-wrapper iframe {
    height: 140px;
  }

  .marquee-content li {
    min-width: 18px;
    padding: 0.1rem;
  }

  .marquee-content li img {
    max-width: 18px;
  }

  .about__icon {
    width: 38px;
    height: 38px;
  }

  .about__icon svg {
    width: 22px;
    height: 22px;
  }

  .contact__icon {
    width: 34px;
    height: 34px;
  }

  .contact__icon svg,
  .contact__icon i {
    font-size: 15px;
  }

  .gallery__overlay {
    padding: 0.55rem;
  }

  .gallery__title {
    font-size: 0.78rem;
  }

  .gallery__category {
    font-size: 0.65rem;
  }

  .lightbox {
    padding: 0.4rem;
  }

  .lightbox__title {
    font-size: 0.9rem;
  }

  .pricing__badge {
    font-size: 0.65rem;
    padding: 0.1rem 0.6rem;
  }

  .contact__card {
    padding: 0.75rem;
    gap: 0.5rem;
  }

  .contact__link {
    font-size: 0.72rem;
    word-break: break-word;
  }

  .whatsapp-float {
    bottom: 0.75rem;
    right: 0.75rem;
    width: 40px;
    height: 40px;
  }

  .nav__menu {
    width: 90%;
    max-width: 260px;
  }

  .home__buttons {
    gap: 0.45rem;
  }

  .form__input,
  .form__textarea {
    font-size: 0.85rem;
    padding: 0.55rem 0.7rem;
  }
}

@media (min-width: 1921px) {
  .container {
    max-width: 1400px;
  }

  .home__title {
    font-size: 3.5rem;
  }

  .home__description {
    font-size: 1.15rem;
  }

  .section__title {
    font-size: 2.5rem;
  }

  .studio__text {
    font-size: 1.05rem;
  }

  .studio__image-photo {
    max-height: 600px;
  }
}
