/* ─── GEOSTRAT · SHARED STYLES ─────────────────────────── */

:root {
  --orange:      #E8610A;
  --orange-hover:#FF7A1F;
  --orange-soft: #F5B78E;
  --beige-light: #F5EEE1;
  --beige-mid:   #EBDFC9;
  --beige-dark:  #E0D1B3;
  --beige-border:#C9B896;
  --text:        #2A1F15;
  --text-sec:    #6B5D4F;
  --text-muted:  #9A8B7A;
  --earth:       #3D2F21;
  --green:       #2E7D32;
  --red:         #C62828;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--beige-light);
  color: var(--text);
  line-height: 1.6;
}

/* ─── NAV ────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(245,238,225,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--beige-border);
  padding: 0 4%;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
nav .nav-brand { display: flex; align-items: center; }
nav img { height: 38px; }
nav ul { list-style: none; display: flex; gap: 24px; align-items: center; }
nav ul li a {
  font-family: 'Barlow', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; color: var(--text-sec);
  transition: color 0.2s;
  white-space: nowrap;
}
nav ul li a:hover, nav ul li a.active { color: var(--orange); }
.nav-cta {
  background: var(--orange); color: #fff !important;
  padding: 9px 18px; border-radius: 4px;
  transition: background 0.2s !important;
  display: inline-flex; align-items: center; gap: 8px;
}
.nav-cta:hover { background: var(--orange-hover) !important; color: #fff !important; }

/* Mobile menu */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle svg { width: 24px; height: 24px; color: var(--earth); }

/* ─── BUTTONS ────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange); color: #fff;
  font-family: 'Barlow', sans-serif; font-weight: 700;
  font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 15px 28px; border-radius: 4px; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--orange-hover); transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: rgba(255,255,255,0.8);
  font-family: 'Barlow', sans-serif; font-weight: 600;
  font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 15px 28px; border-radius: 4px; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); }
.btn-secondary-dark {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--earth);
  font-family: 'Barlow', sans-serif; font-weight: 700;
  font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 14px 28px; border-radius: 4px; text-decoration: none;
  border: 1.5px solid var(--earth);
  transition: all 0.2s;
}
.btn-secondary-dark:hover { background: var(--earth); color: #fff; }

/* ─── PAGE HERO (inner pages) ────────── */
.page-hero {
  background: var(--earth);
  padding: 140px 5% 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 30%, rgba(232,97,10,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1100px; margin: 0 auto;
  position: relative; z-index: 1;
}
.page-hero-breadcrumb {
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--orange-soft); margin-bottom: 18px;
  font-weight: 600;
}
.page-hero-breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; margin-right: 8px; }
.page-hero-breadcrumb a:hover { color: var(--orange); }
.page-hero-breadcrumb span { margin: 0 8px; color: rgba(255,255,255,0.3); }
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: clamp(38px, 4.5vw, 60px);
  line-height: 0.98; text-transform: uppercase;
  color: #fff; margin-bottom: 22px;
  text-wrap: balance; max-width: 800px;
}
.page-hero h1 span { color: var(--orange); }
.page-hero p.lead {
  font-size: 18px; color: rgba(255,255,255,0.7);
  line-height: 1.7; max-width: 680px; margin-bottom: 32px;
  text-wrap: pretty;
}
.page-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── SECTION BASE ───────────────────── */
section { padding: 88px 5%; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before { content: ''; display: block; width: 20px; height: 1px; background: var(--orange); }
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 3.6vw, 46px); font-weight: 800;
  text-transform: uppercase; line-height: 1.05; color: var(--earth);
  margin-bottom: 16px; text-wrap: balance;
}
.section-sub {
  font-size: 17px; color: var(--text-sec); line-height: 1.7;
  max-width: 640px; text-wrap: pretty;
}

/* ─── CONTENT BLOCKS ──────────────────── */
.content-block {
  background: var(--beige-light); padding: 88px 5%;
}
.content-block.dark { background: var(--earth); color: #fff; }
.content-block.dark .section-title { color: #fff; }
.content-block.dark .section-sub { color: rgba(255,255,255,0.65); }
.content-block.dark .section-label { color: var(--orange-soft); }
.content-block.dark .section-label::before { background: var(--orange-soft); }
.content-block.beige { background: var(--beige-mid); }

.prose {
  max-width: 760px;
}
.prose p {
  font-size: 17px; color: var(--text-sec); line-height: 1.8;
  margin-bottom: 22px; text-wrap: pretty;
}
.prose p strong { color: var(--earth); font-weight: 600; }
.prose ul {
  list-style: none; padding: 0; margin: 0 0 24px 0;
}
.prose ul li {
  font-size: 16px; color: var(--text-sec); line-height: 1.7;
  padding: 8px 0 8px 28px; position: relative;
}
.prose ul li::before {
  content: ''; position: absolute; left: 0; top: 18px;
  width: 12px; height: 2px; background: var(--orange);
}

/* ─── CARD GRIDS ──────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.card {
  background: #fff;
  border: 1px solid var(--beige-border);
  border-radius: 10px; padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(42,31,21,0.08); }
.card-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  color: var(--orange); text-transform: uppercase; margin-bottom: 16px;
}
.card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 800; text-transform: uppercase;
  color: var(--earth); margin-bottom: 12px; line-height: 1.1;
}
.card p { font-size: 14px; color: var(--text-sec); line-height: 1.65; }
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--orange); text-decoration: none;
  transition: gap 0.2s;
}
.card-link:hover { gap: 10px; }

/* Dark variant */
.dark .card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}
.dark .card h3 { color: #fff; }
.dark .card p { color: rgba(255,255,255,0.6); }

/* ─── INLINE CTA STRIP ────────────────── */
.cta-strip {
  background: var(--orange); padding: 32px 5%;
  display: flex; align-items: center; justify-content: center; gap: 24px;
  flex-wrap: wrap; text-align: center;
}
.cta-strip h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px; font-weight: 800; text-transform: uppercase;
  color: #fff; line-height: 1.1;
}
.cta-strip-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--orange);
  font-family: 'Barlow', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 13px 26px; border-radius: 4px; text-decoration: none;
  transition: all 0.2s;
}
.cta-strip-btn:hover { background: var(--earth); color: #fff; }

/* ─── BIG CTA ─────────────────────────── */
.cta-section {
  background: var(--orange);
  padding: 80px 5%;
  text-align: center;
}
.cta-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 4.5vw, 56px); font-weight: 900;
  text-transform: uppercase; color: #fff;
  line-height: 1; margin-bottom: 20px; text-wrap: balance;
}
.cta-section p {
  font-size: 17px; color: rgba(255,255,255,0.85);
  margin-bottom: 36px; max-width: 580px; margin-left: auto; margin-right: auto;
  text-wrap: pretty;
}
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--orange);
  font-family: 'Barlow', sans-serif; font-weight: 700;
  font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 16px 32px; border-radius: 4px; text-decoration: none;
  transition: all 0.2s;
}
.btn-white:hover { background: var(--earth); color: #fff; }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: #fff;
  font-family: 'Barlow', sans-serif; font-weight: 700;
  font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 16px 32px; border-radius: 4px; text-decoration: none;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.2s;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ─── FAQ ─────────────────────────────── */
.faq { background: var(--beige-light); }
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 40px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--beige-border);
  border-radius: 8px; overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 22px 26px; cursor: pointer;
  font-family: 'Barlow', sans-serif; font-weight: 600; font-size: 16px;
  color: var(--earth);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; transition: color 0.2s;
}
.faq-q:hover { color: var(--orange); }
.faq-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--beige-mid); display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: var(--orange);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--orange); color: #fff; }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.3s, padding 0.3s;
  padding: 0 26px;
  font-size: 15px; color: var(--text-sec); line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 26px 22px; }

/* ─── AUTHORITY BLOCK ─────────────────── */
.authority {
  background: var(--beige-mid);
  border-top: 1px solid var(--beige-border);
  border-bottom: 1px solid var(--beige-border);
  padding: 56px 5%;
}
.authority-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 2fr; gap: 56px; align-items: center;
}
.authority-photo {
  width: 100%; aspect-ratio: 1;
  background: linear-gradient(135deg, var(--earth) 0%, #5a4530 100%);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.3);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; letter-spacing: 0.15em; text-transform: uppercase;
  position: relative; overflow: hidden;
}
.authority-photo::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(232,97,10,0.2) 0%, transparent 60%);
}
.authority-photo span { position: relative; z-index: 1; text-align: center; padding: 20px; }
.authority-content .section-label { color: var(--orange); }
.authority-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 3vw, 38px); font-weight: 800;
  text-transform: uppercase; color: var(--earth); line-height: 1.1;
  margin-bottom: 18px;
}
.authority-content p {
  font-size: 16px; color: var(--text-sec); line-height: 1.75; margin-bottom: 18px;
}
.authority-creds {
  display: flex; gap: 28px; flex-wrap: wrap; margin-top: 12px;
}
.authority-cred {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--earth);
  padding: 8px 14px; background: #fff; border-radius: 4px;
  border: 1px solid var(--beige-border);
}

/* ─── CONTACT FORM ────────────────────── */
.contato-inner {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start;
}
.contato-info h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(34px, 4vw, 48px); font-weight: 800;
  text-transform: uppercase; color: var(--earth); line-height: 1;
  margin-bottom: 20px;
}
.contato-info h2 span { color: var(--orange); }
.contato-info p.intro { font-size: 16px; color: var(--text-sec); line-height: 1.7; margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 18px; }
.contact-item {
  display: flex; align-items: center; gap: 14px;
  font-size: 14px; color: var(--text-sec);
}
.contact-icon {
  width: 44px; height: 44px; border-radius: 8px;
  background: var(--beige-mid); border: 1px solid var(--beige-border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 18px;
}
.contact-item strong { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--earth); margin-bottom: 3px; }
.form-card {
  background: #fff;
  border: 1px solid var(--beige-border);
  border-radius: 12px; padding: 36px;
  box-shadow: 0 8px 32px rgba(42,31,21,0.04);
}
.form-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px; font-weight: 800; text-transform: uppercase;
  color: var(--earth); margin-bottom: 6px;
}
.form-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-sec); margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--beige-dark); border-radius: 6px;
  background: var(--beige-light);
  font-family: 'Barlow', sans-serif; font-size: 14px; color: var(--text);
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); background: #fff; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.form-submit {
  width: 100%;
  background: var(--orange); color: #fff;
  font-family: 'Barlow', sans-serif; font-weight: 700;
  font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 16px; border-radius: 6px; border: none; cursor: pointer;
  transition: background 0.2s; margin-top: 6px;
}
.form-submit:hover { background: var(--orange-hover); }
.form-note {
  text-align: center; font-size: 12px; color: var(--text-muted);
  margin-top: 14px; line-height: 1.5;
}

/* ─── FOOTER ──────────────────────────── */
footer { background: var(--earth); padding: 56px 5% 32px; }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand-name {
  font-family: 'Barlow Condensed',sans-serif;
  font-size: 28px; font-weight: 900; text-transform: uppercase;
  color: var(--orange); letter-spacing: 0.02em; line-height: 1;
}
.footer-brand-name span {
  color: rgba(255,255,255,0.6); font-size: 13px; font-weight: 600;
  letter-spacing: 0.2em; display: block; margin-top: 4px;
}
.footer-tagline {
  font-size: 13px; color: rgba(255,255,255,0.45);
  margin-top: 14px; line-height: 1.6; max-width: 280px;
}
.footer-links h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.15em; color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links ul li a {
  font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none;
  transition: color 0.2s;
}
.footer-links ul li a:hover { color: var(--orange); }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-crea {
  font-size: 12px; color: rgba(255,255,255,0.3);
  font-weight: 600; letter-spacing: 0.1em;
}

/* ─── SOCIAL FLOAT STACK ─────────────── */
.social-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  display: flex; flex-direction: column; gap: 12px;
}
.wa-float {
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.ig-float {
  width: 56px; height: 56px; border-radius: 50%;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(214,36,159,0.35);
  text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
}
.ig-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(214,36,159,0.5); }
.li-float {
  width: 56px; height: 56px; border-radius: 50%;
  background: #0A66C2; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(10,102,194,0.35);
  text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
}
.li-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(10,102,194,0.5); }

/* ─── RESPONSIVE ──────────────────────── */
@media (max-width: 1024px) {
  nav ul { display: none; }
  .menu-toggle { display: block; }
  nav ul.mobile-open {
    display: flex; position: absolute; top: 68px; left: 0; right: 0;
    background: var(--beige-light); flex-direction: column; padding: 20px 5%;
    gap: 12px; border-bottom: 1px solid var(--beige-border);
    box-shadow: 0 10px 24px rgba(42,31,21,0.08);
  }
  nav ul.mobile-open li { width: 100%; }
  nav ul.mobile-open li a { display: block; padding: 8px 0; }
}
@media (max-width: 900px) {
  .contato-inner, .authority-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row, .form-row-3 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  section, .content-block, .page-hero { padding-left: 6%; padding-right: 6%; }
}
@media (max-width: 600px) {
  .card-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .page-hero { padding-top: 110px; }
}
