/* ============================================================
   DELLA'S BUFFET — Luxo Artesanal Editorial
   Design System: tipografia serifada, layouts assimétricos,
   glassmorphism, cursor customizado, text reveal,
   parallax multicamadas.
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Work+Sans:wght@300;400;500;600;700&display=swap');

/* ── Variáveis ── */
:root {
  --bg: #f7f3ec;
  --bg-warm: #f0e9dd;
  --surface: rgba(255, 253, 250, 0.72);
  --surface-solid: #fffdfa;
  --text: #2a1f14;
  --text-soft: #5c4a38;
  --text-muted: #8a7562;
  --primary: #b8923a;
  --primary-light: #d4af37;
  --primary-glow: rgba(184, 146, 58, 0.35);
  --accent: #4a3520;
  --accent-deep: #2e1f11;
  --border: rgba(74, 53, 32, 0.1);
  --border-gold: rgba(184, 146, 58, 0.25);
  --shadow-soft: 0 8px 32px rgba(42, 31, 20, 0.08);
  --shadow-medium: 0 20px 60px rgba(42, 31, 20, 0.12);
  --shadow-deep: 0 40px 100px rgba(42, 31, 20, 0.18);

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-accent: 'Cormorant Garamond', 'Playfair Display', serif;
  --font-body: 'Work Sans', system-ui, sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
  --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}

img {
  display: block;
  max-width: 100%;
  background: linear-gradient(135deg, #ece6db 0%, #e2d9cc 50%, #ece6db 100%);
  background-size: 200% 200%;
  animation: skeleton-shimmer 2s ease infinite;
}

img.img-loaded {
  animation: none;
  background: none;
}

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

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

ul, ol {
  list-style: none;
}

/* ── Cursor Customizado ── */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  transition: width 0.3s var(--ease-out-expo), height 0.3s var(--ease-out-expo), background 0.3s ease;
  transform: translate(-50%, -50%);
}

.custom-cursor.hover {
  width: 48px;
  height: 48px;
  background: rgba(184, 146, 58, 0.2);
  border: 1.5px solid var(--primary);
  mix-blend-mode: normal;
}

.custom-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 4px;
  height: 4px;
  background: var(--primary-light);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10002;
  transform: translate(-50%, -50%);
}

@media (pointer: coarse) {
  body { cursor: auto; }
  button, a { cursor: pointer; }
  .custom-cursor, .custom-cursor-dot { display: none; }
}

/* ── Skip Link ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 12px 12px;
  z-index: 9999;
  transition: top 0.3s ease;
  font-weight: 700;
  text-decoration: none;
  font-family: var(--font-body);
}

.skip-link:focus {
  top: 0;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 3rem;
  backdrop-filter: blur(20px) saturate(1.4);
  background: rgba(247, 243, 236, 0.82);
  border-bottom: 1px solid transparent;
  transition: padding 0.4s var(--ease-out-expo), background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.site-header.scrolled {
  padding: 0.75rem 3rem;
  background: rgba(247, 243, 236, 0.95);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 30px rgba(42, 31, 20, 0.06);
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.brand-logo {
  width: 110px;
  height: auto;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease-out-expo);
}

.brand-logo:hover {
  transform: scale(1.05) rotate(-2deg);
}

.brand-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--accent);
}

.brand-block small {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-muted);
  margin-top: -2px;
}

/* ── Navigation ── */
.site-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.site-nav a {
  position: relative;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-soft);
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--primary);
  transition: width 0.4s var(--ease-out-expo);
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--accent);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

.site-nav .nav-cta {
  padding: 1rem 3.2rem;
  border-radius: 999px;
  font-size: 0.9rem;
  white-space: nowrap;
  background: var(--primary);
  color: white;
  font-weight: 600;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 24px var(--primary-glow);
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease, background 0.3s ease;
}

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

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--primary-glow);
  background: var(--primary-light);
}

/* ── Menu Mobile Toggle ── */
.menu-toggle {
  display: none;
  font-size: 1.4rem;
  color: var(--accent);
  padding: 0.5rem;
  z-index: 51;
}

/* ── Hero Section ── */
.hero-block {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  padding: 8rem 4rem 0;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--primary);
}

.hero-block h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--accent-deep);
  margin-bottom: 1.5rem;
}

.hero-block h1 em {
  font-style: italic;
  color: var(--primary);
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.1rem 2.2rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.2);
  transform: translateX(-100%);
  transition: transform 0.5s var(--ease-out-expo);
}

.button:hover::before {
  transform: translateX(100%);
}

.button-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 12px 40px rgba(184, 146, 58, 0.35);
}

.button-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 50px rgba(184, 146, 58, 0.45);
  background: var(--primary-light);
}

.button-secondary {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--border-gold);
}

.button-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
}

.hero-tags {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-tags span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  background: rgba(255, 253, 250, 0.5);
  transition: all 0.3s ease;
}

.hero-tags span:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 640px;
  min-height: 520px;
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  inset: -20px;
  border: 1px solid var(--border-gold);
  border-radius: 40px;
  z-index: -1;
}

.hero-tilt-wrap {
  perspective: 900px;
  will-change: transform;
}

.hero-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow-deep);
  display: block;
  background: var(--bg-warm);
}

.hero-image-badge {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: var(--surface-solid);
  backdrop-filter: blur(16px);
  padding: 1.25rem 1.75rem;
  border-radius: 20px;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border);
  z-index: 3;
}

.hero-image-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--primary);
  line-height: 1;
}

.hero-image-badge span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Section Base ── */
.section {
  position: relative;
  padding: 4.5rem 4rem;
}

.section > * {
  position: relative;
  z-index: 1;
}

.section-head {
  max-width: 720px;
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--primary);
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--accent-deep);
}

.section h2 em {
  font-style: italic;
  color: var(--primary);
}

/* ── Coverage Section (Área de Atuação) ── */
.coverage-section {
  position: relative;
  z-index: 2;
  margin-top: -4.5rem;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
}

.coverage-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
}

.coverage-text {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-soft);
}

.coverage-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 1rem;
}

.coverage-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s ease;
}

.coverage-images img:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-medium);
}

.coverage-images img:first-child {
  grid-row: span 2;
}

.coverage-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.coverage-cities span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: all 0.3s ease;
}

.coverage-cities span:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* ── About Section ── */
.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-visual img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow-deep);
}

.about-visual::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--border-gold);
  border-radius: 30px;
  z-index: -1;
}

.about-quote {
  font-family: var(--font-accent);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 2.5rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--primary);
}

/* ── Intro Grid (Missão/Visão/Valores) ── */
.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.intro-card {
  position: relative;
  background: var(--surface);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.5s var(--ease-out-expo);
  overflow: hidden;
}

.intro-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.intro-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  border-color: var(--border-gold);
}

.intro-card:hover::before {
  opacity: 1;
}

.intro-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent-deep);
  margin-bottom: 1rem;
}

.intro-card p,
.intro-card li {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-soft);
}

.intro-card ul {
  display: grid;
  gap: 0.5rem;
}

.intro-card ul li {
  position: relative;
  padding-left: 1.2rem;
}

.intro-card ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 0.5rem;
  top: 0.3rem;
}

/* ── Feature Section ── */
.feature-section {
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-card {
  position: relative;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.5s var(--ease-out-expo);
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(180deg, transparent, rgba(184, 146, 58, 0.06));
  transition: height 0.5s var(--ease-out-expo);
}

.feature-card:hover {
  transform: translateY(-8px) rotateX(2deg);
  box-shadow: var(--shadow-medium);
  border-color: var(--border-gold);
}

.feature-card:hover::after {
  height: 100%;
}

.feature-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.feature-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent-deep);
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-soft);
}

/* ── Della's Bar Section ── */
.dellas-bar-section {
  position: relative;
  overflow: hidden;
}

.dellas-bar-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184, 146, 58, 0.08), transparent 70%);
  pointer-events: none;
}

.dellas-bar-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.dellas-bar-copy h2 {
  margin-bottom: 1.25rem;
}

.dellas-bar-copy > p {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
}

.dellas-bar-copy ul {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.dellas-bar-copy ul li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-soft);
}

.dellas-bar-copy ul li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  margin-top: 0.5rem;
  flex-shrink: 0;
  box-shadow: 0 0 12px var(--primary-glow);
}

.dellas-bar-visual {
  position: relative;
}

.dellas-bar-visual img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow-deep);
}

.dellas-bar-visual::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  border-top: 2px solid var(--border-gold);
  border-left: 2px solid var(--border-gold);
  border-radius: 20px 0 0 0;
}

.dellas-bar-visual::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border-bottom: 2px solid var(--border-gold);
  border-right: 2px solid var(--border-gold);
  border-radius: 0 0 20px 0;
}

/* ── Process Section ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
  z-index: 0;
}

.process-card {
  position: relative;
  text-align: center;
  padding: 2rem;
  z-index: 1;
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--surface-solid);
  border: 2px solid var(--border-gold);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s var(--ease-out-expo);
}

.process-card:hover .process-number {
  transform: scale(1.1);
  border-color: var(--primary);
  box-shadow: 0 8px 30px var(--primary-glow);
}

.process-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-deep);
  margin-bottom: 0.75rem;
}

.process-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-soft);
}

/* ── CTA Section ── */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184, 146, 58, 0.08), rgba(74, 53, 32, 0.04));
  pointer-events: none;
}

.contact-card {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: center;
  gap: 3rem;
  background: var(--surface);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-gold);
  border-radius: 32px;
  padding: 3.5rem;
  box-shadow: var(--shadow-deep);
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(184, 146, 58, 0.12), transparent 70%);
  pointer-events: none;
}

.contact-card h2 {
  margin-bottom: 0.75rem;
}

.contact-card p {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
}

/* ── Gallery Preview Section ── */
.gallery-preview-section {
  text-align: center;
}

.gallery-preview-section .section-head {
  margin: 0 auto 3rem;
}

.category-pill-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.category-pill-grid span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  padding: 0.85rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  backdrop-filter: blur(8px);
  transition: all 0.4s var(--ease-out-expo);
  cursor: default;
}

.category-pill-grid span:hover {
  transform: translateY(-3px) scale(1.05);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 8px 24px var(--primary-glow);
}

/* ── Testimonial Section ── */
.testimonial-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
}

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

.testimonial-card {
  position: relative;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.5s var(--ease-out-expo);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--primary);
  opacity: 0.15;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
  border-color: var(--border-gold);
}

.stars {
  color: var(--primary);
  font-size: 1rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.testimonial-card > p {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
}

.testimonial-card > strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-deep);
}

/* ── FAQ Section ── */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-card {
  position: relative;
  background: var(--surface);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s var(--ease-out-expo);
  cursor: pointer;
  overflow: hidden;
}

.faq-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary);
  transform: scaleY(0);
  transition: transform 0.4s var(--ease-out-expo);
}

.faq-card:hover::before {
  transform: scaleY(1);
}

.faq-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-medium);
}

.faq-question-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 0;
  gap: 1rem;
}

.faq-question-btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
  border-radius: 4px;
}

.faq-question-btn::after {
  content: '+';
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--primary);
  line-height: 1;
  transition: transform 0.4s var(--ease-out-expo);
}

.faq-card.open .faq-question-btn::after {
  transform: rotate(45deg);
}

.faq-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-deep);
}

.faq-card p {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-soft);
  padding-top: 0;
  transition: max-height 0.5s var(--ease-out-expo), opacity 0.4s ease 0.1s, padding-top 0.4s ease;
}

.faq-card.open p {
  max-height: 300px;
  opacity: 1;
  padding-top: 1rem;
}

/* ── Footer ── */
.site-footer {
  position: relative;
  display: grid;
  gap: 1.5rem;
  justify-items: center;
  padding: 4rem 2rem;
  text-align: center;
  color: #f5f0eb;
  background: linear-gradient(180deg, #3d2e1f, #2a1f14);
  overflow: hidden;
}

.footer-logo {
  width: 160px;
  height: auto;
  border-radius: 18px;
  opacity: 0.9;
}

.footer-bni img {
  width: 110px;
  height: auto;
  border-radius: 10px;
  opacity: 0.85;
}

.footer-cta-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: #f0e9dd;
  max-width: 480px;
}

.footer-copyright {
  font-size: 0.85rem;
  color: #9a8a78;
  margin-top: 0.5rem;
}

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 64px;
  height: 64px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: whatsapp-pulse 2.5s infinite;
  color: white;
  text-decoration: none;
  font-size: 1.8rem;
  transition: transform 0.3s var(--ease-out-expo);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float svg,
.whatsapp-float img {
  width: 32px;
  height: 32px;
  animation: none;
  background: none;
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* ── Gallery Page ── */
.gallery-hero {
  padding-bottom: 2rem;
}

.gallery-hero .hero-image {
  height: 440px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  padding: 1rem 2rem;
}

.filter-button {
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(8px);
  color: var(--text-soft);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all 0.4s var(--ease-out-expo);
}

.filter-button.active,
.filter-button:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 8px 24px var(--primary-glow);
  transform: translateY(-2px);
}

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

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: all 0.5s var(--ease-out-expo);
  aspect-ratio: 4 / 3;
}

.gallery-card:nth-child(3n+1) {
  aspect-ratio: 3 / 4;
}

.gallery-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-deep);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-card .card-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.5rem 1.5rem 1.25rem;
  background: linear-gradient(180deg, transparent 0%, rgba(42, 31, 20, 0.75) 100%);
  color: white;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s var(--ease-out-expo);
}

.gallery-card:hover .card-label {
  transform: translateY(0);
  opacity: 1;
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 15, 10, 0.95);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  z-index: 200;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 78vh;
  border-radius: 16px;
  box-shadow: 0 32px 90px rgba(0,0,0,0.5);
  transition: opacity 0.18s ease;
}

.lightbox-caption {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: #d4c4a8;
  text-align: center;
}

.lightbox-counter {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: #8a7a68;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  opacity: 0.85;
  transition: all 0.3s ease;
  font-family: var(--font-display);
}

.lightbox-close:hover,
.lightbox-nav:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.lightbox-close {
  top: 1.5rem;
  right: 1.5rem;
}

.lightbox-nav.prev {
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-nav.next {
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-nav.prev:hover {
  transform: translateY(-50%) scale(1.1);
}

.lightbox-nav.next:hover {
  transform: translateY(-50%) scale(1.1);
}

/* ── Immersive Section ── */
.immersive-section {
  position: relative;
  height: 200vh;
  background: transparent;
  margin: 0;
  margin-top: -1px;
}

.immersive-fixed {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  z-index: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.immersive-fixed.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Fade suave no início e fim */
.immersive-fixed::before,
.immersive-fixed::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 120px;
  pointer-events: none;
  z-index: 1;
}

.immersive-fixed::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.65), transparent);
}

.immersive-fixed::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
}

.immersive-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}

.immersive-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 700px;
  color: white;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  pointer-events: none;
}

.immersive-overlay .section-eyebrow {
  color: var(--primary-light);
  justify-content: center;
  margin-bottom: 1rem;
}

.immersive-overlay .section-eyebrow::before {
  background: var(--primary-light);
}

.immersive-overlay h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: white;
  margin-bottom: 1rem;
}

.immersive-overlay h2 em {
  font-style: italic;
  color: var(--primary-light);
}

.immersive-overlay p {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-style: italic;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 520px;
  margin: 0 auto;
}

/* ── Scroll Reveal ── */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale,
.reveal-fade {
  opacity: 0;
  transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}

.reveal-up { transform: translateY(50px); }
.reveal-left { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }
.reveal-scale { transform: scale(0.92); }
.reveal-fade { transform: none; }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible,
.reveal-fade.visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Stagger */
.stagger-children > *:nth-child(1) { transition-delay: 0.08s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.16s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.24s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.32s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(6)  { transition-delay: 0.48s; }
.stagger-children > *:nth-child(7)  { transition-delay: 0.56s; }
.stagger-children > *:nth-child(8)  { transition-delay: 0.64s; }
.stagger-children > *:nth-child(9)  { transition-delay: 0.72s; }
.stagger-children > *:nth-child(10) { transition-delay: 0.80s; }
.stagger-children > *:nth-child(11) { transition-delay: 0.88s; }
.stagger-children > *:nth-child(12) { transition-delay: 0.96s; }
.stagger-children > *:nth-child(13) { transition-delay: 1.04s; }
.stagger-children > *:nth-child(14) { transition-delay: 1.12s; }
.stagger-children > *:nth-child(15) { transition-delay: 1.20s; }

/* ── Text Reveal ── */
.text-reveal {
  overflow: hidden;
}

.text-reveal-inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-out-expo);
}

.text-reveal.visible .text-reveal-inner {
  transform: translateY(0);
}

/* ── Divider ── */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 0;
  opacity: 0.3;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.section-divider svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

/* ── Keyframes ── */
@keyframes skeleton-shimmer {
  0% { background-position: 200% 200%; }
  100% { background-position: -200% -200%; }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  .reveal-up, .reveal-left, .reveal-right, .reveal-scale, .reveal-fade {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .text-reveal-inner {
    transform: none !important;
  }
  .whatsapp-float,
  .hero-image-wrapper::before {
    animation: none !important;
  }
  body {
    cursor: auto;
  }
  .custom-cursor, .custom-cursor-dot {
    display: none !important;
  }
  button, a {
    cursor: pointer;
  }
  .immersive-section {
    height: 100vh;
  }
  .immersive-overlay {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .hero-block {
    grid-template-columns: 1fr;
    padding: 7rem 2rem 0;
  }
  .hero-visual {
    order: -1;
    margin-bottom: 2rem;
  }
  .hero-image {
    height: 380px;
  }
  .immersive-section {
    height: 150vh;
  }
  .coverage-layout,
  .about-layout,
  .dellas-bar-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-visual::after {
    display: none;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid::before {
    display: none;
  }
  .about-visual img { height: 380px; }
  .dellas-bar-visual img { height: 360px; }
  .hero-content { max-width: 100%; }
}

@media (max-width: 820px) {
  .site-header {
    padding: 1rem 1.5rem;
  }
  .site-header.scrolled {
    padding: 0.75rem 1.5rem;
  }
  .menu-toggle {
    display: block;
  }
  .site-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(247, 243, 236, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 50;
  }
  .site-nav.open {
    display: flex;
  }
  .site-nav a {
    font-size: 1.1rem;
  }
  .section {
    padding: 4rem 1.5rem;
  }
  .intro-grid,
  .feature-grid,
  .testimonial-grid,
  .faq-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }
  .contact-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem;
  }
  .coverage-images {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 160px;
  }
  .coverage-images img:first-child {
    grid-row: span 1;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem 2rem;
  }
  .gallery-card:nth-child(3n+1) {
    aspect-ratio: 4 / 3;
  }
  .dellas-bar-visual::before,
  .dellas-bar-visual::after {
    display: none;
  }
  .about-visual img { height: 280px; }
  .dellas-bar-visual img { height: 260px; }
}

@media (max-width: 560px) {
  .hero-block {
    padding: 6rem 1rem 0;
  }
  .hero-block h1 {
    font-size: 2.5rem;
  }
  .hero-image {
    height: 300px;
  }
  .immersive-section {
    height: 100vh;
  }
  .immersive-overlay h2 {
    font-size: 2rem;
  }
  .immersive-overlay p {
    font-size: 1rem;
  }
  .hero-image-badge {
    left: 10px;
    bottom: -10px;
    padding: 0.75rem 1rem;
  }
  .hero-image-badge strong {
    font-size: 1.1rem;
  }
  .section {
    padding: 3rem 1rem;
  }
  .coverage-images {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 160px);
  }
  .about-visual img { height: 220px; }
  .dellas-bar-visual img { height: 200px; }
  .brand-logo { width: 85px; }
  .brand-name { font-size: 1rem; }
  .contact-card { padding: 2rem 1.25rem; }
  .hero-tags { gap: 0.5rem; }
  .hero-tags span { font-size: 0.7rem; padding: 0.5rem 0.9rem; }
}
