/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1a2e5e;
  --navy-dark: #0f1e42;
  --gold: #c8a84b;
  --gold-light: #e0c06a;
  --white: #ffffff;
  --off-white: #f8f7f3;
  --gray: #6b7280;
  --gray-light: #f3f4f6;
  --text: #1f2937;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(26,46,94,.12);
  --shadow-lg: 0 8px 40px rgba(26,46,94,.18);
  --transition: .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,168,75,.4); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

.full-width { width: 100%; }

/* ===== SECTION HELPERS ===== */
.section-eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-eyebrow.light { color: var(--gold-light); }

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.section-title.light { color: var(--white); }

.section-sub {
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto 40px;
  text-align: center;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200,168,75,.2);
  box-shadow: 0 2px 16px rgba(26,46,94,.08);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

.logo-link { flex-shrink: 0; }
.logo-img { height: 52px; width: auto; }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: .87rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--transition);
  letter-spacing: .02em;
}
.nav a:hover { color: var(--gold); }

.nav-cta { margin-left: 8px; padding: 10px 20px; font-size: .85rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #243b7a 100%);
  padding-top: 72px;
  overflow: hidden;
}

.hero::before {
  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='%23c8a84b' fill-opacity='0.04'%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");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(200,168,75,.08) 0%, transparent 65%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
  max-width: 800px;
}

.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

.hero h1 .gold { color: var(--gold); }

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 36px;
  letter-spacing: .02em;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-badges {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: .85rem;
}

.badge-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

/* ===== LOGO TEXT FALLBACK ===== */
.logo-text {
  flex-direction: column;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
  line-height: 1;
  gap: 2px;
}
.logo-text span {
  font-size: .65rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: .06em;
}

/* ===== SOBRE ===== */
.sobre {
  padding: 96px 0;
  background: var(--white);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.sobre-text h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--navy);
  margin-bottom: 20px;
}

.sobre-text p {
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.75;
}

.info-cards {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-card {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 18px;
  border-left: 3px solid var(--gold);
  background: var(--off-white);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .9rem;
}

.info-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
}

.sobre-visual {
  display: flex;
  justify-content: center;
}

.sobre-img-wrap {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  max-width: 360px;
}

.sobre-logo {
  margin: 0 auto 28px;
  max-width: 220px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.3));
}

.sobre-servicos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.sobre-servicos span {
  font-size: .72rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--gold);
  background: rgba(200,168,75,.12);
  border: 1px solid rgba(200,168,75,.3);
  border-radius: 20px;
  padding: 4px 12px;
}

.missao-box {
  margin-top: 28px;
  padding: 20px 22px;
  background: var(--off-white);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.missao-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: 8px;
}
.missao-box p {
  margin: 0;
  font-size: .9rem;
  color: var(--gray);
  font-style: italic;
  line-height: 1.7;
}

.sobre-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
  font-style: italic;
  border-top: 1px solid rgba(200,168,75,.3);
  padding-top: 20px;
}

/* ===== ÁREAS ===== */
.areas {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  text-align: center;
}

.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.area-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(200,168,75,.25);
  border-radius: var(--radius);
  padding: 40px 36px;
  text-align: left;
  transition: var(--transition);
}

.area-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(200,168,75,.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}

.area-icon-wrap {
  width: 48px; height: 48px;
  margin-bottom: 18px;
  background: rgba(200,168,75,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.area-icon-wrap svg { width: 100%; height: 100%; }

.area-card--wide {
  grid-column: 1 / -1;
}
.two-col {
  columns: 2;
  column-gap: 24px;
}
@media (max-width: 640px) {
  .two-col { columns: 1; }
}

.area-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
}

.area-card ul li {
  color: rgba(255,255,255,.82);
  font-size: .9rem;
  padding: 6px 0 6px 20px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative;
  line-height: 1.5;
}

.area-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.area-card ul li:last-child { border-bottom: none; }

/* ===== DOCS SECTION ===== */
.docs-section {
  padding: 80px 0;
  background: var(--off-white);
  text-align: center;
}

.docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.doc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow);
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  border-left: 3px solid var(--gold);
  transition: var(--transition);
}
.doc-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.doc-icon { font-size: 1.3rem; flex-shrink: 0; }

@media (max-width: 900px) { .docs-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .docs-grid { grid-template-columns: 1fr; } }

/* ===== EQUIPE ===== */
.equipe {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  text-align: center;
}

.equipe-categorias {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.eq-categoria {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(200,168,75,.2);
  border-radius: var(--radius);
  padding: 24px 22px;
  text-align: left;
}

.eq-cat-title {
  font-size: .85rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(200,168,75,.25);
}

.eq-categoria ul li {
  color: rgba(255,255,255,.82);
  font-size: .85rem;
  padding: 5px 0 5px 14px;
  position: relative;
  line-height: 1.45;
}
.eq-categoria ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

@media (max-width: 900px) { .equipe-categorias { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .equipe-categorias { grid-template-columns: 1fr; } }

/* ===== DIFERENCIAIS ===== */
.diferenciais {
  padding: 96px 0;
  background: var(--off-white);
  text-align: center;
}

.dif-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.dif-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 22px;
  text-align: left;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.dif-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.dif-check {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 800;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.dif-card p {
  font-size: .9rem;
  color: var(--text);
  line-height: 1.55;
  margin: 0;
}

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

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 56px 0;
  background: var(--gold);
}

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

.cta-banner h2 {
  font-size: 1.6rem;
  color: var(--navy-dark);
  margin-bottom: 6px;
}

.cta-banner p {
  color: rgba(15,30,66,.75);
  font-size: .95rem;
}

.btn-navy {
  background: var(--navy-dark);
  color: var(--white);
  border-color: var(--navy-dark);
  flex-shrink: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  padding: 13px 28px;
  border-radius: 6px;
  border: 2px solid var(--navy-dark);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  text-decoration: none;
}
.btn-navy:hover { background: var(--navy); border-color: var(--navy); transform: translateY(-2px); }

/* ===== CONTATO ===== */
.contato {
  padding: 96px 0;
  background: var(--white);
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contato-info h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.contato-info > p {
  color: var(--gray);
  margin-bottom: 32px;
  line-height: 1.75;
}

.contact-items { display: flex; flex-direction: column; gap: 20px; }

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.c-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-item strong {
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold);
}

.contact-item a,
.contact-item span {
  font-size: .92rem;
  color: var(--text);
  line-height: 1.5;
}
.contact-item a:hover { color: var(--gold); }

/* FORM */
.contato-form {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow);
}

.contato-form h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 24px;
  font-weight: 700;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,168,75,.12);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-notice {
  margin-top: 12px;
  font-size: .85rem;
  color: #16a34a;
  font-weight: 600;
  text-align: center;
  min-height: 20px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  padding: 48px 0;
}

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

.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-logo { height: 48px; width: auto; }
.footer-slogan {
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold);
  font-style: italic;
}

.footer-copy {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  line-height: 1.8;
  text-align: center;
}
.footer-areas {
  color: rgba(200,168,75,.6);
  font-size: .75rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}
.footer-contact a {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--gold); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 56px; height: 56px;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.7); }
.whatsapp-float svg { width: 100%; height: 100%; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .sobre-grid,
  .areas-grid,
  .contato-grid { grid-template-columns: 1fr; }

  .sobre-visual { order: -1; }
  .sobre-img-wrap { max-width: 100%; width: 100%; }

  .dif-grid,
  .equipe-grid { grid-template-columns: 1fr 1fr; }

  .cta-inner { flex-direction: column; text-align: center; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-slogan { text-align: center; }
}

@media (max-width: 640px) {
  .nav, .nav-cta { display: none; }
  .nav.open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); padding: 20px 24px 28px; gap: 18px; border-bottom: 2px solid var(--gold); box-shadow: var(--shadow-lg); }
  .nav.open + .nav-cta { display: flex; }
  .hamburger { display: flex; }

  .dif-grid,
  .equipe-grid { grid-template-columns: 1fr; }

  .hero-badges { gap: 20px; }
  .contato-form { padding: 28px 20px; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Garantia de visibilidade caso animação não rode */
.hero-content { opacity: 1; }

.hero-content { animation: fadeUp .6s ease forwards; }
