/* =========================================================
   GABRIELA CORDEIRO — STYLE.CSS
   - Títulos / textos grandes: Merriweather
   - Textos menores / interface: Lato
   - Tema: Marsala + Dourado
   ========================================================= */

:root{
  /* Paleta */
  --pms5493: #123B66;        /* azul secundário */
  --pms5493-dark: #0B2545;   /* azul principal */
  --pms5493-deep: #081A30;   /* azul profundo */

  --gold:#C9A24D;            /* dourado discreto */
  --gold-2:#E0C27A;

  /* Surfaces */
  --paper:#FFFFFF;
  --paper-2:#F2F2F2;         /* cinza claro */
  --ink:#0B2545;
  --muted:#5E6A79;

  /* Effects */
  --shadow: 0 18px 45px rgba(0,0,0,.18);
  --shadow-soft: 0 10px 30px rgba(0,0,0,.12);

  /* Radius */
  --radius: 18px;
  --radius-lg: 24px;

  --font-logo: "Cinzel", ui-serif, Georgia, "Times New Roman", Times, serif;
  --font-title: "Playfair Display", ui-serif, Georgia, "Times New Roman", Times, serif;
  --font-body: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
a{ color: inherit; text-decoration: none; }
.container{ width:min(1120px, calc(100% - 36px)); margin:0 auto; }

/* =========================
   BASE (Inter no corpo)
   ========================= */
body{
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
}

html{ scroll-behavior: smooth; }

/* Títulos (Merriweather) */
h1,h2,h3,h4,.h4,.section__title,.card__title,.footer__title,.footer__name{
  font-family: var(--font-title);
}

/* =========================
   TOPBAR (verde)
   ========================= */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11,37,69,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.topbar.is-scrolled{
  background: rgba(11,37,69,.86);
  border-bottom: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 26px rgba(0,0,0,.18);
}
.topbar__inner{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  gap: 12px;
  padding: 10px 0;
  color: rgba(255,255,255,.92);
  font-size: 12.5px;
}
.topbar__left{ justify-self: start; }
.topbar__center{ justify-self: center; }
.topbar__right{ justify-self: end; }

.topbar__left, .topbar__right{
  display:flex;
  align-items:center;
  gap: 14px;
  flex-wrap: wrap;
}
.topbar__item{
  display:flex;
  align-items:center;
  gap: 8px;
  opacity: .95;
}
.topbar__item:hover{ opacity: 1; }
.dot{
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(214,178,110,.18);
}

.topbar__left{ flex: 0 0 auto; }
.topbar__right{ flex: 0 0 auto; }
.topbar__center{
  flex: 1 1 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 14px;
  padding: 0 10px;
  min-width: 260px;
}
.topnav__link{
  color: rgba(255,255,255,.92);
  text-decoration:none;
  font-weight: 600;
  letter-spacing: .2px;
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background .18s ease, color .18s ease;
  white-space: nowrap;
}
.topnav__link:hover{
  background: rgba(255,255,255,.10);
  color: #fff;
}
.topnav__link.is-active{
  background: rgba(214,178,110,.16);
  border: 1px solid rgba(226,194,123,.35);
}
.topbar__cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--gold);
  color: #1b1408;
  font-weight: 800;
  text-decoration:none;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.14);
  margin-right: 8px;
}
.topbar__cta:hover{ filter: brightness(1.04); }
@media (max-width: 980px){
  .topbar__center{ display:none; }
}

/* Language buttons */
.lang{ display:flex; gap: 6px; margin-left: 6px; }
.lang__btn{
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.94);
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  font-weight: 800;
  letter-spacing: .2px;
}
.lang__btn:hover{
  transform: translateY(-1px);
  border-color: rgba(226,194,123,.65);
}
.lang__btn.is-active{
  background: rgba(214,178,110,.16);
  border-color: rgba(226,194,123,.65);
}

/* =========================
   HERO (verde + dourado)
   ========================= */
.hero{ position: relative; padding-bottom: 10px; }
.hero__bg{
  position:absolute; inset:0;
  z-index:0;
  overflow:hidden;
}
.hero__bg::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(120deg, rgba(11,37,69,.88) 0%, rgba(8,26,48,.78) 45%, rgba(11,37,69,.55) 100%),
    url("../assets/gavel.png");
  background-size: cover;
  background-position: center;
  filter: saturate(.85) contrast(1.06);
  transform: scale(1.02);
}

/* =========================
   PREMIUM REVEAL (animações discretas)
   ========================= */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
  will-change: opacity, transform;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* cards mais premium */
.card{
  background: var(--paper);
  border: 1px solid rgba(11,37,69,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(201,162,77,.28);
}
.hero__bg::after{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(900px 520px at 20% 15%, rgba(201,162,77,.22), transparent 60%),
    radial-gradient(700px 520px at 70% 10%, rgba(201,162,77,.14), transparent 62%),
    linear-gradient(180deg, rgba(8,26,48,.55) 0%, rgba(8,26,48,.15) 55%, rgba(255,255,255,.0) 100%);
  opacity:.95;
  /* “dissolve” para a transição com a seção clara abaixo */
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 70%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 70%, rgba(0,0,0,0) 100%);
}
.hero__content{
  position: relative;
  z-index: 1;
  padding: 92px 0 0;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 28px;
  text-align: left;
}
.hero__titleblock{ color: rgba(255,255,255,.92); }

.hero__portrait{
  position: relative;
  justify-self: end;
  width: min(520px, 48vw);
  aspect-ratio: 4/5;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  border: none;
  background: transparent;

  /* dissolve em TODAS as bordas (sem cara de card) */
  -webkit-mask-image: radial-gradient(closest-side at 55% 50%, rgba(0,0,0,1) 70%, rgba(0,0,0,.85) 78%, rgba(0,0,0,0) 98%);
  mask-image: radial-gradient(closest-side at 55% 50%, rgba(0,0,0,1) 70%, rgba(0,0,0,.85) 78%, rgba(0,0,0,0) 98%);
}
.hero__portrait img{

  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 0;
}

.hero__portrait::after{
  content:"";
  position:absolute; inset:0;
  background: url("../assets/gavel.png") center/cover no-repeat;
  opacity: .42;
  mix-blend-mode: soft-light;
  pointer-events:none;
  -webkit-mask-image: radial-gradient(closest-side at 45% 55%, rgba(0,0,0,1) 0%, rgba(0,0,0,.75) 55%, rgba(0,0,0,0) 92%);
  mask-image: radial-gradient(closest-side at 45% 55%, rgba(0,0,0,1) 0%, rgba(0,0,0,.75) 55%, rgba(0,0,0,0) 92%);
}


/* NOME / títulos (Merriweather) */
.hero__name{
  margin: 4px 0 2px;
  font-family: var(--font-logo);
  font-weight: 900;
  letter-spacing: .02em;
  font-size: clamp(26px, 4.1vw, 46px);
  text-transform: uppercase;
}

.hero__subtitle{
  opacity:.92;
  font-weight: 600;
  letter-spacing: .2px;
}

.hero__chips{
  margin-top: 12px;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap: 8px;
}
.chip{
  display:inline-flex;
  align-items:center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  font-size: 12.5px;
  font-weight: 650;
}

.hero__line{
  width: min(520px, 86%);
  height: 1px;
  margin: 16px auto 16px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
}

/* HEADLINE */
.hero__headline{
  margin: 0;
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(18px, 2.7vw, 28px);
  color: var(--gold);
  letter-spacing: .03em;
}

.hero__tagline{
  margin: 10px auto 0;
  opacity: .90;
  max-width: 980px;
  line-height: 1.65;
}

.hero__cta{
  margin-top: 18px;
  display:flex;
  gap: 10px;
  justify-content:flex-start;
  flex-wrap: wrap;
}

@media (max-width: 900px){
  .hero__content{ grid-template-columns: 1fr; text-align: center; padding-top: 88px; }
  .hero__portrait{ justify-self: center; width: min(360px, 92vw); }
  .hero__cta{ justify-content: center; }
  .hero__line{ margin-left: auto; margin-right: auto; }
}

/* Buttons (Rubik opcional via peso, mas texto pequeno continua Inter) */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: .2px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  user-select:none;
}
.btn:hover{ transform: translateY(-1px); }

.btn--gold{
  color: #1A1408;
  background: linear-gradient(180deg, #E2C07B, #CFA35A);
  box-shadow: 0 16px 28px rgba(0,0,0,.25);
}
.btn--gold:hover{ box-shadow: 0 18px 34px rgba(0,0,0,.30); }

.btn--ghost{
  color: rgba(255,255,255,.94);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.20);
}
.btn--ghost:hover{
  border-color: rgba(226,194,123,.65);
  background: rgba(255,255,255,.12);
}

.btn--soft{
  color: #132033;
  background: rgba(11,30,51,.06);
  border: 1px solid rgba(11,30,51,.10);
}
.btn--soft:hover{ border-color: rgba(214,178,110,.40); }

.hero__wave{
  margin: 20px auto 0;
  height: 10px;
  width: min(920px, 96%);
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(226,194,123,.7), rgba(214,178,110,.6), transparent);
  opacity: .9;
}

/* =========================
   NAV + DROPDOWN (verde)
   ========================= */
.nav{
  position: absolute;
  left: 0;
  right: 0;
  top: 22px;
  z-index: 2;
  margin-top: 0;
}
.nav__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  flex-wrap: nowrap;
  padding: 10px 0 14px;
}

.nav__brand{ display:flex; align-items:center; gap:10px; text-decoration:none; min-width: 220px; }
.nav__brand img{ width:38px; height:38px; object-fit:contain; filter: drop-shadow(0 10px 18px rgba(0,0,0,.25)); }
.nav__brandText{ display:flex; flex-direction:column; line-height:1.05; }
.nav__brandText strong{ color:#fff; font-family: var(--font-title); font-weight: 800; font-size: 14px; letter-spacing:.2px; }
.nav__brandText small{ color: rgba(255,255,255,.78); font-size: 11px; font-weight: 600; }

.nav__links{ display:flex; justify-content:center; gap:14px; flex-wrap:wrap; flex:1; }
.nav__actions{ display:flex; justify-content:flex-end; min-width: 160px; }

.nav__link{
  color: rgba(255,255,255,.90);
  font-weight: 750;
  font-size: 13px;
  opacity: .92;
  padding: 8px 10px;
  border-radius: 999px;
  transition: background .18s ease, transform .18s ease, opacity .18s ease, border-color .18s ease;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
}
.nav__link:hover{
  opacity:1;
  background: rgba(255,255,255,.10);
  transform: translateY(-1px);
}
.nav__link.is-active{
  background: rgba(214,178,110,.16);
  border: 1px solid rgba(226,194,123,.35);
}
.nav__link--pill{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.20);
}
.nav__group{ position: relative; }
.nav__link--dropdown{ display:inline-flex; align-items:center; gap:8px; }
.caret{ opacity:.85; font-size: 12px; }

.dropdown{
  position:absolute;
  top: 44px;
  left: 0;
  min-width: 220px;
  background: rgba(27,11,16,.96);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
  padding: 8px;
  display:none;
}
.dropdown.is-open{ display:block; }
.dropdown__item{
  display:flex;
  padding: 10px 10px;
  border-radius: 12px;
  color: rgba(255,255,255,.94);
  font-weight: 650;
  font-size: 13px;
  opacity: .95;
}
.dropdown__item:hover{ background: rgba(255,255,255,.12); opacity: 1; }

/* =========================
   MAIN
   ========================= */
.main.container{ width:100%; max-width:none; padding:0; }
.main{ padding: 0 0 56px; }
.page{
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.page--enter{ animation: pageIn .32s ease both; }
.page--leave{ animation: pageOut .18s ease both; }
@keyframes pageIn{
  from{ opacity:0; transform: translateY(10px); filter: blur(3px); }
  to{ opacity:1; transform: translateY(0); filter: blur(0); }
}
@keyframes pageOut{
  from{ opacity:1; transform: translateY(0); }
  to{ opacity:0; transform: translateY(-6px); }
}

.section{ padding: 42px 26px; max-width: 1120px; margin: 0 auto; }
@media (max-width: 860px){ .section{ padding: 28px 16px; } }

/* TÍTULOS DE PÁGINA */
.section__title{
  margin: 0 0 14px;
  font-family: var(--font-title);
  text-align:center;
  color: #132033;
  letter-spacing: .04em;
  font-weight: 800;
  font-size: clamp(22px, 2.7vw, 34px);
}

/* Textos pequenos: Lato */
.section__lead{
  text-align:center;
  max-width: 980px;
  margin: 0 auto 18px;
  color: var(--muted);
  line-height: 1.7;
}

.notice{
  margin: 8px 0 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(185,138,148,.16);
  border: 1px solid rgba(138,59,74,.18);
  color: #334155;
  line-height: 1.65;
}

.promo{
  margin: 16px auto 18px;
  padding: 18px 18px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(90deg, rgba(0,0,0,.58), rgba(0,0,0,.20)),
    radial-gradient(700px 260px at 18% 40%, rgba(214,178,110,.28), transparent 60%),
    linear-gradient(135deg, var(--pms5493-deep), var(--pms5493-dark) 55%, var(--pms5493));
  color: rgba(255,255,255,.94);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,.12);
}
.promo__kicker{
  font-size: 12px;
  letter-spacing: .16em;
  font-weight: 900;
  opacity: .92;
}
.promo__title{
  margin: 6px 0 8px;
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(22px, 3.1vw, 44px);
  line-height: 1.08;
}
.promo__text{
  max-width: 860px;
  margin: 0 0 14px;
  line-height: 1.7;
  opacity: .92;
}
.promo__btn{ padding-left: 18px; padding-right: 18px; }

/* Variação para usar o mesmo destaque como "título" de seção */
.promo--compact{
  margin: 0 0 14px;
  padding: 16px 18px;
}

/* =========================
   GRID / CARDS
   ========================= */
.grid{ display:grid; gap: 16px; }
.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)); }
@media (max-width: 980px){ .grid--3{ grid-template-columns: 1fr; } .grid--4{ grid-template-columns: 1fr; } }
@media (max-width: 860px){ .grid--2{ grid-template-columns: 1fr; } }

.card{
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(15,28,45,.08);
  border-radius: var(--radius);
  box-shadow: 0 12px 26px rgba(0,0,0,.08);
  padding: 18px;
}

/* Título de card */
.card__title, .card h4{
  font-family: var(--font-title);
  font-weight: 900;
  letter-spacing: .02em;
  margin: 0 0 8px;
}
.card__text{ margin: 0; color: var(--muted); line-height: 1.7; }

.badge{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 850;
  font-size: 12.5px;
  color: rgba(15,28,45,.92);
  background: rgba(226,194,123,.35);
  border: 1px solid rgba(214,178,110,.30);
}

/* Lists */
.list{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}
.list strong{ color: #132033; }
.hr{ height:1px; background: rgba(11,30,51,.10); margin: 14px 0; }

/* FAQ */
.faq{ display:grid; gap: 10px; }
.faq details{
  border: 1px solid rgba(11,30,51,.10);
  border-radius: 16px;
  background: rgba(11,30,51,.03);
  padding: 12px 12px;
}
.faq summary{
  cursor: pointer;
  font-weight: 900;
  color: #132033;
}
.faq p{ margin: 10px 0 0; color: var(--muted); line-height: 1.7; }

/* Contact */
.contact{ display:flex; flex-direction:column; gap: 10px; }
.contact a, .contact span{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: none !important;
}
.contact strong{ min-width: 92px; color: rgba(0,0,0,.70); }

/* =========================
   CALENDAR (verde)
   ========================= */
.calendarWrap{ display:grid; gap: 14px; justify-items:center; }
.calendar{
  width: min(440px, 100%);
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(15,28,45,.10);
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(0,0,0,.10);
  overflow:hidden;
}
.calendar__head{
  display:flex; justify-content:space-between; align-items:center;
  padding: 12px 12px;
  background: linear-gradient(180deg, var(--pms5493-deep), var(--pms5493-dark));
  color: rgba(255,255,255,.95);
}
.calendar__head button{
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.95);
  border-radius: 12px;
  padding: 8px 10px;
  cursor:pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.calendar__head button:hover{
  transform: translateY(-1px);
  border-color: rgba(226,194,123,.70);
}
.calendar__title{ font-weight: 900; letter-spacing: .3px; font-size: 13.5px; }
.calendar__grid{ padding: 12px; display:grid; grid-template-columns: repeat(7, 1fr); gap: 8px; }
.calendar__dow{
  font-size: 12px;
  color: rgba(19,32,51,.65);
  text-align:center;
  font-weight: 900;
  padding-bottom: 4px;
}
.day{
  height: 42px;
  border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  font-weight: 900;
  border: 1px solid rgba(11,30,51,.06);
  background: rgba(11,30,51,.02);
  color: rgba(19,32,51,.35);
  user-select:none;
}
.day--blank{ border: 0; background: transparent; }
.day--available{
  background: rgba(226,194,123,.35);
  border-color: rgba(214,178,110,.38);
  color: #132033;
  cursor:pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}
.day--available:hover{ transform: translateY(-1px); box-shadow: 0 12px 20px rgba(0,0,0,.12); }
.day--selected{
  background: linear-gradient(180deg, #E2C07B, #CFA35A);
  border-color: rgba(214,178,110,.70);
  color: #1A1408;
}

.note{ color: var(--muted); font-size: 13px; text-align:center; line-height: 1.6; max-width: 980px; }

/* =========================
   ABOUT (foto)
   ========================= */
.aboutGrid{
  display:grid;
  grid-template-columns: 220px 1fr;
  gap: 26px;
  align-items: start;
}
.aboutPhoto{
  display:flex;
  justify-content:center;
  position: relative;
}
.aboutPhoto img{
  width: 220px;
  max-width: 220px;
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,.16);
  filter: grayscale(18%) contrast(1.06) brightness(1.02) saturate(.9);
  border: 1px solid rgba(214,178,110,.55);
  background: #fff;
}
.aboutPhoto:after{
  content:"";
  position:absolute;
  bottom:-10px;
  left:50%;
  transform:translateX(-50%);
  width: 120px;
  height: 2px;
  border-radius: 99px;
  background: rgba(214,178,110,.55);
  filter: blur(.1px);
}
@media (max-width: 900px){
  .aboutGrid{ grid-template-columns: 1fr; gap: 16px; }
  .aboutPhoto img{ width: 210px; height: 260px; }
}

/* =========================
   FOOTER (verde)
   ========================= */
.footer{
  background: linear-gradient(135deg, var(--pms5493-deep), var(--pms5493-dark), var(--pms5493));
  color: rgba(255,255,255,.88);
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.10);
}
.footer__inner{ display:grid; gap: 14px; align-items:start; }
.footer__two{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.footer__title{
  font-family: var(--font-title);
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: .03em;
}
.footer__name{
  font-family: var(--font-title);
  font-weight: 800;
  letter-spacing: .03em;
  color: var(--gold);
}
.footer__desc{ opacity: .88; margin-top: 6px; line-height: 1.6; }
.footer__disclaimer{ opacity: .76; margin-top: 8px; line-height: 1.6; }
.footer__links{ margin-top: 10px; opacity: .90; }
.footer__links a:hover{ text-decoration: underline; }
.sep{ opacity:.6; padding: 0 8px; }
.footer__contacts{ display:flex; flex-direction:column; gap: 6px; opacity: .92; }
.footer__contacts a:hover{ text-decoration: underline; }
.footer__copy{ opacity: .72; font-size: 13px; margin-top: 14px; }
@media (max-width: 900px){
  .footer__two{ grid-template-columns: 1fr; }
}

/* =========================
   WHATSAPP FLOAT
   ========================= */
.whats{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #25D366;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.25);
  transition: transform .18s ease, box-shadow .18s ease;
}
.whats:hover{ transform: translateY(-2px); box-shadow: 0 22px 55px rgba(0,0,0,.32); }

.whats__badge{
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #E11D48;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
  border: 2px solid #fff;
}

.whats__icon{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  position: relative;
}
.whats__icon::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23ffffff' d='M19.11 17.52c-.27-.14-1.6-.79-1.85-.88-.25-.09-.43-.14-.61.14-.18.27-.7.88-.86 1.06-.16.18-.31.2-.58.07-.27-.14-1.13-.42-2.16-1.34-.8-.71-1.34-1.59-1.5-1.86-.16-.27-.02-.42.12-.56.12-.12.27-.31.41-.46.14-.16.18-.27.27-.45.09-.18.05-.34-.02-.48-.07-.14-.61-1.47-.84-2.01-.22-.53-.44-.46-.61-.47h-.52c-.18 0-.48.07-.73.34-.25.27-.96.94-.96 2.3s.99 2.67 1.13 2.85c.14.18 1.95 2.99 4.72 4.19.66.29 1.18.46 1.58.59.66.21 1.26.18 1.73.11.53-.08 1.6-.65 1.83-1.28.23-.62.23-1.15.16-1.28-.07-.13-.25-.2-.52-.34z'/%3E%3Cpath fill='%23ffffff' d='M16.02 4.8c-6.16 0-11.17 5.01-11.17 11.17 0 1.96.52 3.88 1.5 5.57L4.8 27.2l5.83-1.53c1.62.88 3.44 1.34 5.39 1.34 6.16 0 11.17-5.01 11.17-11.17S22.18 4.8 16.02 4.8zm0 20.2c-1.75 0-3.46-.47-4.95-1.36l-.35-.21-3.46.91.93-3.37-.23-.35a9.01 9.01 0 0 1-1.41-4.85c0-4.98 4.05-9.03 9.03-9.03s9.03 4.05 9.03 9.03-4.05 9.03-9.03 9.03z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.whats__bubble{
  position: absolute;
  right: 70px;
  bottom: 8px;
  width: 270px;
  padding: 10px 12px;
  background: #fff;
  color: #111827;
  border-radius: 12px;
  border: 1px solid rgba(17,24,39,.10);
  box-shadow: 0 18px 45px rgba(0,0,0,.16);
  transform-origin: bottom right;
  transform: scale(.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.whats__bubble::after{
  content: "";
  position: absolute;
  right: -8px;
  bottom: 14px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-right: 1px solid rgba(17,24,39,.10);
  border-bottom: 1px solid rgba(17,24,39,.10);
  transform: rotate(-45deg);
}
.whats:hover .whats__bubble,
.whats:focus-visible .whats__bubble{
  opacity: 1;
  transform: scale(1);
}

.whats__bubbleTitle{
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  color: #22C55E;
}
.whats__bubbleText{
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  margin-top: 2px;
  color: #111827;
}

@media (max-width: 520px){
  .whats__bubble{ display: none; }
}

/* =======================
   SERVIÇOS (cards 24x)
======================= */
.svcSection{ margin-top: 26px; }
.svcGrid{
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 980px){
  .svcGrid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .svcGrid{ grid-template-columns: 1fr; }
}

.svcCard{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 16px;
  padding: 14px 14px 12px;
  box-shadow: 0 10px 24px rgba(2,6,23,.06);
}
.svcCard__head{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 12px;
}
.svcCard__title{
  margin: 0;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 15.5px;
  line-height: 1.2;
  color: #0f172a;
}
.svcCard__toggle{
  border: 1px solid rgba(201,162,77,.55);
  background: rgba(201,162,77,.16);
  color: #0f172a;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  cursor:pointer;
  white-space: nowrap;
}
.svcCard__toggle:hover{ background: rgba(201,162,77,.18); }
.svcCard__chev{ display:inline-block; margin-left:6px; transition: transform .18s ease; }
.svcCard.is-open .svcCard__chev{ transform: rotate(180deg); }

.svcCard__body{
  margin-top: 10px;
  color: #334155;
  font-size: 13.5px;
  line-height: 1.55;
}
.svcCard__body p{ margin: 0; }

.svcNotice{ margin-top: 8px; }




/* Promo mini blocks inside Services */
.promo--mini{
  margin: 18px 0 22px;
  padding: 26px 26px;
}
@media (max-width: 640px){
  .promo--mini{ padding: 22px 18px; }
}


/* ajuste sem seletor de idioma */
.topbar__right{gap:8px;}


/* Full-bleed alternating section backgrounds */
section[data-section]{ position: relative; scroll-margin-top: 96px; }
section[data-section]::before{
  content:"";
  position:absolute;
  inset:0;
  left:50%;
  right:50%;
  margin-left:-50vw;
  margin-right:-50vw;
  z-index:-1;
}
section[data-section]:nth-of-type(odd)::before{ background: var(--paper); }
section[data-section]:nth-of-type(even)::before{ background: linear-gradient(135deg, var(--pms5493-deep), var(--pms5493-dark), var(--pms5493)); }
section[data-section]:nth-of-type(even){ color: rgba(255,255,255,.94); }
section[data-section]:nth-of-type(even) .section__title,
section[data-section]:nth-of-type(even) .h4,
section[data-section]:nth-of-type(even) .card__title,
section[data-section]:nth-of-type(even) .card h4,
section[data-section]:nth-of-type(even) .list strong{ color: #fff; }
section[data-section]:nth-of-type(even) .section__lead,
section[data-section]:nth-of-type(even) .muted,
section[data-section]:nth-of-type(even) .list,
section[data-section]:nth-of-type(even) .card__text,
section[data-section]:nth-of-type(even) .meta{ color: rgba(255,255,255,.86); }
section[data-section]:nth-of-type(even) .card{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 16px 34px rgba(0,0,0,.16);
}
section[data-section]:nth-of-type(even) .svcCard,
section[data-section]:nth-of-type(even) .card--link{
  background: rgba(255,255,255,.96);
  border-color: rgba(15,23,42,.10);
}
section[data-section]:nth-of-type(even) .svcCard__title,
section[data-section]:nth-of-type(even) .svcCard__body,
section[data-section]:nth-of-type(even) .card--link .card__title,
section[data-section]:nth-of-type(even) .card--link .card__text{ color: #132033; }
section[data-section]:nth-of-type(even) .aboutText .card{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.12);
}
section[data-section]:nth-of-type(even) .aboutText .card .muted,
section[data-section]:nth-of-type(even) .aboutText .card .list,
section[data-section]:nth-of-type(even) .aboutText .card .list strong,
section[data-section]:nth-of-type(even) .aboutText .card .card__title{ color:#fff; }

.aboutText{ text-align:center; }
.aboutText p{ max-width: 860px; margin-left:auto; margin-right:auto; }
.aboutText .card{ text-align:left; }

.areasGrid .card{ height:100%; }

/* Service cards: independent masonry columns so only opened card grows */
.svcGrid{
  display:block;
  column-count: 3;
  column-gap: 14px;
}
.svcCard{
  display:inline-block;
  width:100%;
  margin: 0 0 14px;
  break-inside: avoid;
  vertical-align: top;
}
@media (max-width: 980px){ .svcGrid{ column-count: 2; } }
@media (max-width: 640px){ .svcGrid{ column-count: 1; } }

/* Cards claros com texto escuro em Conteúdos */
#conteudos .card--link{
  background: rgba(255,255,255,.96);
  border-color: rgba(15,23,42,.10);
}
#conteudos .card--link .card__title,
#conteudos .card--link .card__text{ color:#132033 !important; }

.section--intro .section__lead{ max-width: 820px; }


/* Hero brand logo */
.hero__brand{margin: 2px 0 6px;}
.hero__logo{display:block; width:min(520px, 100%); max-width:100%; height:auto; filter: drop-shadow(0 10px 24px rgba(0,0,0,.22));}
@media (max-width: 900px){ .hero__logo{ margin: 0 auto; width:min(420px, 92vw);} }

/* Premium intro section */
.introCard{
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,249,251,.98));
  border: 1px solid rgba(11,37,69,.08);
  border-radius: 28px;
  box-shadow: 0 20px 48px rgba(2,6,23,.10);
  padding: 40px 42px;
  text-align: center;
}
.introCard__kicker{
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 14px;
}
.introCard__name{
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.05;
  color: var(--ink);
  margin-top: 8px;
}
.introCard__oab{
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(16px, 2vw, 24px);
  color: #21385a;
  margin-top: 6px;
}
.introCard__areas{
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 22px;
  max-width: 780px;
}
.introCard__lead.section__lead,
.introCard__lead{
  margin-top: 16px;
  color: #6a7686;
  max-width: 760px;
}
@media (max-width: 700px){
  .introCard{ padding: 28px 20px; border-radius: 20px; }
  .introCard__areas{ font-size: 17px; }
}

/* Reviews */
.reviewCard{
  background: linear-gradient(135deg, rgba(5,12,24,.88), rgba(28,31,38,.96));
  border: 1px solid rgba(201,162,77,.16);
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
  padding: 26px;
  color: rgba(255,255,255,.92);
}
.reviewCard__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
}
.reviewCard__name{
  margin:0;
  font-family: var(--font-title);
  font-size: 24px;
  color:#fff;
}
.reviewCard__meta{
  margin-top: 4px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
}
.reviewCard__stars{
  color: var(--gold-2);
  letter-spacing: .08em;
  font-size: 22px;
  white-space: nowrap;
}
.reviewCard__text{
  margin: 18px 0 0;
  color: rgba(255,255,255,.90);
  line-height: 1.7;
  font-size: 18px;
}
.reviewsGrid{ margin-top: 18px; }

/* Conteúdos: sempre claro com texto escuro */
#conteudos .card--link{
  background: rgba(255,255,255,.98) !important;
  border-color: rgba(15,23,42,.10) !important;
}
#conteudos .card--link .card__title,
#conteudos .card--link .card__text{ color:#132033 !important; opacity:1 !important; }
