/* =====================================================
   Juramentadas.com — CSS compartilhado
   Header · Footer · Breadcrumb · Hero · Trust · FAQ ·
   CTA · WhatsApp flutuante · tipografia · botões
   ===================================================== */

:root {
  --azul-profundo: #0a1932;
  --azul-medio: #11295c;
  --azul-claro: #1c3a7a;
  --dourado: #c9a961;
  --dourado-claro: #e0c891;
  --dourado-escuro: #a8893f;
  --verde-italia: #009246;
  --vermelho-italia: #ce2b37;
  --branco: #ffffff;
  --off-white: #fafaf7;
  --cinza-bg: #f5f5f0;
  --cinza-medio: #7a7a7a;
  --cinza-escuro: #3a3a3a;
  --escuro: #0a0a08;
  --verde-sucesso: #2eaa6b;
  --whatsapp: #25d366;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm: 0 2px 8px rgba(10, 25, 50, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 25, 50, 0.10);
  --shadow-lg: 0 16px 48px rgba(10, 25, 50, 0.16);
  --radius: 10px;
  --max-w: 1240px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--cinza-escuro);
  background: var(--branco);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ===== HEADER ===== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(10, 25, 50, 0.08);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; max-width: var(--max-w); margin: 0 auto;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--serif); font-size: 24px; font-weight: 700;
  color: var(--azul-profundo); letter-spacing: 0.5px;
}
.logo-mark {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; display: block;
  box-shadow: 0 4px 14px rgba(10, 25, 50, 0.20);
  border: 2px solid rgba(255, 255, 255, 0.9);
}
.footer .logo-mark { border-color: rgba(201, 169, 97, 0.4); }
.logo .tld { color: var(--dourado-escuro); font-size: 14px; font-weight: 500; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav-link { font-size: 14px; font-weight: 500; color: var(--cinza-escuro); transition: color 0.2s; }
.nav-link:hover { color: var(--azul-medio); }
.nav-cta {
  background: var(--azul-profundo); color: var(--branco);
  padding: 10px 22px; border-radius: var(--radius);
  font-size: 14px; font-weight: 600; transition: all 0.2s;
}
.nav-cta:hover { background: var(--azul-medio); transform: translateY(-1px); }
.menu-toggle { display: none; font-size: 24px; color: var(--azul-profundo); }
@media (max-width: 920px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--branco); flex-direction: column; align-items: stretch;
    padding: 16px 24px; gap: 4px; border-top: 1px solid rgba(10,25,50,0.08);
    box-shadow: var(--shadow-md); }
  .nav.open { display: flex; }
  .nav-link { padding: 14px 0; border-bottom: 1px solid rgba(10,25,50,0.05); }
  .nav-cta { margin-top: 8px; text-align: center; }
  .menu-toggle { display: block; }
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--off-white);
  padding: 14px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(10,25,50,0.05);
}
.breadcrumb a { color: var(--cinza-medio); }
.breadcrumb a:hover { color: var(--azul-medio); }
.breadcrumb .current { color: var(--azul-profundo); font-weight: 600; }
.breadcrumb .sep { margin: 0 8px; color: var(--cinza-medio); }

/* ===== HERO interno (não-home) ===== */
.hero-int {
  background:
    linear-gradient(135deg, rgba(10, 25, 50, 0.94) 0%, rgba(17, 41, 92, 0.90) 100%),
    var(--azul-profundo);
  color: var(--branco);
  padding: 70px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero-int::before {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-int-grid {
  display: grid;
  grid-template-columns: 1.3fr 460px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201, 169, 97, 0.14);
  border: 1px solid rgba(201, 169, 97, 0.4);
  color: var(--dourado-claro);
  padding: 8px 16px; border-radius: 30px;
  font-size: 13px; font-weight: 500; margin-bottom: 24px;
  letter-spacing: 0.3px;
}
.hero-int h1 {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 600; line-height: 1.08;
  margin-bottom: 22px; letter-spacing: -0.5px;
}
.hero-int h1 .gold { color: var(--dourado-claro); font-style: italic; }
.hero-sub {
  font-size: 18px; line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px; max-width: 600px;
}
.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 36px;
  max-width: 540px;
}
.feat { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; }
.feat-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: rgba(201, 169, 97, 0.18);
  color: var(--dourado-claro);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 600px) {
  .hero-cta-row { flex-wrap: nowrap; gap: 10px; }
  .hero-cta-row .btn {
    min-width: 0;
    font-size: 13px;
    white-space: nowrap;
    gap: 6px;
  }
  .hero-cta-row .btn-primary { flex: 1.9; padding: 12px 10px; }
  .hero-cta-row .btn-whatsapp { flex: 1; padding: 12px 10px; }
}

/* ===== BOTÕES ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 30px; border-radius: var(--radius);
  font-size: 15px; font-weight: 600;
  transition: all 0.2s ease; letter-spacing: 0.3px;
}
.btn-primary { background: var(--dourado); color: var(--azul-profundo); }
.btn-primary:hover { background: var(--dourado-claro); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(201, 169, 97, 0.35); }
.btn-whatsapp { background: var(--whatsapp); color: white; }
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--branco); border: 1px solid rgba(255, 255, 255, 0.3); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }

/* ===== FORM CARD (hero direito) ===== */
.quote-card {
  background: var(--branco); border-radius: 16px; padding: 32px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
  color: var(--cinza-escuro);
}
.quote-card h3 {
  font-family: var(--serif); font-size: 26px; font-weight: 700;
  color: var(--azul-profundo); margin-bottom: 6px;
}
.quote-card p.sub { font-size: 14px; color: var(--cinza-medio); margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 12px; }
.form-row.two { grid-template-columns: 1fr 1fr; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 12px; font-weight: 600; color: var(--azul-medio); text-transform: uppercase; letter-spacing: 0.5px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid #e5e5e0; border-radius: 8px;
  font-family: inherit; font-size: 14px;
  color: var(--cinza-escuro); background: var(--off-white);
  transition: border-color 0.2s, background 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--dourado); background: var(--branco);
}
.form-textarea { resize: vertical; min-height: 72px; }
.btn-submit {
  width: 100%; margin-top: 8px; padding: 16px;
  background: var(--azul-profundo); color: var(--branco);
  border-radius: 8px; font-size: 15px; font-weight: 600;
  transition: all 0.2s;
}
.btn-submit:hover { background: var(--azul-medio); transform: translateY(-1px); }
.form-note { font-size: 11px; color: var(--cinza-medio); text-align: center; margin-top: 10px; }

@media (max-width: 920px) {
  .hero-int { padding: 50px 0 70px; }
  .hero-int-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-features { grid-template-columns: 1fr; }
}

/* ===== SEÇÕES GENÉRICAS ===== */
section { padding: 80px 0; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 600;
  color: var(--dourado-escuro); text-transform: uppercase;
  letter-spacing: 2px; margin-bottom: 14px;
}
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 42px); font-weight: 600;
  color: var(--azul-profundo); line-height: 1.15;
  margin-bottom: 14px; letter-spacing: -0.5px;
}
.section-head p { font-size: 17px; color: var(--cinza-medio); line-height: 1.55; }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--off-white);
  padding: 50px 0;
  border-bottom: 1px solid rgba(10, 25, 50, 0.06);
}
.trust-title {
  text-align: center; font-size: 13px; color: var(--cinza-medio);
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 28px; font-weight: 500;
}
.trust-logos {
  display: flex; align-items: center; justify-content: space-around;
  gap: 20px; flex-wrap: wrap;
}
.trust-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; min-width: 100px;
}
.trust-acronym {
  font-family: var(--serif); font-size: 26px; font-weight: 700;
  color: var(--azul-profundo); letter-spacing: 1px;
}
.trust-full {
  font-size: 10px; color: var(--cinza-medio); margin-top: 4px;
  text-transform: uppercase; letter-spacing: 0.5px;
}

/* ===== CARDS GENÉRICOS DE USO ===== */
.use-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.use-card {
  background: var(--off-white); border-radius: 14px;
  padding: 32px 28px; border: 1px solid rgba(10, 25, 50, 0.06);
  transition: all 0.3s ease;
}
.use-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-md);
  border-color: var(--dourado); background: var(--branco);
}
.use-icon {
  width: 50px; height: 50px;
  background: rgba(201, 169, 97, 0.12); color: var(--dourado-escuro);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px;
}
.use-card h4 {
  font-family: var(--serif); font-size: 22px; font-weight: 600;
  color: var(--azul-profundo); margin-bottom: 8px; line-height: 1.2;
}
.use-card p { font-size: 14px; color: var(--cinza-medio); line-height: 1.55; }
.use-card .docs {
  margin-top: 14px; padding-top: 14px;
  border-top: 1px dashed rgba(10, 25, 50, 0.1);
  font-size: 12px; color: var(--dourado-escuro);
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
}
.use-card .docs span { color: var(--cinza-medio); font-weight: 400; text-transform: none; letter-spacing: 0; }
@media (max-width: 920px) { .use-grid { grid-template-columns: 1fr; } }

/* ===== PROCESSO 4 PASSOS ===== */
.process-bg { background: var(--cinza-bg); }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.step {
  background: var(--branco); border-radius: 14px; padding: 32px 26px;
  position: relative; border: 1px solid rgba(10, 25, 50, 0.06);
}
.step-num {
  position: absolute; top: -20px; left: 26px;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--dourado), var(--dourado-escuro));
  color: var(--azul-profundo); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 22px; font-weight: 700;
  box-shadow: 0 8px 20px rgba(201, 169, 97, 0.35);
}
.step h4 {
  font-family: var(--serif); font-size: 22px; font-weight: 600;
  color: var(--azul-profundo); margin: 14px 0 10px;
}
.step p { font-size: 14px; color: var(--cinza-medio); line-height: 1.55; }
@media (max-width: 920px) { .process-steps { grid-template-columns: 1fr; gap: 32px; } }

/* ===== POR QUE NÓS (fundo escuro) ===== */
.why {
  background:
    linear-gradient(135deg, rgba(10, 25, 50, 0.96), rgba(17, 41, 92, 0.92)),
    var(--azul-profundo);
  color: var(--branco);
}
.why .section-head h2 { color: var(--branco); }
.why .section-head p { color: rgba(255,255,255,0.75); }
.why .eyebrow { color: var(--dourado-claro); }
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.why-item { text-align: center; padding: 24px 14px; }
.why-num {
  font-family: var(--serif); font-size: 48px; font-weight: 700;
  color: var(--dourado-claro); line-height: 1; margin-bottom: 8px;
  letter-spacing: -1px;
}
.why-num span { font-size: 24px; vertical-align: top; margin-left: 2px; }
.why-item h4 {
  font-size: 15px; color: var(--branco);
  margin-bottom: 8px; font-weight: 600;
}
.why-item p { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.55; }
@media (max-width: 920px) { .why-grid { grid-template-columns: 1fr 1fr; gap: 16px; } }

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--off-white); border-radius: 10px;
  margin-bottom: 12px; border: 1px solid rgba(10, 25, 50, 0.06);
  overflow: hidden; transition: all 0.2s;
}
.faq-item[open] {
  background: var(--branco); box-shadow: var(--shadow-md);
  border-color: var(--dourado);
}
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 28px;
  font-size: 16px; font-weight: 600; color: var(--azul-profundo);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 24px; font-weight: 300;
  color: var(--dourado-escuro); transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-answer {
  padding: 0 28px 24px; font-size: 15px;
  color: var(--cinza-medio); line-height: 1.65;
}

/* ===== CTA FINAL ===== */
.cta-final {
  background:
    linear-gradient(135deg, rgba(10, 25, 50, 0.94), rgba(17, 41, 92, 0.92)),
    var(--azul-profundo);
  color: var(--branco); text-align: center;
  padding: 90px 0; position: relative; overflow: hidden;
}
.cta-final::before {
  content: ''; position: absolute; top: -200px; left: 50%;
  width: 800px; height: 800px; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(201, 169, 97, 0.12), transparent 60%);
  pointer-events: none;
}
.cta-final-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.cta-final h2 {
  font-family: var(--serif); font-size: clamp(30px, 5vw, 46px);
  font-weight: 600; line-height: 1.15;
  margin-bottom: 16px; letter-spacing: -0.5px;
}
.cta-final p { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 32px; }
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
  background: #060e1f; color: rgba(255,255,255,0.7);
  padding: 70px 0 30px; font-size: 14px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.6fr;
  gap: 40px; margin-bottom: 50px;
}
.addr-line { white-space: nowrap; }
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}
.footer-brand .logo { color: var(--branco); margin-bottom: 18px; }
.footer-brand p { font-size: 14px; line-height: 1.6; max-width: 320px; }
.footer h5 {
  font-family: var(--serif); font-size: 18px;
  color: var(--branco); margin-bottom: 18px; font-weight: 600;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { font-size: 14px; transition: color 0.2s; }
.footer ul li a:hover { color: var(--dourado-claro); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact > a, .footer-contact > span { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; line-height: 1.5; }
.footer-contact > a > span:not(.icon),
.footer-contact > span > span:not(.icon) { flex: 1; min-width: 0; word-break: normal; overflow-wrap: break-word; }
.footer-contact .hours-block,
.footer-contact .addr-block {
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  flex: 1 !important;
  min-width: 0 !important;
  width: 100% !important;
}
.footer-contact .hours-block > span,
.footer-contact .addr-block > span {
  display: block !important;
  white-space: nowrap !important;
  width: auto !important;
}
.footer-contact .icon { color: var(--dourado-claro); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  font-size: 12px; color: rgba(255,255,255,0.5);
}
.footer-dev {
  text-align: center;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.3px;
}
.footer-dev a {
  color: var(--dourado-claro);
  font-weight: 700;
  transition: color 0.2s;
}
.footer-dev a:hover { color: var(--dourado); }
/* breakpoint do footer agora controlado acima */

/* ===== WHATSAPP FLUTUANTE ===== */
.wa-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: var(--whatsapp); color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  z-index: 99; transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.08); }
