:root {
  --bg: #0E0E10;
  --bg-raised: #17171A;
  --bg-raised-2: #1D1D20;
  --line: #2A2A2C;
  --gold: #C6A15B;
  --gold-soft: rgba(198,161,91,0.14);
  --cream: #EDEAE2;
  --grey: #9A968D;
  --grey-dim: #66635C;

  --font-display: "Fraunces", serif;
  --font-body: "Inter", sans-serif;

  --container: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

a { color: inherit; }

img { max-width: 100%; display: block; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  margin: 0;
  color: var(--cream);
}

p { margin: 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.eyebrow.center { text-align: center; }

.section-title {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15;
  margin-bottom: 48px;
}

.section-title.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}

.btn-gold {
  background: var(--gold);
  color: #16140E;
}

.btn-gold:hover {
  background: #D8B675;
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-full {
  width: 100%;
  text-align: center;
  border: none;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14,14,16,0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold);
  border: 1px solid var(--gold);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.3;
  color: var(--cream);
}

.brand-suffix {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a {
  text-decoration: none;
  font-size: 14.5px;
  color: var(--cream);
  position: relative;
  padding-bottom: 4px;
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.main-nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 9px 18px;
  border-radius: 2px;
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--gold);
  color: #16140E;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 14.5px;
  cursor: pointer;
  padding: 0 0 4px;
}

.nav-dropdown-toggle .chevron {
  width: 9px;
  height: 6px;
  transition: transform 0.2s ease;
}

.nav-dropdown.open .nav-dropdown-toggle .chevron {
  transform: rotate(180deg);
}

.nav-dropdown-toggle:hover {
  color: var(--gold);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translate(-50%, -8px);
  min-width: 230px;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 40;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  text-decoration: none;
  color: var(--cream);
  border-radius: 2px;
}

.nav-dropdown-menu a:hover {
  background: var(--gold-soft);
  color: var(--gold);
}

.nav-dropdown-desc {
  padding: 10px 14px 12px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--grey);
  border-bottom: 1px solid var(--line);
  margin-bottom: 6px;
}

.nav-dropdown-group-label {
  padding: 10px 14px 4px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.nav-dropdown-divider {
  height: 1px;
  background: var(--line);
  margin: 8px 4px;
}

.nav-dropdown-menu a.nav-dropdown-highlight {
  color: var(--gold);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--cream);
}

/* ---------- Hero ---------- */
.hero {
  padding: 120px 0 90px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 900px 500px at 85% -10%, var(--gold-soft), transparent 60%);
}

.hero-inner {
  max-width: 760px;
}

.hero-title {
  font-size: clamp(36px, 5.4vw, 62px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.signature-flourish {
  width: 260px;
  height: auto;
  margin: 8px 0 26px;
  display: block;
}

.signature-flourish path {
  stroke-dasharray: 620;
  stroke-dashoffset: 620;
  animation: draw-signature 1.6s ease 0.4s forwards;
}

@keyframes draw-signature {
  to { stroke-dashoffset: 0; }
}

.hero-sub {
  font-size: 17.5px;
  color: var(--grey);
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Stats band ---------- */
.stats-band {
  background: var(--bg-raised);
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item {
  text-align: center;
  padding: 0 10px;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--gold);
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: var(--grey);
  letter-spacing: 0.02em;
}

/* ---------- About ---------- */
.about-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text h2 {
  font-size: clamp(26px, 3vw, 34px);
  margin-bottom: 22px;
  line-height: 1.2;
}

.about-text p {
  color: var(--grey);
  margin-bottom: 18px;
  font-size: 15.5px;
}

.about-card {
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  padding: 34px 30px;
}

.about-card-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 21px;
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: 16px;
}

.about-card-attr {
  font-size: 13px;
  color: var(--grey-dim);
}

/* ---------- Areas ---------- */
.areas-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg-raised);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.area-card {
  background: var(--bg-raised);
  padding: 38px 32px;
  transition: background 0.25s ease;
}

.area-card:hover {
  background: var(--bg-raised-2);
}

.area-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
  color: var(--gold);
}

.area-card p {
  color: var(--grey);
  font-size: 14.5px;
}

/* ---------- Materials (free guides) ---------- */
.materials-section {
  padding: 90px 0 100px;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.material-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.material-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.material-cover {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 26px;
  border-bottom: 1px solid var(--line);
  background-image: radial-gradient(ellipse 500px 300px at 90% -10%, var(--gold-soft), transparent 60%);
}

.material-cover-eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.material-cover h3 {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.18;
  color: var(--cream);
}

.material-cover-rule {
  width: 46px;
  height: 2px;
  background: var(--gold);
  margin: 16px 0 0;
}

.material-body {
  padding: 26px 26px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.material-tag {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-soft);
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 14px;
  width: fit-content;
}

.material-body p {
  color: var(--grey);
  font-size: 14.5px;
  margin-bottom: 22px;
  flex: 1;
}

.material-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.material-pages {
  font-size: 12.5px;
  color: var(--grey-dim);
}

.material-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.material-download svg {
  width: 15px;
  height: 15px;
}

@media (max-width: 720px) {
  .materials-grid { grid-template-columns: 1fr; }
}


/* ---------- Team ---------- */
.team-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.team-card {
  flex: 0 1 220px;
  text-align: center;
}

.team-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-raised);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 26px;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: inherit;
}

.team-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
}

.team-role {
  font-size: 13.5px;
  color: var(--grey);
  margin-bottom: 4px;
}

.team-oab {
  font-size: 12px;
  color: var(--grey-dim);
}

/* ---------- Testimonials ---------- */
.testimonials-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg-raised);
}

.quote-carousel {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.quote-track {
  position: relative;
  min-height: 160px;
}

.quote-slide {
  margin: 0;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.quote-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.quote-slide p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(19px, 2.4vw, 24px);
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: 18px;
}

.quote-slide cite {
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
}

.quote-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.quote-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  border: none;
  padding: 0;
}

.quote-dots .dot.active {
  background: var(--gold);
}

/* ---------- Contact ---------- */
.contact-section {
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: clamp(26px, 3vw, 34px);
  margin: 4px 0 16px;
  line-height: 1.2;
}

.contact-lead {
  color: var(--grey);
  font-size: 15.5px;
  margin-bottom: 34px;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.contact-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}

.contact-label {
  color: var(--grey-dim);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.contact-list a {
  text-decoration: none;
  color: var(--cream);
}

.contact-list a:hover { color: var(--gold); }

.contact-social {
  padding-top: 20px;
  display: flex;
  justify-content: flex-end;
}

.contact-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--cream);
  font-size: 14.5px;
  transition: color 0.2s ease;
}

.contact-social a:hover { color: var(--gold); }

.contact-social svg {
  width: 20px;
  height: 20px;
}

.contact-form {
  background: var(--bg-raised);
  border: 1px solid var(--line);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: var(--grey);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--cream);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14.5px;
  border-radius: 2px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-note {
  font-size: 12px;
  color: var(--grey-dim);
  text-align: center;
}

/* ---------- Practice area page ---------- */
.practice-hero {
  padding: 90px 0 50px;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(ellipse 900px 500px at 85% -10%, var(--gold-soft), transparent 60%);
}

.practice-hero-title {
  font-size: clamp(34px, 5vw, 52px);
  margin: 4px 0 16px;
}

.practice-hero-sub {
  max-width: 620px;
  color: var(--grey);
  font-size: 16.5px;
}

.practice-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.practice-hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 3px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.practice-subnav {
  position: sticky;
  top: 71px;
  z-index: 30;
  background: rgba(23,23,26,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.practice-subnav-inner {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 16px 28px;
}

.practice-subnav-inner a {
  white-space: nowrap;
  text-decoration: none;
  font-size: 13.5px;
  color: var(--grey);
  letter-spacing: 0.02em;
}

.practice-subnav-inner a:hover {
  color: var(--gold);
}

.practice-topic {
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 130px;
}

.practice-topic.alt {
  background: var(--bg-raised);
}

.practice-topic-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
}

.practice-topic-label {
  position: sticky;
  top: 150px;
  align-self: start;
}

.topic-index {
  display: block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.practice-topic-label h2 {
  font-size: clamp(24px, 2.6vw, 30px);
  line-height: 1.2;
}

.practice-topic-body p {
  color: var(--grey);
  font-size: 15.5px;
  margin-bottom: 18px;
}

.practice-cta {
  padding: 90px 0;
  text-align: center;
}

.practice-cta-inner h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 14px;
}

.practice-cta-inner p {
  color: var(--grey);
  margin-bottom: 30px;
}

@media (max-width: 720px) {
  .practice-topic-grid { grid-template-columns: 1fr; gap: 20px; }
  .practice-topic-label { position: static; }
  .practice-subnav { top: 0; }
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.5;
}

.footer-nav {
  display: flex;
  gap: 24px;
}

.footer-nav a {
  text-decoration: none;
  font-size: 13.5px;
  color: var(--grey);
}

.footer-nav a:hover { color: var(--gold); }

.footer-copy {
  font-size: 12px;
  color: var(--grey-dim);
  width: 100%;
  text-align: center;
  order: 3;
  margin-top: 8px;
}

.footer-credit {
  color: var(--grey-dim);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
  margin-left: 22px;
}

.footer-credit:hover {
  color: var(--gold);
}

/* ---------- Depoimentos / Google Reviews ---------- */
.google-reviews-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: -20px 0 36px;
  font-size: 13.5px;
  color: var(--grey);
  letter-spacing: 0.02em;
}

.google-g-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.google-reviews-embed {
  min-height: 80px;
}

.google-reviews-embed:empty::before {
  content: "O widget de avaliações do Google aparecerá aqui assim que o código for adicionado.";
  display: block;
  text-align: center;
  padding: 40px 20px;
  border: 1px dashed var(--line);
  border-radius: 3px;
  color: var(--grey-dim);
  font-size: 13.5px;
}

/* ---------- Depoimentos / Google Reviews ---------- */
.google-reviews-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: -20px 0 36px;
  font-size: 13.5px;
  color: var(--grey);
  letter-spacing: 0.02em;
}

.google-g-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.google-review-carousel {
  max-width: 640px;
}

.google-review-card {
  text-align: left;
  background: var(--bg-raised-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 30px 32px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-meta {
  flex: 1;
}

.google-review-card .review-name {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 3px;
}

.google-g-icon-sm {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.review-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
}

.google-review-card .review-text {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--grey);
  margin-bottom: 18px;
}

.review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.review-tag {
  font-size: 11.5px;
  letter-spacing: 0.02em;
  padding: 4px 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--grey);
}

@media (max-width: 720px) {
  .google-review-card { padding: 24px 22px; }
}

@media (max-width: 600px) {
  .footer-credit { display: block; margin-left: 0; margin-top: 6px; }
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .signature-flourish path { animation: none; stroke-dashoffset: 0; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; }
  .practice-hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .practice-hero-media { order: -1; }
  .practice-hero-media img { aspect-ratio: 16 / 10; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
}

@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    top: 71px;
    left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 28px 28px;
    gap: 18px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .main-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-toggle { display: flex; }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    display: none;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    background: none;
    border: none;
    padding: 4px 0 4px 14px;
    box-sizing: border-box;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
    transform: none;
    left: auto;
  }

  .nav-dropdown-toggle {
    padding: 0;
  }

  .hero { padding: 80px 0 60px; }

  .areas-grid { grid-template-columns: 1fr; }

  .contact-list li { flex-direction: column; gap: 4px; }
}

/* ---------- News page ---------- */
.news-section {
  padding: 70px 0 100px;
}

.news-list {
  display: flex;
  flex-direction: column;
}

.news-item {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 34px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.news-thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--bg-raised-2), var(--bg-raised));
  border: 1px solid var(--line);
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  font: inherit;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.video-modal.open {
  display: flex;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.85);
}

.video-modal-box {
  position: relative;
  width: 100%;
  max-width: 900px;
}

.video-modal-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid var(--line);
}

.video-modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  background: var(--bg-raised);
  color: var(--fg);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: #16140E;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.play-icon svg { width: 22px; height: 22px; }

.news-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.news-thumb:hover .news-thumb-img {
  transform: scale(1.04);
}

.news-thumb:hover .play-icon {
  transform: translate(-50%, -50%) scale(1.08);
}

.news-tag {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.news-body h2 {
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.news-body p {
  color: var(--grey);
  font-size: 14.5px;
}

.main-nav a.active {
  color: var(--gold);
}

@media (max-width: 720px) {
  .news-item {
    grid-template-columns: 1fr;
  }
}

/* ---------- Botão flutuante do WhatsApp ---------- */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  z-index: 150;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
}

@media (max-width: 720px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
  .whatsapp-float svg {
    width: 27px;
    height: 27px;
  }
}
