:root {
  --navy: #16263A;
  --navy-deep: #0E1B29;
  --gold: #A9824F;
  --gold-soft: #C9AA7C;
  --paper: #F6F4EF;
  --paper-dim: #EDE9E0;
  --ink: #23262B;
  --ink-soft: #5A5F66;
  --line: rgba(22,38,58,0.12);
  --radius: 2px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Source Sans 3', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .serif {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 32px; }

/* Header */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(246, 244, 239, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px; max-width: 1120px; margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; font-family: 'Fraunces', serif; font-size: 19px; letter-spacing: 0.02em; color: var(--navy); }
.brand img { 
  height: 75px; 
  width: auto; 
  display: block; 
  transform: scale(1.8);
  mix-blend-mode: multiply; 
}
.brand b { font-weight: 600; }
nav { display: flex; gap: 36px; }
nav a { font-size: 14px; color: var(--ink-soft); transition: color .2s; }
nav a:hover { color: var(--navy); }
.header-cta {
  display: flex; align-items: center; gap: 8px;
  background: var(--navy); color: var(--paper);
  padding: 10px 20px; font-size: 14px; font-weight: 600;
  border-radius: var(--radius); transition: background .2s;
}
.header-cta:hover { background: var(--navy-deep); }

/* Hero */
.hero {
  padding: 190px 0 110px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; top: 0; right: -10%; width: 60%; height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(169, 130, 79, 0.08), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  position: relative;
}
.eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); }
.hero h1 {
  font-size: 52px; line-height: 1.12; color: var(--navy); max-width: 560px;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p.lede {
  margin-top: 24px; font-size: 18px; color: var(--ink-soft); max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; margin-top: 38px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--navy); color: var(--paper);
  padding: 15px 26px; font-size: 15px; font-weight: 600;
  border-radius: var(--radius); transition: transform .2s, background .2s;
}
.btn-primary:hover { background: var(--navy-deep); transform: translateY(-1px); }
.btn-primary svg { width: 18px; height: 18px; }
.btn-ghost {
  display: inline-flex; align-items: center;
  padding: 15px 8px; font-size: 15px; font-weight: 600; color: var(--navy);
  border-bottom: 1px solid var(--navy);
  transition: transform .2s, color .2s, border-color .2s;
}

.btn-ghost:hover {
  color: var(--navy-deep); 
  border-color: var(--navy-deep); 
  transform: translateY(-1px); 
}

.hero-panel {
  background: var(--navy); color: var(--paper);
  border-radius: var(--radius);
  padding: 44px 38px;
  position: relative;
}
.hero-panel::after {
  content: ""; position: absolute; inset: 10px;
  border: 1px solid rgba(201, 170, 124, 0.35);
  pointer-events: none;
}
.hero-panel .seal { margin-bottom: 28px; }
.hero-panel .seal img { height: 96px; width: auto; display: block; }
.hero-panel h3 { font-size: 22px; margin-bottom: 14px; color: #fff; }
.hero-panel p { font-size: 15px; color: rgba(246, 244, 239, 0.75); margin-bottom: 26px; }
.oab {
  display: flex; justify-content: space-between; border-top: 1px solid rgba(246, 244, 239, 0.15);
  padding-top: 18px; font-size: 13px; color: rgba(246, 244, 239, 0.65);
}

/* Customizações Internas do Hero Panel */
.hero-panel-title {
  font-size: 24px;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-features {
  list-style: none;
  padding: 0;
  margin: 0 0 36px 0;
  color: rgba(246, 244, 239, 0.85);
  font-size: 15px;
  line-height: 1.8;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.hero-features li svg {
  width: 18px;
  height: 18px;
  color: var(--gold-soft);
  flex-shrink: 0;
}

.hero-panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 18px;
}

.hero-address {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 13.5px;
  font-weight: 500;
}

.hero-address svg {
  width: 14px;
  height: 14px;
  color: var(--gold-soft);
  flex-shrink: 0;
}

.hero-schedule {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  color: rgba(246, 244, 239, 0.85);
}

.hero-schedule svg {
  width: 14px;
  height: 14px;
  color: var(--gold-soft);
  flex-shrink: 0;
}

/* Areas */
.section { padding: 96px 0; }
.section-head { max-width: 560px; margin-bottom: 56px; }
.section-head .eyebrow { color: var(--navy); }
.section-head .eyebrow::before { background: var(--navy); }
.section-head h2 { font-size: 36px; color: var(--navy); }
.section-head p { color: var(--ink-soft); margin-top: 14px; font-size: 16px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

.areas-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
}
.area-card {
  background: var(--paper); padding: 34px 32px; min-height: 130px;
  display: flex; flex-direction: column; justify-content: center;
  transition: background .25s;
}
.area-card:hover { background: var(--paper-dim); }
.area-card .tag {
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold);
  font-weight: 600;
}
.area-card h3 { font-size: 22px; color: var(--navy); margin-top: 10px; font-weight: 500; }

/* Team */
.team { background: var(--paper-dim); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px;
}
.team-card {
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(22, 38, 58, 0.12); }
.team-photo {
  aspect-ratio: 4/5; overflow: hidden; position: relative;
  background: var(--navy-deep);
}
.team-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: grayscale(0.15) contrast(1.02);
  transition: transform .5s ease;
}
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14, 27, 41, 0.55) 0%, rgba(14, 27, 41, 0) 38%);
}
.team-photo .role-pill {
  position: absolute; left: 20px; bottom: 16px; z-index: 2;
  font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold-soft); font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}
.team-photo .role-pill::before { content: ""; width: 16px; height: 1px; background: var(--gold-soft); }
.team-body { padding: 26px 28px 30px; }
.team-body h3 { font-size: 22px; color: var(--navy); font-weight: 500; }
.team-body .oab-tag {
  display: inline-block; margin-top: 8px;
  font-size: 12.5px; letter-spacing: 0.04em; color: var(--ink-soft);
  padding-bottom: 2px;
}
.team-body .divider {
  width: 36px; height: 2px; background: var(--gold); margin: 16px 0 14px;
}
.team-body p { font-size: 14.5px; color: var(--ink-soft); }

/* About */
.about { background: var(--navy); color: var(--paper); }
.about-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 64px; align-items: start; }
.about .section-head .eyebrow { color: var(--gold-soft); }
.about .section-head .eyebrow::before { background: var(--gold-soft); }
.about .section-head h2 { color: #fff; }
.about-photo {
  aspect-ratio: 3/4; border-radius: var(--radius); border: 1px solid rgba(201, 170, 124, 0.35);
  overflow: hidden; position: relative;
  background: linear-gradient(160deg, #223652, #0E1B29);
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
}
.about-photo img { width: 100%; max-width: 280px; height: auto; object-fit: contain; display: block; }
.about-body p { color: rgba(246, 244, 239, 0.78); font-size: 16px; margin-bottom: 18px; max-width: 560px; }
.about-stats { display: flex; gap: 40px; margin-top: 30px; flex-wrap: wrap; }
.stat b { display: block; font-family: 'Fraunces', serif; font-size: 30px; color: var(--gold-soft); }
.stat span { font-size: 13px; color: rgba(246, 244, 239, 0.6); }

/* CTA band */
.cta-band {
  background: var(--paper-dim);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 70px 0;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.cta-inner h3 { font-size: 26px; color: var(--navy); max-width: 480px; }
.cta-inner p { color: var(--ink-soft); margin-top: 8px; max-width: 420px; font-size: 15px; }

/* Footer */

.site-footer {
  padding: 58px 0 26px;
  background: var(--navy-deep);
  color: rgba(246, 244, 239, 0.6);
}

/* Parte principal */

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Logo */

.footer-brand img {
  height: 75px;
  width: auto;
  display: block;
  transform: scale(2.0);
  transform-origin: left center; 
  margin-top: -15px;   
  margin-bottom: 30px; 
  margin-left: -22px;
}

.footer-brand p {
  margin: 0;
  max-width: 230px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(246, 244, 239, 0.45);
}

/* Títulos das informações */

.footer-info h4 {
  margin: 2px 0 18px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Item com ícone */

.footer-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.footer-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  fill: var(--gold-soft);
}

/* Links */

.footer-item a {
  display: inline-block;
  color: rgba(246, 244, 239, 0.88);
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-item a:hover {
  color: var(--gold-soft);
}

/* Texto secundário */

.footer-item span {
  display: block;
  margin-top: 6px;
  color: rgba(246, 244, 239, 0.45);
  font-size: 12.5px;
  line-height: 1.5;
}

/* WhatsApp */

.footer-item .footer-label {
  margin-top: 0;
  margin-bottom: 2px;
  color: rgba(246, 244, 239, 0.42);
  font-size: 12px;
}

/* Parte inferior */

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;

  margin-top: 44px;
  padding-top: 20px;

  border-top: 1px solid rgba(246, 244, 239, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 11.5px;
  line-height: 1.6;
  color: rgba(246, 244, 239, 0.36);
}

.footer-bottom span {
  flex-shrink: 0;
  font-size: 11.5px;
  color: rgba(246, 244, 239, 0.36);
}

.footer-info h4 {
  margin-left: 29px;
}


/* Footer responsivo */

@media (max-width: 860px) {

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

}

@media (max-width: 560px) {

.brand img {
    height: 50px; 
    margin: 0;
    transform: scale(1.8); 
    transform-origin: left center; 
  }

    .footer-brand img {
    height: 52px;
    margin-top: 0; 
    margin-bottom: -5px;
    margin-left: -12px;
  }

  .site-footer {
    padding-bottom: 90px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 32px;
  }

}

/* WhatsApp floating button */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 200;
  background: #25D366; color: #fff; width: 58px; height: 58px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 26px; height: 26px; }

@media (max-width: 860px) {
  .hero-grid, .about-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 38px; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  nav { display: none; }
  .hero { padding: 150px 0 70px; }
}
@media (max-width: 560px) {
  .areas-grid { grid-template-columns: 1fr; }
  .wrap { padding: 0 20px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}

:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }