/* ================================================
   BRUNO ANTUNES PHOTOGRAPHY — CSS
   Paleta: #0A0A0A · #C8A97E · #F5F0EB · #2A2A2A · #1C3A3A
   Tipografia: Cormorant Garamond + DM Sans
================================================ */

/* === SKIP LINK (accessibility) === */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 10px 20px;
  background: var(--gold);
  color: #0A0A0A;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 2px;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

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

:root {
  --bg:        #0A0A0A;
  --bg2:       #111111;
  --card:      #161616;
  --card2:     #1E1E1E;
  --gold:      #C8A97E;
  --gold-light:#D9BC95;
  --gold-dim:  rgba(200,169,126,0.15);
  --text:      #F5F0EB;
  --text-dim:  rgba(245,240,235,0.6);
  --text-muted:rgba(245,240,235,0.35);
  --teal:      #1C3A3A;
  --border:    rgba(245,240,235,0.08);
  --font-serif:'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --section-gap: clamp(80px, 12vw, 140px);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: none; font: inherit; }
ul { list-style: none; }
details { list-style: none; }
details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.8rem, 7vw, 6rem); }
h2 { font-size: clamp(2rem, 5vw, 3.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
em { font-style: italic; color: var(--gold); }

.section-title { color: var(--text); margin-bottom: clamp(40px, 6vw, 72px); }
.label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.body-text {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-dim);
  max-width: 540px;
  line-height: 1.8;
}

/* === LAYOUT === */
.container { max-width: 1140px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 60px); }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 60px); }

section { padding: var(--section-gap) 0; }

/* === CUSTOM CURSOR === */
.cursor {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s var(--ease), opacity 0.3s;
  mix-blend-mode: difference;
}
.cursor-dot {
  position: fixed;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform 0.05s;
}
body.cursor-hover .cursor { width: 60px; height: 60px; border-color: var(--gold-light); background: var(--gold-dim); }
@media (hover: none) {
  .cursor, .cursor-dot { display: none; }
  body { cursor: auto; }
  a, button, summary, [role="button"],
  .cta-btn, .nav-cta, .link-arrow, .lang-btn,
  .g-btn, .insta-link, .footer-insta,
  .wa-float, .cookie-accept, .tc-arrow, .tc-dot,
  .deck-arrow, .deck-dot { cursor: pointer !important; }
}

/* === BUTTONS === */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 1px;
  border: none;
  cursor: none;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.25s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease-out);
}
.cta-btn:hover::before { transform: translateX(0); }
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,169,126,0.25); }
.cta-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }


.cta-btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(200,169,126,0.4);
}
.cta-btn--outline:hover { background: var(--gold-dim); box-shadow: 0 8px 28px rgba(200,169,126,0.1); }

.service-card .cta-btn {
  white-space: nowrap;
  padding: 14px 22px;
  letter-spacing: 0.09em;
  font-size: 0.78rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  cursor: none;
  transition: gap 0.25s var(--ease-out);
}
.link-arrow:hover { gap: 14px; }
.link-arrow:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), opacity 0.6s;
  opacity: 0;
}
.navbar.visible { opacity: 1; }
.navbar.scrolled { background: rgba(10,10,10,0.92); backdrop-filter: blur(12px); padding: 14px 0; }
/* iOS Safari bug: backdrop-filter on this ancestor turns it into a
   containing block for position:fixed children, breaking the fullscreen
   mobile nav overlay (it gets pinned to this bar instead of the viewport).
   Drop the filter while the menu is open; the overlay has its own blur. */
.navbar.menu-open { backdrop-filter: none; -webkit-backdrop-filter: none; }
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s;
}
.nav-logo:hover img { opacity: 0.75; }
.nav-logo span { display: none; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0 auto;
}
.nav-link {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--text); }
.nav-link.active { color: var(--gold); }
.nav-link:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  font-size: 0.7rem;
  color: var(--text-muted);
}
.lang-btn {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  cursor: none;
  transition: color 0.2s;
  padding: 4px 2px;
}
.lang-btn.active, .lang-btn:hover { color: var(--gold); }
.lang-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span {
  display: block;
  width: 24px; height: 1px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* === HERO === */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--bg);
}
.hero-video {
  position: absolute;
  width: 100%;
  height: 135%;
  top: -27%;
  left: 0;
  object-fit: cover;
  object-position: center;
  opacity: 0.65;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.35) 0%,
    rgba(10,10,10,0.15) 40%,
    rgba(10,10,10,0.55) 80%,
    rgba(10,10,10,0.9) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 800px;
}
.hero-headline {
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--text);
  opacity: 0;
  transform: translateY(30px);
  line-height: 1.05;
}
.hero-subheadline {
  font-family: var(--font-sans);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 20px 0 40px;
  opacity: 0;
  transform: translateY(20px);
}
.hero .cta-btn {
  opacity: 0;
  transform: translateY(16px);
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; transform: scaleY(0.8); } 50% { opacity: 1; transform: scaleY(1); } }

/* === REVEAL ANIMATION ===
   Differentiated by element role — not one fade-up applied uniformly.
   reveal-item:  headlines, cards, CTAs — rise + fade (the default weight)
   reveal-label: eyebrow labels — slide in from the left, dash leads
   reveal-text:  body copy — pure opacity, no motion (reads calmly, doesn't compete)
   reveal-image: photos — clip-path wipe, like a print developing
*/
.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-label {
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal-label.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-text {
  opacity: 0;
  transition: opacity 1.1s ease;
}
.reveal-text.is-visible {
  opacity: 1;
}

.reveal-image > *:first-child {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.05s var(--ease-out);
}
.reveal-image.is-visible > *:first-child {
  clip-path: inset(0 0 0% 0);
}

/* === TODAY, I CHOOSE MYSELF === */
.section-ticm {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: clamp(100px, 12vw, 140px) 0;
  overflow: hidden;
}
.ticm-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ticm-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  opacity: 0.85;
}
.ticm-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,10,10,0.78) 0%,
    rgba(10,10,10,0.45) 45%,
    rgba(10,10,10,0.08) 100%
  );
}
.ticm-text-only {
  position: relative;
  z-index: 2;
  max-width: 520px;
}
.ticm-title {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1.1;
  margin-bottom: 28px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.ticm-text-only .body-text {
  margin-bottom: 32px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}

/* img-wrapper base */
.img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}
.img-wrapper img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.img-wrapper:hover img { transform: scale(1.03); }

/* circular variant */
.img-wrapper--circle {
  border-radius: 50%;
  aspect-ratio: 1;
  max-width: 360px;
  margin: 0 auto;
  border: 2px solid var(--gold-dim);
  box-shadow: 0 0 0 8px rgba(200,169,126,0.06);
}
.img-wrapper--circle img {
  aspect-ratio: 1;
  border-radius: 50%;
  object-position: center top;
}

/* === SERVIÇOS === */
.section-services {
  background:
    radial-gradient(ellipse 80% 70% at 50% 55%,
      rgba(200, 169, 126, 0.22) 0%,
      rgba(200, 169, 126, 0.08) 45%,
      rgba(10, 10, 10, 0) 100%),
    var(--bg2);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
}
.service-card {
  padding: clamp(28px, 4vw, 48px) clamp(24px, 3vw, 36px);
  background: var(--card);
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
}
.service-card:hover { background: var(--card2); }
.service-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold-dim);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.3s;
}
.service-card:hover .service-number { color: rgba(200,169,126,0.4); }
.service-card h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-bottom: 12px;
  color: var(--text);
}
.service-card p {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 28px;
  flex: 1;
}
.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.pricing-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-dim);
}
.pricing-list li strong {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gold);
}

/* === COMO FUNCIONA === */
.section-process { background: var(--teal); }
.process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-step {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(245,240,235,0.1);
  transition: padding 0.3s;
}
.process-step:last-child { border-bottom: none; }
.process-step:hover { padding-left: 8px; }
.step-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: rgba(200,169,126,0.25);
  line-height: 1;
  min-width: 64px;
  flex-shrink: 0;
}
.step-body h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: var(--text);
}
.step-body p { font-size: 0.92rem; color: var(--text-dim); }

/* === COLABORADORAS === */
.section-collab { background: var(--bg); }
.collab-inner { max-width: 640px; }
.section-collab .section-title { margin-bottom: 20px; }
.section-collab .body-text { margin-bottom: 40px; }
.collab-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.collab-option {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1px;
  transition: border-color 0.3s;
}
.collab-option:hover { border-color: rgba(200,169,126,0.3); }
.collab-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.collab-option h3 { font-size: 1rem; color: var(--text); margin-bottom: 4px; }
.collab-option p { font-size: 0.88rem; color: var(--text-dim); }
.collab-example {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-dim);
  margin-bottom: 32px;
  padding: 16px 20px;
  border-left: 2px solid var(--gold);
}
.collab-example strong { color: var(--gold); }

/* === SOBRE === */
.section-about { background: var(--bg2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about-image .img-wrapper:not(.img-wrapper--circle) img { aspect-ratio: 4/5; }
.about-image { display: flex; align-items: center; justify-content: center; }
.about-text .section-title { margin-bottom: 20px; }
.about-text .body-text { margin-bottom: 40px; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.stat-label { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.08em; }
.insta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-dim);
  transition: color 0.2s;
  cursor: none;
}
.insta-link:hover { color: var(--gold); }
.insta-link:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* === GALERIA === */
.section-gallery {
  background: #1A1A1A;
  border-top: 1px solid rgba(200, 169, 126, 0.2);
}
.section-gallery .section-title { margin-bottom: 48px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 56px;
}
.g-item { overflow: hidden; position: relative; }
.g-btn {
  display: block;
  width: 100%;
  position: relative;
  cursor: none;
  overflow: hidden;
}
.g-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out), opacity 0.7s ease;
  aspect-ratio: 3/4;
  display: block;
}
.g-btn img.g-fading { opacity: 0; }
.g-btn:hover img { transform: scale(1.04); }
.g-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0);
  transition: background 0.5s;
  pointer-events: none;
}
.g-btn:hover .g-overlay { background: rgba(10,10,10,0.18); }
.g-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: -2px; }

/* Expand affordance */
.g-btn::after {
  content: '';
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><path d='M8 3H5a2 2 0 0 0-2 2v3m18 0V5a2 2 0 0 0-2-2h-3m0 18h3a2 2 0 0 0 2 2v-3M3 16v3a2 2 0 0 0 2 2h3'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.45;
  transition: opacity 0.3s;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.7));
  pointer-events: none;
}
.g-btn:hover::after { opacity: 1; }

@media (max-width: 768px) {
  .g-btn::after {
    opacity: 0.65;
    width: 32px;
    height: 32px;
    bottom: 8px;
    right: 8px;
  }
}
.gallery-cta { text-align: center; }

/* === EVENTOS === */
.section-events {
  position: relative;
  background: #000;
  overflow: hidden;
  min-height: 600px;
}
.events-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: -10%;
  height: 120%;
  opacity: 1;
  background: url('../assets/img/gallery/eventos-bg.jpg') center 95%/cover no-repeat;
  pointer-events: none;
  will-change: transform;
}
.events-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 35%);
}
.events-content {
  max-width: 600px;
  position: relative;
  z-index: 2;
}
.section-events .section-title {
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.9), 0 1px 4px rgba(0,0,0,0.8);
}
.section-events .body-text {
  margin-bottom: 36px;
  text-shadow: none;
  background: rgba(245, 240, 235, 0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 14px 18px;
  border-radius: 6px;
  border-left: 2px solid rgba(200, 169, 126, 0.4);
}
.section-events .label {
  text-shadow: 0 1px 6px rgba(0,0,0,0.9);
}

/* === DEPOIMENTOS === */
.section-testimonials { background: var(--bg2); }

/* Testimonials Carousel */
.tc-carousel {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.tc-track-wrap {
  overflow: hidden;
}
.tc-track {
  display: flex;
  width: 100%;
  transition: transform 0.55s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.tc-slide {
  flex: 0 0 100%;
  padding: 52px 56px;
  background: var(--card);
  border: 1px solid var(--border);
  margin: 0;
  box-sizing: border-box;
}
.tc-slide .tc-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  color: var(--text-dim);
  line-height: 1.78;
  margin-bottom: 28px;
}
.tc-slide footer {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.tc-slide cite {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.tc-meta {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  opacity: 0.5;
}
.tc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(245,240,235,0.15);
  border-radius: 50%;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(8px);
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.tc-arrow:hover { border-color: var(--gold); color: var(--gold); }
.tc-arrow--prev { left: -64px; }
.tc-arrow--next { right: -64px; }
.tc-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.tc-dot {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.tc-dot::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(245,240,235,0.2);
  transition: background 0.3s, transform 0.3s;
}
.tc-dot.is-active::before {
  background: var(--gold);
  transform: scale(1.5);
}
@media (max-width: 960px) {
  .tc-arrow--prev { left: -20px; }
  .tc-arrow--next { right: -20px; }
}
@media (max-width: 600px) {
  .tc-slide { padding: 36px 28px; }
  .tc-arrow { display: none; }
}

/* === FAQ === */
.section-faq { background: var(--bg); }
.faq-list {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text);
  cursor: none;
  transition: color 0.2s;
  user-select: none;
}
.faq-item summary:hover { color: var(--gold); }
.faq-item summary:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s var(--ease-out);
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer {
  padding-bottom: 20px;
  overflow: hidden;
}
.faq-answer p {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.8;
  max-width: 600px;
}

/* === CTA FINAL === */
.section-final-cta {
  position: relative;
  padding: clamp(80px, 14vw, 160px) 0;
  overflow: hidden;
  text-align: center;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.final-cta-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--bg) 0%, rgba(10,10,10,0.5) 40%, rgba(10,10,10,0.5) 60%, var(--bg) 100%);
}
.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.final-cta-title {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  margin-bottom: 16px;
}
.final-cta-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-dim);
  margin-bottom: 40px;
}

/* === CONTACTO === */
.section-contact { background: var(--bg2); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1px;
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  transition: border-color 0.2s;
  width: 100%;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C8A97E' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-group select option { background: var(--card2); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  background: rgba(200,169,126,0.1);
  border: 1px solid rgba(200,169,126,0.3);
  padding: 14px 16px;
  border-radius: 1px;
}
.form-success p { font-size: 0.88rem; color: var(--gold); }
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-dim);
}
.contact-item svg { color: var(--gold); flex-shrink: 0; }
.contact-item a { transition: color 0.2s; }
.contact-item a:hover { color: var(--text); }
.contact-item a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* === FOOTER === */
.footer {
  background: #050505;
  padding: clamp(48px, 8vw, 80px) 0 32px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  display: block;
  margin-bottom: 10px;
}
.footer-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-insta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color 0.2s;
  cursor: none;
}
.footer-insta:hover { color: var(--gold); }
.footer-insta:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.footer-nav-title {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-nav ul,
.footer-legal-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a,
.footer-legal-col a { font-size: 0.82rem; color: var(--text-muted); transition: color 0.2s; }
.footer-nav a:hover,
.footer-legal-col a:hover { color: var(--text); }
.footer-nav a:focus-visible,
.footer-legal-col a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.footer-contact-col { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-col a,
.footer-contact-col span { font-size: 0.82rem; color: var(--text-muted); transition: color 0.2s; }
.footer-contact-col a:hover { color: var(--text); }
.footer-contact-col a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.footer-bottom > p { font-size: 0.75rem; color: var(--text-muted); }
.footer-lang { display: flex; align-items: center; gap: 6px; font-size: 0.7rem; color: var(--text-muted); }

/* === LIGHTBOX === */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.lightbox:not([hidden]) { display: flex; }
.lightbox.lb-open { opacity: 1; }
.lb-img-wrap {
  max-width: 90vw;
  max-height: 90vh;
  overflow: hidden;
}
.lb-img-wrap img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 1px;
}
.lb-close, .lb-prev, .lb-next {
  position: fixed;
  color: var(--text);
  padding: 12px;
  transition: color 0.2s, transform 0.2s;
  cursor: none;
  z-index: 2001;
}
.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { color: var(--gold); }
.lb-close:focus-visible, .lb-prev:focus-visible, .lb-next:focus-visible { outline: 2px solid var(--gold); }

/* === WHATSAPP === */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 52px; height: 52px;
  background: #1A1A1A;
  border: 1px solid rgba(200,169,126,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  animation: waPulse 2.5s ease-in-out infinite;
  cursor: none;
  transition: transform 0.25s var(--ease-out), border-color 0.25s;
}
.wa-float:hover { transform: scale(1.1); animation: none; border-color: rgba(200,169,126,0.7); box-shadow: 0 8px 28px rgba(0,0,0,0.5); }
.wa-float:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; animation: none; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(0,0,0,0.4); }
  50% { box-shadow: 0 4px 32px rgba(0,0,0,0.5), 0 0 0 8px rgba(37,211,102,0.15); }
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  background: #1A1A1A;
  border-top: 1px solid var(--border);
  padding: 16px clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transform: translateY(0);
  transition: transform 0.4s var(--ease-out);
}
.cookie-banner.hidden { transform: translateY(100%); }
.cookie-banner p { font-size: 0.82rem; color: #F5F0EB; }
.cookie-actions { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.cookie-accept {
  padding: 8px 20px;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 1px;
  cursor: none;
  transition: background 0.2s;
  font-family: var(--font-sans);
}
.cookie-accept:hover { background: var(--gold-light); }
.cookie-accept:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.cookie-policy-link { font-size: 0.78rem; color: rgba(245,240,235,0.5); text-decoration: underline; transition: color 0.2s; }
.cookie-policy-link:hover { color: var(--gold); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .ticm-grid, .about-grid { grid-template-columns: 1fr; }
  .ticm-text { padding-right: 0; }
  .about-image { order: -1; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-gap: clamp(60px, 10vw, 90px); }
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.97);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
    z-index: 999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 80px 20px;
  }
  .nav-links.open { opacity: 1; pointer-events: all; }
  .nav-link { font-size: 1.05rem; padding: 10px 0; }
  .nav-toggle { display: flex; z-index: 1001; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
  .lang-switcher { z-index: 1001; gap: 2px; }
  .lang-btn { min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; padding: 0; }
  /* Footer: on desktop the 4-column grid doubles as a sitemap. On
     mobile the hamburger menu already covers navigation, so the nav
     and legal lists are wrapped into compact rows instead of being
     restacked as four long vertical columns the visitor has to
     scroll through to reach the bottom of the page. */
  .footer { padding-top: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 32px; }
  .footer-nav ul,
  .footer-legal-col ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px 20px;
  }
  .footer-nav a,
  .footer-legal-col a,
  .footer-contact-col a,
  .footer-contact-col span {
    display: inline-block;
    padding: 6px 0;
  }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }

  /* Gallery: single, larger image per row instead of a cramped 2-col
     grid with an orphan third tile — each photo gets room to read
     as a portrait, not a thumbnail. */
  .gallery-grid { grid-template-columns: 1fr; gap: 20px; }

  /* Full-width CTAs — bigger thumb target, stronger call to action
     than a left-aligned button floating in empty space. */
  .hero .cta-btn,
  .service-card .cta-btn,
  .gallery-cta .cta-btn,
  .events-content .cta-btn,
  .final-cta .cta-btn,
  .ticm-text .cta-btn {
    display: block;
    width: 100%;
    text-align: center;
  }

  /* iOS Safari auto-zoom prevention: form inputs must be ≥16px */
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 1rem; }
}

@media (max-width: 480px) {
  .about-stats { grid-template-columns: repeat(3, 1fr); }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  .reveal-item, .reveal-label, .reveal-text { opacity: 1 !important; transform: none !important; }
  .reveal-image > *:first-child { clip-path: none !important; }
  .hero-headline, .hero-subheadline, .hero .cta-btn { opacity: 1 !important; transform: none !important; }
  .wa-float { animation: none !important; }
}

/* === MUNDO DE CORES BRAND (warm) === */
.mdc-page { --gold: #E8A87C; --teal: #2D4A2D; }


/* ================================================
   DESIGN UPGRADE v2 — Referencias: Taste of Italy
   + Aksari + Shutter Stories
================================================ */

/* --- Novos tokens --- */
:root {
  --cream:       #EDE8E1;
  --cream-dark:  #E0D9CF;
  --cream-text:  #1A1208;
  --cream-muted: rgba(26,18,8,0.55);
  --cream-gold:  #8B6D1A;
  --cream-border:rgba(26,18,8,0.10);
}

/* ------------------------------------------------
   NAVBAR — pill CTA + ajustes
------------------------------------------------ */
.nav-container { gap: 24px; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 22px;
  border: 1px solid rgba(200,169,126,0.55);
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
  cursor: none;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.nav-cta:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.nav-cta:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ------------------------------------------------
   HERO — editorial bottom-left (Taste of Italy)
------------------------------------------------ */
.hero {
  align-items: flex-end;
  justify-content: flex-start;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 0 clamp(24px, 7vw, 100px) clamp(60px, 10vh, 100px);
  max-width: none;
  width: 100%;
}
.hero-headline {
  font-size: clamp(3.8rem, 9.5vw, 10rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 0.95;
  max-width: 14ch;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}
.hero-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-subheadline {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,235,0.5);
  margin: 18px 0 36px;
  opacity: 1;
  transform: none;
}
.hero .cta-btn {
  opacity: 1;
  transform: none;
}
/* overlay mais leve para a foto respirar */
.hero-overlay {
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.80) 0%,
    rgba(10,10,10,0.25) 40%,
    rgba(10,10,10,0.10) 100%
  );
}

/* ------------------------------------------------
   TICM — secção existente (ajuste label)
------------------------------------------------ */
.section-ticm .label { color: var(--gold); }

/* ------------------------------------------------
   SERVIÇOS — editorial sem borda container
------------------------------------------------ */
.section-services {
  background:
    radial-gradient(ellipse 80% 70% at 50% 55%,
      rgba(200, 169, 126, 0.22) 0%,
      rgba(200, 169, 126, 0.08) 45%,
      rgba(10, 10, 10, 0) 100%),
    var(--bg2);
}

.services-grid {
  border: none;
  gap: 0;
  border-top: 1px solid var(--border);
}
.service-card {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  padding: clamp(32px, 4vw, 52px) clamp(24px, 3vw, 44px);
  position: relative;
}
.service-card:last-child { border-right: none; }
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.5s var(--ease-out);
}
.service-card:hover::before { width: 100%; }
.service-card:hover { background: rgba(255,255,255,0.015); }

.service-number {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 7vw, 7rem);
  color: rgba(200,169,126,0.45);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.4s;
}
.service-card:hover .service-number { color: rgba(200,169,126,0.70); }

/* ------------------------------------------------
   COMO FUNCIONA — cream (Aksari)
------------------------------------------------ */
.section-process {
  background: var(--cream);
}
.section-process .label { color: var(--cream-gold); }
.section-process .section-title { color: var(--cream-text); }
.section-process .body-text { color: var(--cream-muted); }
.section-process .process-step {
  border-bottom-color: var(--cream-border);
}
.section-process .process-step:hover { padding-left: 8px; }
.section-process .step-num {
  color: rgba(139,109,26,0.18);
  font-size: clamp(2.5rem, 5vw, 5rem);
}
.section-process .step-body h3 { color: var(--cream-text); }
.section-process .step-body p  { color: var(--cream-muted); }

/* thin gold rule no topo da secção cream */
.section-process::before {
  content: '';
  display: block;
  width: clamp(48px, 6vw, 80px);
  height: 1px;
  background: var(--cream-gold);
  margin: 0 auto clamp(48px, 6vw, 72px);
  position: relative;
  top: 0;
}

/* ------------------------------------------------
   COLABORADORAS — pequeno ajuste visual
------------------------------------------------ */
.section-collab { border-top: 1px solid var(--border); }

/* ------------------------------------------------
   SOBRE — ajuste da secção cream alternada
------------------------------------------------ */
.section-about { background: var(--bg); }

/* ------------------------------------------------
   GALERIA — filtros (Shutter Stories)
------------------------------------------------ */

/* ------------------------------------------------
   DEPOIMENTOS — dark quente (não puro preto)
------------------------------------------------ */
.section-testimonials { background: #0D0C0A; }
.tc-slide {
  border-color: rgba(200,169,126,0.07);
  background: rgba(255,255,255,0.02);
}

/* ------------------------------------------------
   FAQ — cream
------------------------------------------------ */
.section-faq { background: var(--cream-dark); }
.section-faq .label { color: var(--cream-gold); }
.section-faq .section-title { color: var(--cream-text); }
.section-faq .faq-item { border-bottom-color: var(--cream-border); }
.section-faq .faq-item summary { color: var(--cream-text); }
.section-faq .faq-item summary:hover { color: var(--cream-gold); }
.section-faq .faq-item summary::after { color: var(--cream-gold); }
.section-faq .faq-answer p { color: var(--cream-muted); }

/* ------------------------------------------------
   CONTACTO — bg ligeiramente quente
------------------------------------------------ */
.section-contact { background: #0D0C0A; }

/* ------------------------------------------------
   FOOTER — fundo quente, não puro preto
------------------------------------------------ */
.footer { background: #080705; border-top-color: rgba(200,169,126,0.08); }

/* ------------------------------------------------
   TIPOGRAFIA — escala e peso melhorados
------------------------------------------------ */
h2 { font-size: clamp(2.2rem, 5.5vw, 4.2rem); }
.section-title { letter-spacing: -0.02em; }

/* label com linha decorativa antes */
.label::before {
  content: '—';
  margin-right: 8px;
  opacity: 0.5;
}

/* ------------------------------------------------
   SCROLL INDICATOR — dourado
------------------------------------------------ */
.scroll-line {
  background: linear-gradient(to bottom, transparent, rgba(200,169,126,0.7));
}

/* ------------------------------------------------
   RESPONSIVE OVERRIDES
------------------------------------------------ */
@media (max-width: 768px) {
  .hero-content {
    padding: 0 20px clamp(48px, 8vh, 72px);
  }
  .hero-headline {
    font-size: clamp(3rem, 12vw, 5rem);
  }
  /* Eyebrow + subheadline legibility on small screens */
  .hero-eyebrow { font-size: 0.75rem; }
  .hero-subheadline { font-size: 0.88rem; letter-spacing: 0.1em; }
  .nav-cta { display: none; }
  .g-filters { overflow-x: auto; padding-bottom: 4px; }
  .g-filter { padding: 10px 16px; white-space: nowrap; }
  /* Process e FAQ cream — mobile legibility */
  .section-process::before { margin-bottom: 40px; }
}
