:root {
  --navy: #0B183A;
  --navy-light: #0f1f4a;
  --navy-deep: #07102a;
  --gold: #a48b58;
  --gold-light: #c4aa76;
  --gold-dim: #6b5a38;
  --white: #FFFFFF;
  --white-soft: rgba(255,255,255,0.85);
  --white-dim: rgba(255,255,255,0.5);
  --white-ghost: rgba(255,255,255,0.08);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--navy-deep);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ─── TYPOGRAPHY ─── */
.display { font-family: 'Cormorant Garamond', serif; }
h1,h2,h3 { font-family: 'Cormorant Garamond', serif; font-weight: 600; line-height: 1.1; }

/* ─── NAVIGATION ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 60px;
  background: linear-gradient(to bottom, rgba(7,16,42,0.95) 0%, transparent 100%);
  backdrop-filter: blur(0px);
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(7,16,42,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(164,139,88,0.15);
  padding: 16px 60px;
}
.nav-logo {
  display: flex; align-items: center;
}
.nav-logo img {
  height: 26px; width: auto;
  filter: brightness(1);
  transition: opacity 0.3s;
}
.nav-logo img:hover { opacity: 0.85; }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--white-dim); text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  padding: 12px 28px; border: 1px solid var(--gold);
  color: var(--gold); background: transparent; cursor: pointer;
  transition: all 0.3s; text-decoration: none;
}
.nav-cta:hover { background: var(--gold); color: var(--navy-deep); }

/* ─── HERO ─── */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-video-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #07102a 0%, #0B183A 40%, #0d1e45 70%, #07102a 100%);
}
.hero-video-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 40%, rgba(164,139,88,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 20%, rgba(164,139,88,0.05) 0%, transparent 60%);
}
.hero-video-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23a48b58' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Cinematic lines */
.hero-lines {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  overflow: hidden;
}
.hero-lines::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(164,139,88,0.2) 30%, rgba(164,139,88,0.1) 70%, transparent);
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 900px; padding: 0 40px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 16px;
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 40px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.3s forwards;
}
.hero-eyebrow::before, .hero-eyebrow::after { display: none; }
.hero-headline {
  font-size: clamp(28px, 3.6vw, 52px);
  font-weight: 600; line-height: 1.08;
  color: var(--white);
  margin-bottom: 32px;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 0.9s ease 0.5s forwards;
}
.hero-headline em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: clamp(14px, 1.4vw, 16px); font-weight: 300;
  color: var(--white-dim); line-height: 1.8;
  max-width: 680px; margin: 0 auto 56px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.9s ease 0.7s forwards;
}
.hero-sub strong { color: var(--gold-light); font-weight: 500; }
.hero-buttons {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.9s ease 0.9s forwards;
}
.btn-primary {
  padding: 18px 48px;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase; font-weight: 700;
  border: none; cursor: pointer; text-decoration: none; display: inline-block;
  position: relative; overflow: hidden;
  transition: all 0.4s ease;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold-light);
  transform: translateX(-101%);
  transition: transform 0.4s ease;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }
.btn-primary:hover { box-shadow: 0 8px 40px rgba(164,139,88,0.4); }

.btn-secondary {
  padding: 17px 48px;
  background: transparent;
  color: var(--white);
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase; font-weight: 500;
  border: 1px solid rgba(255,255,255,0.3); cursor: pointer; text-decoration: none;
  display: inline-block; transition: all 0.3s ease;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--white-dim); font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  opacity: 0; animation: fadeIn 1s ease 1.5s forwards;
}
.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* Hero stats bar */
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 3;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(164,139,88,0.2);
  background: rgba(7,16,42,0.8); backdrop-filter: blur(20px);
  opacity: 0; animation: fadeIn 1s ease 1.2s forwards;
}
.hero-stat {
  padding: 28px 40px; text-align: center;
  border-right: 1px solid rgba(164,139,88,0.1);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 700; color: var(--gold);
  display: block; line-height: 1;
}
.hero-stat-label {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--white-dim); margin-top: 6px; display: block;
}

/* ─── SECTIONS ─── */
section { position: relative; }

.section-pad { padding: 120px 60px; }
.section-pad-lg { padding: 160px 60px; }

.container { max-width: 1200px; margin: 0 auto; }
.container-wide { max-width: 1400px; margin: 0 auto; }

/* ─── DIVIDER ─── */
.gold-divider {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 0 auto 20px;
}
.gold-divider-left { margin: 0 0 20px; }

/* ─── SECTION LABEL ─── */
.section-label {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; display: block;
}

/* ─── VIDEO SECTION ─── */
#video-section {
  background: var(--navy-deep);
  padding: 100px 60px;
}
.video-container {
  max-width: 1000px; margin: 0 auto;
  position: relative;
}
.video-wrapper {
  position: relative; background: #0a0f20;
  aspect-ratio: 16/9;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.6), 0 0 0 1px rgba(164,139,88,0.15);
}
.video-thumbnail {
  position: absolute; inset: 0;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.video-thumbnail::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(164,139,88,0.08) 0%, transparent 70%),
    linear-gradient(135deg, rgba(10,15,32,0.4) 0%, rgba(11,24,58,0.3) 60%, rgba(13,30,69,0.35) 100%);
  z-index: -1;
}
.play-btn {
  width: 80px; height: 80px;
  border: 1.5px solid rgba(164,139,88,0.6);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.4s ease;
  position: relative; z-index: 1;
  background: rgba(164,139,88,0.1);
}
.play-btn:hover {
  border-color: var(--gold);
  background: rgba(164,139,88,0.2);
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(164,139,88,0.3);
}
.play-icon {
  width: 0; height: 0;
  border-style: solid;
  border-width: 12px 0 12px 22px;
  border-color: transparent transparent transparent var(--gold);
  margin-left: 5px;
}
.video-caption {
  text-align: center; margin-top: 32px;
  font-size: 13px; color: var(--white-dim); letter-spacing: 1px;
}

/* ─── ABOUT ─── */
#about {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-deep) 100%);
  padding: 140px 60px;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
}
.about-headline {
  font-size: clamp(28px, 3.6vw, 52px);
  color: var(--white); line-height: 1.08;
  margin-bottom: 32px;
}
.about-headline em { color: var(--gold); font-style: italic; }
.about-text {
  font-size: 15px; color: var(--white-dim);
  line-height: 1.9; margin-bottom: 24px;
}
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  margin-top: 60px; border: 1px solid rgba(164,139,88,0.15);
  background: rgba(164,139,88,0.05);
}
.about-stat {
  padding: 36px 32px; border: 1px solid rgba(164,139,88,0.08);
  background: rgba(7,16,42,0.6);
  transition: background 0.3s;
}
.about-stat:hover { background: rgba(164,139,88,0.05); }
.about-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 700; color: var(--gold);
  line-height: 1; display: block;
}
.about-stat-label {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--white-dim); margin-top: 8px; display: block;
  font-weight: 400;
}

/* ─── FOUNDERS ─── */
.founder-section {
  padding: 140px 60px;
  background: var(--navy-deep);
}
.founder-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.founder-grid.reverse { direction: rtl; }
.founder-grid.reverse > * { direction: ltr; }
.founder-image-block {
  position: relative;
}
.founder-img-main {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(135deg, #0f1e45, #0B183A);
  position: relative; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.founder-img-main::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(164,139,88,0.1) 0%, transparent 60%);
}
.founder-img-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 100px; font-weight: 700; color: rgba(164,139,88,0.08);
  letter-spacing: -5px;
}
.founder-accent-line {
  position: absolute; top: 40px; right: -20px;
  width: 1px; height: 60%;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.founder-tag {
  position: absolute; bottom: -20px; left: 40px;
  background: var(--navy-deep);
  border: 1px solid rgba(164,139,88,0.3);
  padding: 16px 28px;
  display: flex; align-items: center; gap: 12px;
}
.founder-tag-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.founder-tag-text {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold);
}
.founder-name {
  font-size: clamp(28px, 3.6vw, 52px);
  color: var(--white); line-height: 1.05;
  margin-bottom: 6px;
}
.founder-title {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 40px; display: block;
}
.founder-text {
  font-size: 15px; color: var(--white-dim); line-height: 1.9;
  margin-bottom: 20px;
}
.founder-credentials {
  margin-top: 40px; padding-top: 40px;
  border-top: 1px solid rgba(164,139,88,0.15);
  display: flex; flex-direction: column; gap: 14px;
}
.credential-item {
  display: flex; align-items: center; gap: 16px;
  font-size: 13px; color: var(--white-soft);
}
.credential-item::before { display: none; }

/* ─── DORES ─── */
#dores {
  background: linear-gradient(180deg, var(--navy-deep) 0%, #060e25 100%);
  padding: 140px 60px;
}
.dores-header { text-align: center; margin-bottom: 80px; }
.dores-headline {
  font-size: clamp(28px, 3.6vw, 52px);
  max-width: 700px; margin: 0 auto 20px;
}
.dores-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(164,139,88,0.1);
  border: 1px solid rgba(164,139,88,0.1);
  margin-bottom: 80px;
}
.dor-card {
  background: rgba(7,16,42,0.9);
  padding: 44px 36px;
  transition: all 0.4s ease;
  cursor: default;
}
.dor-card:hover {
  background: rgba(164,139,88,0.05);
  transform: translateY(-4px);
}
.dor-icon {
  width: 44px; height: 44px; margin-bottom: 24px;
  opacity: 0.6;
}
.dor-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600; color: var(--white);
  margin-bottom: 12px; line-height: 1.2;
}
.dor-text { font-size: 13px; color: var(--white-dim); line-height: 1.7; }

.dores-quote {
  text-align: center; max-width: 800px; margin: 0 auto;
  padding: 60px; border: 1px solid rgba(164,139,88,0.2);
  background: rgba(164,139,88,0.03);
  position: relative;
}
.dores-quote::before {
  content: '"'; position: absolute;
  top: -30px; left: 50%; transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px; color: var(--gold); opacity: 0.3; line-height: 1;
}
.dores-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-style: italic; color: var(--white-soft); line-height: 1.5;
}

/* ─── PILARES ─── */
#pilares {
  background: var(--navy);
  padding: 140px 60px;
}
.pilares-header { text-align: center; margin-bottom: 80px; }
.pilares-headline {
  font-size: clamp(28px, 3.6vw, 52px);
}
.pilares-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(164,139,88,0.1);
}
.pilar-card {
  background: rgba(11,24,58,0.8);
  padding: 60px 48px;
  transition: all 0.4s ease;
  position: relative; overflow: hidden;
}
.pilar-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0);
  transform-origin: left; transition: transform 0.4s ease;
}
.pilar-card:hover::before { transform: scaleX(1); }
.pilar-card:hover { background: rgba(164,139,88,0.05); }
.pilar-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px; font-weight: 700;
  color: rgba(164,139,88,0.08);
  position: absolute; top: 20px; right: 30px;
  line-height: 1;
}
.pilar-icon-wrap {
  width: 48px; height: 48px; margin-bottom: 32px;
  border: 1px solid rgba(164,139,88,0.3);
  display: flex; align-items: center; justify-content: center;
}
.pilar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 600; color: var(--white);
  margin-bottom: 16px;
}
.pilar-text { font-size: 13px; color: var(--white-dim); line-height: 1.8; }

/* ─── DEPOIMENTOS ─── */
#depoimentos {
  background: linear-gradient(180deg, #060e25 0%, var(--navy-deep) 100%);
  padding: 140px 60px;
}
.depo-header { text-align: center; margin-bottom: 80px; }
.depo-headline { font-size: clamp(28px, 3.6vw, 52px); }

.depo-video-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-bottom: 60px;
}
.depo-video {
  aspect-ratio: 9/16;
  background: linear-gradient(135deg, #0a0f20, #0B183A);
  position: relative; overflow: hidden; cursor: pointer;
  border: 1px solid rgba(164,139,88,0.1);
  transition: all 0.4s ease;
}
.depo-video:hover {
  border-color: rgba(164,139,88,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.depo-video::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,16,42,0.9) 0%, transparent 60%);
}
.depo-video-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.depo-video:hover .depo-video-play {
  border-color: var(--gold); background: rgba(164,139,88,0.15);
}
.depo-video-play-icon {
  width: 0; height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent rgba(255,255,255,0.8);
  margin-left: 3px;
}
.depo-video-info {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 24px;
}
.depo-video-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600; color: var(--white);
  display: block;
}
.depo-video-role {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-top: 4px; display: block;
}
.depo-video-bg-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px; font-weight: 700;
  color: rgba(164,139,88,0.04);
  white-space: nowrap;
}

.depo-text-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-bottom: 60px;
}
.depo-text-card {
  padding: 40px; border: 1px solid rgba(164,139,88,0.12);
  background: rgba(11,24,58,0.4);
  transition: all 0.3s;
}
.depo-text-card:hover {
  border-color: rgba(164,139,88,0.25);
  background: rgba(11,24,58,0.6);
}
.depo-stars {
  display: flex; gap: 4px; margin-bottom: 20px;
}
.star { color: var(--gold); font-size: 14px; }
.depo-quote {
  font-size: 15px; color: var(--white-soft); line-height: 1.8;
  margin-bottom: 28px; font-style: italic;
}
.depo-author { display: flex; align-items: center; gap: 16px; }
.depo-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(164,139,88,0.3), rgba(164,139,88,0.1));
  border: 1px solid rgba(164,139,88,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 700; color: var(--gold);
  flex-shrink: 0;
}
.depo-author-name {
  font-size: 13px; font-weight: 600; color: var(--white); display: block;
}
.depo-author-role {
  font-size: 11px; color: var(--white-dim); display: block; margin-top: 2px;
}

.results-band {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(164,139,88,0.1);
  border: 1px solid rgba(164,139,88,0.1);
}
.result-item {
  background: rgba(7,16,42,0.8);
  padding: 40px 32px; text-align: center;
}
.result-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 700; color: var(--gold);
  display: block; line-height: 1;
}
.result-label {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--white-dim); margin-top: 10px; display: block;
}

/* ─── EXPERIÊNCIA ─── */
#experiencia {
  background: var(--navy);
  padding: 140px 60px;
}
.exp-header { text-align: center; margin-bottom: 80px; }
.exp-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 12px;
  margin-bottom: 60px;
}
.exp-card {
  background: linear-gradient(135deg, #0a0f20, #0B183A);
  position: relative; overflow: hidden;
  border: 1px solid rgba(164,139,88,0.08);
  transition: all 0.4s;
}
.exp-card:hover { border-color: rgba(164,139,88,0.25); }
.exp-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(164,139,88,0.06) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.exp-card:hover::before { opacity: 1; }
.exp-card-1 { grid-column: span 5; }
.exp-card-2 { grid-column: span 4; }
.exp-card-3 { grid-column: span 3; }
.exp-card-4 { grid-column: span 3; }
.exp-card-5 { grid-column: span 5; }
.exp-card-6 { grid-column: span 4; }
.exp-card-label {
  position: absolute; bottom: 28px; left: 28px;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
}
.exp-card-title {
  position: absolute; bottom: 50px; left: 28px; right: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 600; color: var(--white); line-height: 1.2;
}
.exp-card-bg-num {
  position: absolute; top: 20px; right: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 100px; font-weight: 700;
  color: rgba(164,139,88,0.04); line-height: 1;
}

.exp-pillars {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(164,139,88,0.1);
}
.exp-pillar {
  background: rgba(7,16,42,0.8);
  padding: 44px 36px; text-align: center;
  transition: background 0.3s;
}
.exp-pillar:hover { background: rgba(164,139,88,0.05); }
.exp-pillar-icon {
  font-size: 32px; margin-bottom: 20px; opacity: 0.7; display: block;
}
.exp-pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600; color: var(--white); margin-bottom: 10px;
}
.exp-pillar-text { font-size: 12px; color: var(--white-dim); line-height: 1.7; }

/* ─── CTA FINAL ─── */
#cta-final {
  background: linear-gradient(180deg, var(--navy-deep) 0%, #04091a 100%);
  padding: 160px 60px;
  text-align: center;
  position: relative; overflow: hidden;
}
#cta-final::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(164,139,88,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-eyebrow {
  display: inline-flex; align-items: center; gap: 16px;
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 40px;
}
.cta-eyebrow::before, .cta-eyebrow::after { display: none; }
.cta-headline {
  font-size: clamp(28px, 3.6vw, 52px);
  max-width: 900px; margin: 0 auto 48px;
  color: var(--white);
}
.cta-headline em { color: var(--gold); font-style: italic; }
.cta-sub {
  font-size: 16px; color: var(--white-dim); line-height: 1.8;
  max-width: 600px; margin: 0 auto 56px;
}
.btn-cta-final {
  padding: 22px 64px;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 12px; letter-spacing: 3.5px; text-transform: uppercase; font-weight: 700;
  border: none; cursor: pointer; text-decoration: none; display: inline-block;
  position: relative; overflow: hidden;
  transition: all 0.4s ease;
}
.btn-cta-final::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold-light);
  transform: translateX(-101%);
  transition: transform 0.4s ease;
}
.btn-cta-final span { position: relative; z-index: 1; }
.btn-cta-final:hover::before { transform: translateX(0); }
.btn-cta-final:hover { box-shadow: 0 12px 60px rgba(164,139,88,0.5); }

.cta-guarantee {
  margin-top: 40px; font-size: 12px; color: var(--white-dim);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.cta-guarantee::before { display: none; }
.cta-guarantee::after { display: none; }

/* ─── FOOTER ─── */
footer {
  background: #04091a;
  border-top: 1px solid rgba(164,139,88,0.15);
  padding: 80px 60px 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 60px;
}
.footer-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 700; letter-spacing: 4px;
  color: var(--white); margin-bottom: 20px;
}
.footer-logo-text span { color: var(--gold); }
.footer-tagline {
  font-size: 13px; color: var(--white-dim); line-height: 1.8;
  max-width: 280px;
}
.footer-social {
  display: flex; gap: 12px; margin-top: 32px;
}
.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(164,139,88,0.3);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--white-dim); text-decoration: none;
  transition: all 0.3s;
}
.social-link svg {
  width: 17px; height: 17px;
  display: block;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background-color: rgba(164,139,88,0.06);
  transform: translateY(-1px);
}
.footer-col-title {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a,
.footer-links--static li {
  font-size: 13px; color: var(--white-dim); text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-links--static li { cursor: default; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.25); letter-spacing: 1px; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes scrollLine {
  0%,100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.5); }
}
@keyframes counterUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Gold shimmer text */
.shimmer-text {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 30%, #e8d5a3 50%, var(--gold-light) 70%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

/* Hover underline effect */
.underline-gold {
  position: relative; display: inline-block;
}
.underline-gold::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.4s ease;
}
.underline-gold:hover::after { width: 100%; }

/* ─── MOBILE ─── */
@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  nav.scrolled { padding: 14px 24px; }
  .nav-links, .nav-cta { display: none; }
  .section-pad, .section-pad-lg { padding: 80px 24px; }
  .about-grid, .founder-grid { grid-template-columns: 1fr; gap: 40px; }
  .founder-grid.reverse { direction: ltr; }
  .dores-grid, .pilares-grid { grid-template-columns: 1fr 1fr; }
  .depo-video-grid { grid-template-columns: 1fr 1fr; }
  .depo-text-grid { grid-template-columns: 1fr; }
  .results-band { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .exp-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .exp-card-1,.exp-card-2,.exp-card-3,.exp-card-4,.exp-card-5,.exp-card-6 { grid-column: span 1; }
  .exp-pillars { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  #about { padding: 80px 24px; }
  .founder-section { padding: 80px 24px; }
  #dores { padding: 80px 24px; }
  #pilares { padding: 80px 24px; }
  #depoimentos { padding: 80px 24px; }
  #experiencia { padding: 80px 24px; }
  #cta-final { padding: 100px 24px; }
  footer { padding: 60px 24px 32px; }
  #video-section { padding: 60px 24px; }
}
@media (max-width: 600px) {
  .dores-grid { grid-template-columns: 1fr; }
  .pilares-grid { grid-template-columns: 1fr; }
  .depo-video-grid { grid-template-columns: 1fr; }
  .results-band { grid-template-columns: 1fr 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .exp-pillars { grid-template-columns: 1fr 1fr; }
  .hero-stats { display: none; }
}

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid rgba(164,139,88,0.15);
}
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 0; text-align: left; gap: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600; color: var(--white);
  transition: color 0.3s;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px; font-weight: 300; color: var(--gold);
  flex-shrink: 0; transition: transform 0.35s ease;
  line-height: 1;
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer p {
  font-size: 15px; color: var(--white-dim);
  line-height: 1.85; padding-bottom: 28px;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open .faq-question { color: var(--gold); }

/* ---------- Restored section backgrounds (moved from inline) ---------- */
.founder-section {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-deep) 100%);
}
#livros {
  background: linear-gradient(180deg, #04091a 0%, var(--navy-deep) 100%);
  padding: 140px 60px;
}
#faq {
  background: var(--navy);
  padding: 140px 60px;
}

/* ---------- Vimeo lazy-load player ---------- */
[data-video-id] {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
[data-video-id]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.vp-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.55;
  filter: brightness(0.85) saturate(0.9);
  transition: opacity 0.4s ease, filter 0.4s ease;
}
.video-wrapper .vp-thumb { opacity: 0.85; }
.video-wrapper:hover .vp-thumb {
  opacity: 1;
  filter: brightness(1) saturate(1);
}
.depo-video .vp-thumb { opacity: 0.78; }
.depo-video:hover .vp-thumb {
  opacity: 1;
  filter: brightness(1) saturate(1);
}
.vp-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 5;
  background: #000;
}

/* Hide the placeholder UI once playing */
.is-playing .vp-thumb,
.is-playing .depo-video-bg-text,
.is-playing .depo-video-play,
.is-playing .depo-video-info,
.is-playing .video-thumbnail {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.is-playing.depo-video::before {
  opacity: 0 !important;
}
.is-playing { cursor: default; }

/* Custom controls overlay */
.vp-controls {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 6;
  display: flex;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.is-playing:hover .vp-controls,
.is-playing.is-paused .vp-controls,
.vp-controls:focus-within {
  opacity: 1;
}

.vp-btn {
  width: 38px;
  height: 38px;
  background: rgba(7, 16, 42, 0.78);
  border: 1px solid rgba(164, 139, 88, 0.45);
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  padding: 0;
  transition: background-color 0.2s, border-color 0.2s, transform 0.12s;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.vp-btn:hover {
  background: rgba(164, 139, 88, 0.85);
  border-color: var(--gold);
}
.vp-btn:active { transform: scale(0.96); }
.vp-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.vp-btn svg { width: 16px; height: 16px; display: block; }

.vp-btn .vp-icon-play { display: none; }
.is-paused .vp-icon-play { display: block; }
.is-paused .vp-icon-pause { display: none; }

@media (hover: none) {
  .is-playing .vp-controls { opacity: 1; }
}

/* ---------- Additional responsive fixes ---------- */
@media (max-width: 900px) {
  #livros { padding: 80px 24px; }
  #faq { padding: 80px 24px; }
  .video-wrapper { aspect-ratio: 16/9; }
}

@media (max-width: 600px) {
  #livros { padding: 64px 20px; }
  #faq { padding: 64px 20px; }
  .vp-btn { width: 34px; height: 34px; }
  .vp-controls { bottom: 10px; right: 10px; gap: 6px; }
  .vp-btn svg { width: 14px; height: 14px; }
}

@media (max-width: 480px) {
  nav { padding: 14px 16px; }
  nav.scrolled { padding: 12px 16px; }
  .nav-logo img { height: 22px; }
  #hero { padding-left: 18px; padding-right: 18px; }
  .container-wide,
  .video-container { padding-left: 0; padding-right: 0; }
  #about,
  .founder-section,
  #dores,
  #pilares,
  #depoimentos,
  #experiencia,
  #cta-final,
  #video-section,
  #livros,
  #faq { padding-left: 18px; padding-right: 18px; }
  footer { padding-left: 18px; padding-right: 18px; }
}

/* ============================================================
   RESPONSIVE OVERHAUL — kills horizontal scroll, fixes overflow
   ============================================================ */

/* Global safety: prevent any horizontal scroll */
html, body {
  overflow-x: clip;
  max-width: 100%;
}

img, video, iframe, picture, svg {
  max-width: 100%;
}

/* ----- Intermediate desktop (1100–1400px) — soften 60px sides ----- */
@media (max-width: 1100px) {
  nav { padding: 22px 36px; }
  nav.scrolled { padding: 14px 36px; }
  .section-pad { padding: 100px 40px; }
  .section-pad-lg { padding: 120px 40px; }
  #video-section,
  #about,
  .founder-section,
  #dores,
  #pilares,
  #depoimentos,
  #experiencia,
  #cta-final,
  #livros,
  #faq { padding-left: 40px; padding-right: 40px; }
  footer { padding: 70px 40px 36px; }
  .container-wide { padding-left: 0; padding-right: 0; }
}

/* ----- Tablet (≤900px) — extras to original 900px block ----- */
@media (max-width: 900px) {
  #cta-final { padding: 100px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .exp-grid { grid-template-rows: auto !important; }
  .exp-card { min-height: 220px; }
  .dores-quote { padding: 44px 28px; }
  .dores-quote::before { font-size: 90px; top: -20px; }
  .pilar-card { padding: 44px 28px; }
  .pilar-number { font-size: 60px; }
  .hero-content { padding: 0 28px; }
}

/* ----- Mobile (≤600px) — extras to original 600px block ----- */
@media (max-width: 600px) {
  nav { padding: 16px 22px; }
  nav.scrolled { padding: 12px 22px; }

  /* Hero: stack buttons vertically and stop side overflow */
  .hero-content { padding: 0 22px; }
  .hero-buttons { flex-direction: column; align-items: stretch; gap: 14px; }
  .btn-primary,
  .btn-secondary { width: 100%; max-width: 100%; padding-left: 24px; padding-right: 24px; text-align: center; box-sizing: border-box; }
  .hero-eyebrow { letter-spacing: 3px; }

  /* All sections — tighter lateral padding */
  #video-section,
  #about,
  .founder-section,
  #dores,
  #pilares,
  #depoimentos,
  #experiencia,
  #cta-final,
  #livros,
  #faq { padding-left: 22px !important; padding-right: 22px !important; }
  footer { padding: 56px 22px 28px; }
  #cta-final { padding-top: 80px !important; padding-bottom: 80px !important; }

  /* Inner card sizing */
  .dores-quote { padding: 32px 22px; }
  .dores-quote::before { font-size: 70px; }
  .pilar-card { padding: 32px 22px; }
  .pilar-number { font-size: 48px; right: 18px; top: 14px; }
  .pilar-title { font-size: 22px; }
  .exp-card-title { font-size: 20px; bottom: 42px; left: 22px; right: 22px; }
  .exp-card-label { left: 22px; bottom: 22px; }
  .exp-card-bg-num { font-size: 64px; top: 14px; right: 16px; }
  .exp-pillar { padding: 32px 24px; }
  .exp-pillar-title { font-size: 19px; }
  .depo-text-card { padding: 32px 24px; }
  .result-num { font-size: 36px; }
  .result-item { padding: 26px 14px; }
  .result-label { font-size: 10px; letter-spacing: 1px; }
  .results-band { grid-template-columns: 1fr 1fr; }

  /* Video card: cap the "GPR" backdrop text so it doesn't blow out narrow cards */
  .depo-video-bg-text { font-size: 56px; white-space: normal; text-align: center; }
  .depo-video-name { font-size: 18px; }
  .depo-video-role { font-size: 9px; }

  /* Footer collapses fully to one column */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-tagline { max-width: 100%; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer-logo-text { font-size: 26px; letter-spacing: 3px; }
}

/* ----- Small mobile (≤480px) ----- */
@media (max-width: 480px) {
  nav { padding: 14px 18px; }
  nav.scrolled { padding: 12px 18px; }
  #video-section,
  #about,
  .founder-section,
  #dores,
  #pilares,
  #depoimentos,
  #experiencia,
  #cta-final,
  #livros,
  #faq { padding-left: 18px !important; padding-right: 18px !important; }
  footer { padding-left: 18px; padding-right: 18px; }
  .depo-video-bg-text { display: none; }
  .results-band { grid-template-columns: 1fr; }
  .exp-pillars { grid-template-columns: 1fr !important; }
}

/* =========================================================
   RESPONSIVE AUDIT — global safety net + targeted fixes
   ========================================================= */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
img, video, iframe {
  max-width: 100%;
}
*, *::before, *::after {
  min-width: 0;
}

/* The .depo-video-bg-text "GPR" was nowrap + huge — risk overflow on tiny screens */
.depo-video-bg-text {
  font-size: clamp(48px, 14vw, 80px);
}

@media (max-width: 1100px) {
  .exp-grid { grid-template-rows: repeat(2, 240px); }
}

@media (max-width: 900px) {
  /* Hero buttons */
  .hero-buttons { gap: 12px; }
  .btn-primary, .btn-secondary { padding: 16px 32px; font-size: 10px; letter-spacing: 2.5px; }
  /* Quote box can be wide on tablets */
  .dores-quote { padding: 48px 32px; }
  .dores-quote::before { font-size: 80px; top: -20px; }
  /* Experience cards reduce row height */
  .exp-grid { grid-template-rows: auto; }
  .exp-card { min-height: 220px; }
  .exp-card-title { font-size: 22px; }
  .exp-card-bg-num { font-size: 72px; }
  /* Footer */
  footer { padding: 60px 24px 32px; }
  .footer-grid { gap: 32px; }
  /* CTA */
  #cta-final::before { width: min(800px, 100%); height: min(800px, 100vw); }
  .btn-cta-final { padding: 18px 40px; font-size: 11px; letter-spacing: 2.5px; }
}

@media (max-width: 600px) {
  /* Hero: stack buttons, smaller eyebrow */
  .hero-content { padding: 0 24px; }
  .hero-eyebrow { font-size: 9px; letter-spacing: 2.5px; gap: 10px; margin-bottom: 28px; }
  .hero-buttons { flex-direction: column; align-items: stretch; gap: 12px; }
  .btn-primary, .btn-secondary { padding: 16px 24px; text-align: center; width: 100%; box-sizing: border-box; }
  .hero-sub { padding: 0 4px; }
  .hero-scroll { bottom: 24px; }
  .hero-scroll-line { height: 32px; }
  /* Headline scaling already via clamp() */

  /* Dores quote */
  .dores-quote { padding: 40px 22px; }
  .dores-quote::before { font-size: 60px; top: -14px; }

  /* Experiencia */
  .exp-grid { grid-template-columns: 1fr; gap: 10px; }
  .exp-card-1, .exp-card-2, .exp-card-3, .exp-card-4, .exp-card-5, .exp-card-6 { grid-column: span 1; }
  .exp-card { min-height: 200px; }
  .exp-card-title { font-size: 20px; bottom: 44px; left: 22px; right: 22px; }
  .exp-card-label { bottom: 22px; left: 22px; font-size: 9px; letter-spacing: 2px; }
  .exp-card-bg-num { font-size: 56px; top: 16px; right: 16px; }
  .exp-pillars { grid-template-columns: 1fr 1fr; }

  /* Results band: 1x4 stack on small screens */
  .results-band { grid-template-columns: 1fr 1fr; }
  .result-item { padding: 28px 18px; }
  .result-num { font-size: 36px; }

  /* About stats */
  .about-stat { padding: 28px 22px; }
  .about-stat-num { font-size: 40px; }
  .about-grid { gap: 32px; }

  /* CTA */
  #cta-final::before { display: none; }
  .cta-eyebrow { font-size: 9px; letter-spacing: 2.5px; margin-bottom: 24px; }
  .btn-cta-final { padding: 16px 32px; font-size: 10px; letter-spacing: 2px; width: 100%; max-width: 320px; box-sizing: border-box; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .footer-tagline { max-width: 100%; }
  .footer-logo-text { font-size: 26px; letter-spacing: 3px; }

  /* Section labels and large headings */
  .section-label { font-size: 9px; letter-spacing: 2.5px; }

  /* FAQ */
  .faq-question { font-size: 18px; gap: 16px; padding: 22px 0; }
  .faq-icon { font-size: 22px; }
  .faq-answer p { font-size: 14px; }

  /* Depoimentos text cards */
  .depo-text-card { padding: 36px 28px; }
}

@media (max-width: 480px) {
  /* Sections: tighter lateral padding */
  #about, .founder-section, #dores, #pilares, #depoimentos, #experiencia, #cta-final, #video-section, #livros, #faq {
    padding-left: 18px;
    padding-right: 18px;
  }
  footer { padding-left: 18px; padding-right: 18px; }
  nav, nav.scrolled { padding-left: 16px; padding-right: 16px; }
  .nav-logo img { height: 22px; }

  /* Vertical padding compressing on shorter viewports */
  #about, .founder-section, #dores, #pilares, #depoimentos, #experiencia, #video-section, #livros, #faq {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  #cta-final { padding-top: 72px; padding-bottom: 72px; }

  /* Headings get a notch smaller */
  .dores-quote-text { font-size: 18px; }
  .exp-card-title { font-size: 18px; }
  .exp-card { min-height: 180px; }
  .dores-quote { padding: 32px 18px; }

  /* Result band stays 2-up — but tighter */
  .result-item { padding: 22px 12px; }
  .result-num { font-size: 28px; }
  .result-label { font-size: 9px; letter-spacing: 1px; }

  /* About stats numbers */
  .about-stat { padding: 22px 16px; }
  .about-stat-num { font-size: 32px; }
  .about-stat-label { font-size: 10px; letter-spacing: 1.2px; }

  /* Hero stats already hidden via existing rule (max-width: 600) */

  /* Dor cards spacing */
  .dor-card { padding: 32px 22px; }
  .dor-title { font-size: 19px; }

  /* Pilar cards spacing */
  .pilar-card { padding: 40px 28px; }

  /* Avatar in depo */
  .depo-avatar { width: 44px; height: 44px; font-size: 14px; }
}

@media (max-width: 360px) {
  /* Ultra-small — phone in portrait, smallest devices */
  body { font-size: 14px; }
  .hero-content { padding: 0 16px; }
  #about, .founder-section, #dores, #pilares, #depoimentos, #experiencia, #cta-final, #video-section, #livros, #faq, footer {
    padding-left: 14px;
    padding-right: 14px;
  }
  .dores-quote { padding: 26px 14px; }
}

/* ---------- Livros list (vertical stack with bottom divider) ---------- */
.livros-list {
  margin-top: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.livro-item {
  padding: 28px 0;
  border-bottom: 1px solid rgba(164,139,88,0.18);
}
.livro-item:last-child {
  border-bottom: 0;
}
.livro-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.livro-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 8px;
}
.livro-desc {
  font-size: 13.5px;
  color: var(--white-dim);
  line-height: 1.7;
  max-width: 580px;
}

@media (max-width: 600px) {
  .livros-list { margin-top: 40px; }
  .livro-item { padding: 22px 0; }
  .livro-name { font-size: 19px; }
  .livro-desc { font-size: 13px; }
}

/* Mute/unmute toggle in custom video controls */
.vp-btn .vp-icon-mute { display: none; }
.vp-btn .vp-icon-unmute { display: block; }
.is-muted .vp-icon-mute { display: block; }
.is-muted .vp-icon-unmute { display: none; }
/* When muted, make the mute button stand out slightly so user notices it */
.is-muted .vp-mute {
  background: rgba(164,139,88,0.55);
  border-color: var(--gold);
}

/* ---------- Big "Toque para ouvir" overlay shown while video is muted ---------- */
.vp-unmute-overlay {
  position: absolute;
  inset: 0;
  z-index: 7;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: rgba(7, 16, 42, 0.55);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border: 0;
  cursor: pointer;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0;
  transition: opacity 0.3s ease;
}
.is-playing.is-muted:not(.has-engaged) .vp-unmute-overlay {
  display: flex;
  animation: vp-overlay-pulse 2.4s ease-in-out infinite;
}
.vp-unmute-overlay-icon {
  width: 64px;
  height: 64px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(164, 139, 88, 0.18);
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.vp-unmute-overlay-icon svg {
  width: 26px;
  height: 26px;
  color: var(--gold);
}
.vp-unmute-overlay:hover .vp-unmute-overlay-icon,
.vp-unmute-overlay:focus-visible .vp-unmute-overlay-icon {
  transform: scale(1.06);
  background: rgba(164, 139, 88, 0.32);
}
.vp-unmute-overlay:focus-visible {
  outline: none;
}
@keyframes vp-overlay-pulse {
  0%, 100% { background-color: rgba(7, 16, 42, 0.55); }
  50%      { background-color: rgba(7, 16, 42, 0.42); }
}

/* On small video tiles (vertical depo cards) shrink the icon */
.depo-video .vp-unmute-overlay-icon { width: 52px; height: 52px; }
.depo-video .vp-unmute-overlay-icon svg { width: 22px; height: 22px; }
.depo-video .vp-unmute-overlay { font-size: 10px; letter-spacing: 2px; gap: 10px; }
