html { background: var(--white); }
body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
}
body.menu-open { overflow: hidden; }
.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.container.narrow { width: min(calc(100% - 40px), var(--container-narrow)); }
.section {
  padding: 104px 0;
  position: relative;
}
.section.tight { padding: 80px 0; }
.section.alt { background: var(--sand); }
.section-title {
  display: grid;
  gap: 12px;
  margin-bottom: 42px;
}
.kicker {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.78rem;
  font-weight: 700;
}
h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(3rem, 7vw, 6.3rem); }
h2 { font-size: clamp(2.2rem, 5vw, 4.2rem); }
h3 { font-size: clamp(1.65rem, 3vw, 2.35rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
p { color: var(--gray); font-size: 1.02rem; }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.22rem); color: var(--gray); max-width: 64ch; }
.muted { color: #707070; }
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 220ms var(--ease), background-color 220ms var(--ease), border-color 220ms var(--ease), color 220ms var(--ease), box-shadow 220ms var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(176, 138, 76, 0.22);
}
.btn-primary:hover { background: var(--gold-dark); }
.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border-color: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
}
.btn-secondary.dark {
  background: var(--white);
  color: var(--black);
  border-color: var(--line);
}
.btn-secondary.dark:hover { border-color: var(--gold); }
.btn-ghost {
  background: transparent;
  color: var(--black);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.icon-arrow { width: 16px; height: 16px; display: inline-block; }
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }

.card {
  background: var(--white);
  padding: 12px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.flex-center{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    width:100%;
    gap:2rem;
}

.video-container{
    display:flex;
    justify-content:center;
    width:100%;
}

.video-container iframe{
    max-width:100%;
    border-radius:12px;
}

.practice-card-link{
    display:block;
    text-decoration:none;
    color:inherit;
}

.panel {
  background: var(--white);
  padding: 24px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.info-box {
  background: var(--white);
  padding: 12px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.video-card {
  background: var(--white);
  padding: 12px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.city-card {
  background: var(--white);
  padding: 24px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.practice-card {
  background: var(--white);
  padding: 8px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.team-card {
  background: var(--white);
  padding: 8px;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.card, .practice-card, .city-card, .video-card, .team-card { transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease); }
.card:hover, .practice-card:hover, .city-card:hover, .video-card:hover, .team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(176, 138, 76, 0.28);
}
.media {
  position: relative;
  overflow: hidden;
  background: #d9d4cb;
}
.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}
.card:hover .media img,
.practice-card:hover .media img,
.city-card:hover .media img,
.team-card:hover .media img,
.video-card:hover .media img { transform: scale(1.04); }
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(176,138,76,0.35), transparent);
}
.page-hero {
  position: relative;
  min-height: 54vh;
  display: grid;
  align-items: end;
  padding: calc(var(--header-height) + 50px) 0 84px;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}
.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.42), rgba(0,0,0,0.7));
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero p { color: rgba(255,255,255,0.82); max-width: 60ch; }
.breadcrumb {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
}
.breadcrumb a { color: rgba(255,255,255,0.82); }
.breadcrumb span { color: rgba(255,255,255,0.55); }
.hero-copy { max-width: 820px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  color: rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  margin-bottom: 18px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}
.stat {
  padding: 18px 18px 16px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
}
.stat strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.25rem;
  line-height: 1;
  margin-bottom: 8px;
}
.stat span {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}
.image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 420px;
  background: #dfd7cc;
  box-shadow: var(--shadow);
}
.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.copy-stack { display: grid; gap: 18px; align-content: start; }
.small-list {
  display: grid;
  gap: 10px;
}
.small-list li {
  display: flex;
  gap: 10px;
  color: var(--gray);
}
.small-list li::before {
  content: "—";
  color: var(--gold);
  flex: none;
}
.faq-item {
  border-bottom: 1px solid var(--line-soft);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  text-align: left;
  font-weight: 600;
  color: var(--black);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms var(--ease);
}
.faq-answer > div {
  padding: 0 0 22px;
  color: var(--gray);
}
.faq-item[aria-expanded="true"] .faq-answer { max-height: 260px; }
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(135deg, #b08a4c, #8f6d36);
  color: var(--white);
  padding: 44px;
  box-shadow: var(--shadow);
}
.cta-band p { color: rgba(255,255,255,0.86); }
.cta-band .btn-secondary { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.2); }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}
.section-head .lead { max-width: 66ch; }
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}
.filter-btn, .select {
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--black);
  padding: 0 16px;
}
.filter-btn[aria-pressed="true"] {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.map-embed {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line-soft);
  min-height: 420px;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}
.form {
  display: grid;
  gap: 16px;
}
.field {
  display: grid;
  gap: 8px;
}
.field label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--black);
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  color: var(--black);
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(176,138,76,0.12);
}
.form-note {
  font-size: 0.92rem;
  color: #777;
}
.status {
  min-height: 24px;
  font-size: 0.94rem;
  font-weight: 600;
}
.status.success { color: #2c7a46; }
.status.error { color: #a33b2f; }
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25D366;
  color: white;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.34);
}
.whatsapp-float svg { width: 64px; height: 64px; }

.custom-divider {
  border: none;
  border-top: 3px #bbb; /* Can also use 'dotted' or 'solid' */
  width: 50%;                 /* Controls how wide the line is */
  margin: 30px auto;          /* Centers the line and adds vertical space */
}

.whatsapp-float img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms var(--ease), transform 560ms var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.text-center { text-align: center; }
.max-720 { max-width: 720px; }
.max-820 { max-width: 820px; }
.mb-0 { margin-bottom: 0; }

/* Ajustes para iframes dentro de cards de vídeo */
.video-card .media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-card .media iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Remove underline e mantém cor dos links de prática */
.practice-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Ajuste para o mini-note no hero (já existe, mas pode reforçar) */
.hero .mini-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  font-size: 0.9rem;
}

/* Espaçamento extra para o título no hero em mobile */
@media (max-width: 768px) {
  .hero h1 {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }
}