@charset "UTF-8";

:root {
  --bg: #0c0c0c;
  --text: #f0eDe6;
  --accent: #CBA469; /* Muted gold */
  --accent-light: #DFCDA9;
  
  --ff-serif: 'Playfair Display', serif;
  --ff-sans: 'Plus Jakarta Sans', sans-serif;
  --ff-display: 'Cinzel', serif;
}

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

html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--ff-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none; /* Custom cursor */
}

/* ── SCROLL PROGRESS ── */
.scroll-progress-container {
  position: fixed; top: 0; left: 0; width: 100%; height: 3px;
  background: rgba(255,255,255,0.02); z-index: 10001;
}
.scroll-progress-bar {
  width: 0%; height: 100%; background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}


a { text-decoration: none; color: inherit; cursor: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ── PRELOADER ── */
.preloader {
  position: fixed; inset: 0;
  background: var(--bg); z-index: 9999;
  display: flex; align-items: center; justify-content: center;
}
.preloader-text { text-align: center; overflow: hidden; }
.pl-av {
  font-family: var(--ff-display); font-size: 2.5rem; 
  letter-spacing: 0.4em; color: var(--accent);
  text-transform: uppercase;
  font-weight: 400;
}
.pl-progress {
  width: 200px; height: 1px; background: rgba(255,255,255,0.1);
  margin-top: 1rem; overflow: hidden; position: relative;
}
.pl-bar {
  width: 0%; height: 100%; background: var(--accent);
  transition: width 0.1s;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 15px; height: 15px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background 0.3s;
  display: flex; align-items: center; justify-content: center;
  mix-blend-mode: difference;
}
.cursor.active {
  width: 80px; height: 80px;
  background: rgba(255,255,255,1);
  mix-blend-mode: normal;
}
.cursor-text {
  font-size: 10px; font-weight: 600; text-transform: uppercase;
  color: #000; opacity: 0; transition: opacity 0.3s;
  letter-spacing: 0.1em;
}
.cursor.active .cursor-text { opacity: 1; }

/* ── NOISE OVERLAY ── */
.noise-overlay {
  position: fixed; inset: 0; z-index: 9998;
  pointer-events: none; opacity: 0.04;
  background: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; width: 100%;
  padding: 2rem 3rem; display: flex; justify-content: space-between; align-items: center;
  z-index: 1000001; 
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease, padding 0.4s ease;
}
.nav.scrolled {
  padding: 1.2rem 3rem;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nav-brand {
  font-family: var(--ff-display); font-size: 1.1rem; letter-spacing: 0.15em;
  display: flex; align-items: center; text-transform: uppercase;
}
.nav-brand small {
  font-family: var(--ff-body); font-size: 0.6rem; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4); font-weight: 300;
  border-left: 1px solid rgba(255,255,255,0.2); 
  padding-left: 1rem; margin-left: 1rem;
  display: inline-block;
}
.nav-right { display: flex; align-items: center; gap: 4rem; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 500;
}
.btn-book {
  padding: 1rem 2rem; border: 1px solid rgba(255,255,255,0.3);
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em;
  position: relative; overflow: hidden; border-radius: 40px;
}
.btn-book-bg {
  position: absolute; inset: 0; background: var(--text);
  transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1; border-radius: 40px;
}
.btn-book:hover .btn-book-bg { transform: translateY(0); }
.btn-book:hover { color: var(--bg); border-color: var(--text); }

/* ── HERO ── */
.hero { position: relative; height: 100vh; width: 100vw; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 1; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, rgba(12,12,12,0.3) 100%);
}
.hero-img-bg { transform: scale(1.1); }
.hero-content {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 3rem;
}

/* ── HERO LEAD CARD (Ultra-Discreet & Minimalist) ── */
.hero-form-card {
  position: relative;
  z-index: 10;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(201, 169, 110, 0.15);
  padding: 1.2rem;
  width: 100%;
  max-width: 280px;
  margin-top: 1.5rem;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: floatCard 8s ease-in-out infinite;
}

/* Efeito de Brilho (Shine) */
.hero-form-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -150%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.05),
    transparent
  );
  transform: rotate(45deg);
  animation: shineCard 10s infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes shineCard {
  0% { left: -150%; }
  20%, 100% { left: 150%; }
}

.hero-form-card h3 {
  font-family: var(--ff-serif);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  color: var(--accent);
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
}

.hero-form-card .form-subtitle {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.2rem;
  text-align: center;
  font-weight: 300;
  line-height: 1.3;
}

.hero-input-group { margin-bottom: 1rem; }
.hero-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 0;
  color: var(--text);
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  transition: all 0.4s ease;
}
.hero-input:focus {
  outline: none;
  border-bottom-color: var(--accent);
}
.hero-input::placeholder { color: rgba(255, 255, 255, 0.55); font-weight: 300; }

.hero-form-btn {
  width: 100%;
  padding: 1rem;
  background: var(--accent);
  color: var(--bg);
  border: none;
  font-family: var(--ff-sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  cursor: pointer;
  transition: all 0.4s ease;
  margin-top: 0.4rem;
}
.hero-form-btn:hover { background: #e0bc7a; transform: translateY(-1px); box-shadow: 0 8px 15px rgba(0,0,0,0.3); }

.form-disclaimer {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.8rem;
  text-align: center;
  line-height: 1.2;
  font-weight: 300;
}

@media (max-width: 768px) {
  .hero-form-card { 
    max-width: 260px; 
    padding: 1rem;
    margin-top: 1.5rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.hero-title {
  font-family: var(--ff-serif); font-size: clamp(4rem, 10vw, 11rem);
  font-weight: 400; line-height: 0.85; margin-bottom: 5vh;
}
.ht-line { overflow: hidden; }
.ht-text { display: block; transform: translateY(100%); }
.ht-indent { margin-left: 15vw; }
.hero-title em { font-style: italic; color: var(--accent); }

.hero-bottom { display: flex; justify-content: space-between; align-items: flex-end; }
.hero-location p { font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.hero-scroll-indicator { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.hero-scroll-indicator span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; }
.scroll-line { width: 1px; height: 60px; background: rgba(255,255,255,0.2); position: relative; }
.scroll-dot { width: 3px; height: 3px; background: var(--text); position: absolute; left: -1px; top: 0; animation: scrollDown 2s infinite ease-in-out; }
@keyframes scrollDown { 0% { top: 0; opacity: 1; } 100% { top: 100%; opacity: 0; } }

/* ── STATEMENT ── */
.statement { padding: 15vh 3rem; display: flex; justify-content: center; }
.statement-container { max-width: 1000px; }
.statement-text {
  font-family: var(--ff-serif); font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.3; font-weight: 400; color: rgba(255,255,255,0.8);
}
.statement-text em { font-style: italic; color: var(--accent); }
.statement-author { margin-top: 3rem; font-size: 1rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }

/* ── PORTFOLIO HORIZONTAL ── */
.gallery-wrapper { padding: 8vh 0; position: relative; overflow: hidden; }
.gallery-header { padding: 0 3rem; margin-bottom: 2rem; }
.gallery-header .section-title { font-family: var(--ff-serif); font-size: 5vw; font-weight: 400; line-height: 1; }
.gallery-header .section-title em { font-style: italic; color: var(--accent); }
.gallery-header .section-sub { margin-top: 1rem; font-size: 1rem; color: rgba(255,255,255,0.5); }

.gallery-container { padding: 2vh 0; width: 100vw; overflow: hidden; }
.gallery-track { display: flex; gap: 4vw; padding: 0 10vw; width: max-content; align-items: center; }
.gallery-item { width: clamp(280px, 25vw, 400px); display: flex; flex-direction: column; justify-content: center; }
.gi-img-wrapper { width: 100%; aspect-ratio: 3/4; overflow: hidden; background: #1a1a1a; position: relative; border: 1px solid rgba(255,255,255,0.05); cursor: pointer; }
.gi-img-wrapper img { transform: scale(1.1); filter: grayscale(100%) contrast(1.1) brightness(0.9); transition: filter 1.2s cubic-bezier(0.19, 1, 0.22, 1), transform 1.5s cubic-bezier(0.19, 1, 0.22, 1), brightness 1.2s; } 
.gallery-item:hover .gi-img-wrapper img { filter: grayscale(0%) contrast(1) brightness(1); transform: scale(1.05); }
.gi-info { display: none; }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0; background: rgba(10,10,10,0.95);
  z-index: 100000; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(10px); cursor: auto;
}
.lightbox.active { opacity: 1; visibility: visible; }
#lightbox-img {
  height: 85vh !important;
  height: 85dvh !important; /* iPhone optimization */
  width: auto !important;
  aspect-ratio: 3/4 !important;
  display: block !important;
  object-fit: cover !important;
  transform: scale(0.95); transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 4px;
  clip-path: inset(0px 0px 6% 0px);
  -webkit-clip-path: inset(0px 0px 6% 0px); /* Safari/iPhone support */
}
.lightbox.active #lightbox-img { transform: scale(1); }

@media (max-width: 768px) {
  #lightbox-img {
    width: 90vw !important;
    height: auto !important;
  }
}
.lightbox-close {
  position: absolute; top: 2rem; right: 3rem;
  font-family: var(--ff-sans); font-size: 1rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text); cursor: pointer;
  z-index: 100001; transition: color 0.3s; padding: 1rem;
}
.lightbox-close:hover { color: var(--accent); }

/* ── PARALLAX BREAK ── */
.parallax-break { position: relative; height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.parallax-img-container { position: absolute; inset: 0; z-index: 1; }
.parallax-img { filter: brightness(0.4); }
.overlay-dark { position: absolute; inset: 0; background: rgba(0,0,0,0.75); z-index: 1; }
.testimonial-content { position: relative; z-index: 2; max-width: 900px; padding: 0 5vw; display: flex; flex-direction: column; align-items: center; text-align: center; }
.testimonial-content .stars { color: var(--accent); font-size: 1.5rem; margin-bottom: 2rem; letter-spacing: 0.5rem; }
.testimonial-slider { display: grid; width: 100%; }
.testi-slide { grid-area: 1 / 1; opacity: 0; visibility: hidden; transition: opacity 0.8s ease, visibility 0.8s ease; }
.testi-slide.active { opacity: 1; visibility: visible; }
.testimonial-quote { font-family: var(--ff-body); font-size: clamp(1.5rem, 3vw, 2.5rem); font-style: normal; line-height: 1.5; color: #ffffff; margin-bottom: 2rem; font-weight: 400; text-shadow: 0 2px 8px rgba(0,0,0,0.5); }
.testimonial-author { font-family: var(--ff-body); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); }
.google-rating { margin-top: 3rem; font-family: var(--ff-body); font-size: 0.85rem; color: rgba(255,255,255,0.7); letter-spacing: 0.05em; text-transform: uppercase; }
.google-rating strong { color: var(--accent); font-weight: 600; font-size: 1rem; }

/* ── ABOUT SPECIALIST ── */
.about-specialist { padding: 15vh 3rem; background-color: var(--bg); }
.about-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-image-wrapper { position: relative; width: 100%; aspect-ratio: 3/4; overflow: hidden; border-radius: 4px; }
.about-img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) contrast(1.1); transition: filter 0.8s ease, transform 1.2s ease; }
.about-img:hover { filter: grayscale(0%) contrast(1); transform: scale(1.03); }
.about-content { padding-right: 2rem; }
.about-content .section-title { margin-bottom: 3.5rem; }
.about-desc { font-family: var(--ff-body); color: var(--text-dim); font-size: 1.1rem; line-height: 1.6; margin-bottom: 1.5rem; }

/* ── EXPERTISE ── */
.expertise { padding: 15vh 3rem; }
.expertise-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; max-width: 1400px; margin: 0 auto; }
.eyebrow { font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 2rem; }
.expertise-left .section-title { font-family: var(--ff-serif); font-size: 6vw; font-weight: 400; line-height: 0.9; margin-bottom: 3rem; }
.expertise-left .section-title em { font-style: italic; color: rgba(255,255,255,0.5); }
.expertise-desc { font-size: 1.2rem; line-height: 1.8; color: rgba(255,255,255,0.7); max-width: 450px;}

.expertise-list { display: flex; flex-direction: column; }
.exp-item { border-top: 1px solid rgba(255,255,255,0.1); padding: 3rem 0; display: flex; gap: 3rem; }
.exp-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.1); }
.exp-num { font-family: var(--ff-display); font-size: 1.5rem; color: var(--accent); }
.exp-content h3 { font-family: var(--ff-serif); font-size: 2.5rem; font-weight: 400; margin-bottom: 1rem; }
.exp-content p { font-size: 1rem; line-height: 1.6; color: rgba(255,255,255,0.5); }

/* ── MENTORSHIP LAUNCH ── */
.mentorship-launch {
  padding: 120px 3rem;
  background: #0d0d0d;
  position: relative;
  overflow: hidden;
}
.mentorship-container {
  max-width: 1200px;
  margin: 0 auto;
}
.mentorship-content {
  text-align: center;
}
.mentorship-description {
  max-width: 700px;
  margin: 2rem auto;
  font-size: 1.1rem;
  opacity: 0.7;
  line-height: 1.8;
}
.mentorship-video-wrapper {
  margin: 4rem auto;
  max-width: 900px;
  aspect-ratio: 16/9;
  background: #151515;
  border: 1px solid rgba(201, 169, 110, 0.2);
  position: relative;
  cursor: pointer;
  transition: transform 0.4s ease;
}
.mentorship-video-wrapper:hover { transform: scale(1.01); }
.video-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  color: rgba(255,255,255,0.4);
}
.play-button {
  width: 80px; height: 80px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: flex; justify-content: center; align-items: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}
.play-button span { font-size: 1.5rem; color: var(--accent); }
.mentorship-video-wrapper:hover .play-button { background: var(--accent); }
.mentorship-video-wrapper:hover .play-button span { color: var(--bg); }

.mentorship-actions {
  margin-top: 3rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.mentorship-actions.reveal {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.btn-vip {
  display: inline-flex;
  align-items: center;
  padding: 1.5rem 3rem;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  text-decoration: none;
  font-family: var(--ff-sans);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.4s ease;
}
.btn-vip:hover {
  background: var(--accent);
  color: var(--bg);
}
.whatsapp-icon { margin-right: 15px; color: #25d366; }
.vip-note {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  opacity: 0.5;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .mentorship-launch { padding: 80px 1.5rem; }
  .btn-vip { width: 100%; justify-content: center; padding: 1.2rem; font-size: 0.8rem; }
}

/* ── MASTERCLASS ── */
.masterclass-section { padding: 15vh 3rem; background-color: #050505; }
.masterclass-content .section-title { margin-bottom: 3.5rem; }
.masterclass-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.masterclass-image-wrapper { position: relative; width: 100%; aspect-ratio: 4/5; overflow: hidden; border-radius: 4px; border: 1px solid rgba(201, 169, 110, 0.1); }
.masterclass-img { width: 100%; height: 100%; object-fit: cover; }
.masterclass-features { list-style: none; margin: 2rem 0; padding: 0; }
.masterclass-features li { font-family: var(--ff-body); color: var(--text); padding: 0.8rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; gap: 1rem; font-size: 0.95rem; }
.masterclass-features li::before { content: "→"; color: var(--accent); font-weight: bold; }


/* ── FOOTER ── */
.footer { 
  padding: 15vh 3rem 5vh; display: flex; flex-direction: column; align-items: center; 
  min-height: 90vh; 
  background: rgba(5, 5, 5, 0.8); /* Transparência no rodapé */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative; 
}
.footer-huge-text { 
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-size: 7vw; line-height: 1.1; 
  text-transform: uppercase; letter-spacing: 0.35em; 
  margin-bottom: 12vh; cursor: pointer; position: relative; 
  padding: 8vw 0; width: 100%;
}
.footer-huge-text span { transition: color 0.8s cubic-bezier(0.19, 1, 0.22, 1); white-space: nowrap; color: var(--text); }

.footer-logo-line {
  width: 15vw; height: 1px; background: var(--accent);
  margin-top: 1.5rem; transform: scaleX(0); transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.footer-subtitle {
  font-family: var(--ff-body); font-size: 0.8rem; letter-spacing: 0.5em;
  text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 1.5rem;
  transition: color 0.6s ease;
}
/* ── FOCUS MODE (Para Tráfego Pago) ── */
body.focus-mode .nav,
body.focus-mode section:not(.mentorship-launch),
body.focus-mode .footer,
body.focus-mode .sticky-mobile-cta {
  display: none !important;
}

body.focus-mode .mentorship-launch {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: #000;
}

body.focus-mode .mentorship-container {
  width: 100%;
}

body.focus-mode .mentorship-video-wrapper {
  margin: 2rem auto;
  border-color: rgba(201, 169, 110, 0.4);
  box-shadow: 0 0 50px rgba(0,0,0,1);
}

@media (max-width: 768px) {
  body.focus-mode .mentorship-launch {
    padding: 1rem;
  }
}

.footer-huge-text:hover span.footer-logo-main { color: var(--accent); }
.footer-huge-text:hover .footer-logo-line { transform: scaleX(1); }
.footer-huge-text:hover .footer-subtitle { color: var(--text); }

.footer-grid { width: 100%; max-width: 1400px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem; margin-bottom: 8vh; }
.footer-label { font-family: var(--ff-body); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--accent); margin-bottom: 1.5rem; }
.footer-col p { font-family: var(--ff-body); font-size: 0.9rem; line-height: 1.8; color: rgba(255,255,255,0.5); margin-bottom: 0.5rem; }
.footer-col a { transition: color 0.3s ease; }
.footer-col a:hover { color: var(--text); }

.footer-bottom { width: 100%; display: flex; justify-content: space-between; margin-top: auto; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 3rem; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3);}
.fb-right { display: flex; gap: 3rem; }
.fb-right a:hover { color: var(--accent); }

/* RESPONSIVE */
@media(max-width: 1024px) {
  .nav { padding: 1.5rem 2rem; }
  .nav-links { display: none; }
  .btn-book { 
    display: inline-flex; 
    padding: 0.6rem 1rem; 
    font-size: 0.7rem; 
    white-space: nowrap; 
  } /* Manter CTA visível mas menor em mobile */
  .menu-toggle { display: flex; }
  .hero-title { font-size: 14vw; }
  .ht-indent { margin-left: 0; }
  .statement-text { font-size: 2.2rem; }
  
  .gallery-container { padding: 5vh 0; width: 100vw; overflow: hidden; position: relative; }
  .gallery-track { 
    display: flex; gap: 6vw; padding: 0 15vw; width: max-content; 
    align-items: center;
  }
  .gallery-item { 
    width: 55vw !important; 
    flex-shrink: 0;
  }
  
  .about-inner, .expertise-inner, .masterclass-inner { grid-template-columns: 1fr; gap: 4rem; }
  .about-content { padding-right: 0; }
  .about-image-wrapper { aspect-ratio: 4/5; max-width: 500px; margin: 0 auto; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 4rem; }
  .footer-bottom { flex-direction: column; gap: 2rem; }
  .masterclass-inner { display: flex; flex-direction: column-reverse; gap: 4rem; }
}

@media (max-width: 768px) {
  .hero-img-bg { width: 100vw !important; object-fit: cover !important; } /* Fix hero gap */
  .hero-title { font-size: clamp(3rem, 12vw, 6rem); }
  .statement-text { font-size: clamp(1.5rem, 4vw, 2rem) !important; line-height: 1.4; } /* Reduce statement text size */
  .gallery-header .section-title { font-size: clamp(2rem, 8vw, 4rem) !important; } /* Increase A Coleção size */
  .testimonial-quote { font-size: clamp(1rem, 3vw, 1.2rem) !important; } /* Reduce testimonial size */
  .expertise .section-title { font-size: clamp(2rem, 8vw, 4rem) !important; } /* Increase Padrão Ouro size */
  .footer-logo-main { font-size: clamp(2rem, 6vw, 3rem) !important; display: block; line-height: 1.1; } /* Footer logo adjustment */
  
  .masterclass-section { padding: 8vh 2rem !important; } /* Reduce padding */
  .footer { padding: 8vh 2rem 5vh !important; } /* Reduce padding */
  .footer-huge-text { padding: 4vw 0 !important; margin-bottom: 5vh !important; } /* Reduce huge text gap */

  .exp-item { flex-direction: column; gap: 1rem; }
  .footer-huge-text { font-size: clamp(2rem, 6vw, 3rem); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

  #lightbox-img {
    width: 85vw !important;
    height: auto !important;
    aspect-ratio: 3/4 !important;
  }
  
  .menu-toggle { display: flex !important; } /* Mostrar o menu sanduíche */
  .nav-links { display: none !important; } /* Esconder links normais */
}

.menu-toggle {
  display: none; width: 40px; height: 40px;
  flex-direction: column; justify-content: center; align-items: flex-end;
  gap: 6px; background: none; border: none; cursor: pointer; z-index: 100001;
}
.menu-toggle span {
  display: block; width: 28px; height: 2px; background: var(--text);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.menu-toggle span:nth-child(2) { width: 20px; }
.menu-toggle span:last-child { width: 14px; }

/* Transformação em X para FECHAR */
.menu-toggle.active { align-items: center; }
.menu-toggle.active span { background: var(--accent); width: 30px !important; }
.menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(20px); }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; 
  background: rgba(10, 10, 10, 0.85); /* Transparência sofisticada */
  backdrop-filter: blur(25px); /* Efeito de vidro */
  -webkit-backdrop-filter: blur(25px); /* Suporte iPhone */
  z-index: 100000; display: flex; align-items: center; justify-content: center;
  transform: translateY(-100%); transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.mobile-menu.active { transform: translateY(0); }
.mobile-menu-links { display: flex; flex-direction: column; align-items: center; gap: 2.2rem; }
.mobile-link {
  font-family: var(--ff-body); font-size: 0.9rem; font-weight: 400;
  color: var(--text); transition: all 0.4s ease;
  letter-spacing: 0.35em; text-transform: uppercase;
  opacity: 0.6;
}
.mobile-link:hover { color: var(--accent); opacity: 1; letter-spacing: 0.4em; }

/* ── PRELOADER MOBILE BREAK ── */
.mobile-break { display: none; }
@media (max-width: 768px) {
  .mobile-break { display: block; }
  .pl-av { text-align: center; line-height: 1.1; display: block; font-size: 12vw !important; }
}

/* ── STICKY MOBILE CTA ── */
.sticky-mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  padding: 1.2rem 2rem; 
  background: rgba(10, 10, 10, 0.8); /* Fundo transparente sofisticado */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-top: 1px solid rgba(201, 169, 110, 0.3);
  z-index: 9999; text-align: center;
  text-decoration: none;
  opacity: 0; transform: translateY(100%);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.sticky-mobile-cta.visible { opacity: 1; transform: translateY(0); }
.sticky-mobile-cta span {
  font-family: var(--ff-body); font-weight: 500; font-size: 0.85rem;
  color: var(--accent); text-transform: uppercase; letter-spacing: 0.2em;
}

@media (max-width: 768px) {
  .sticky-mobile-cta { display: block; }
  .footer { padding-bottom: 12vh !important; }
}
