/* -------------------------------------------------------------
   BORGES & ARCHANJO ADVOCACIA — LANDING PAGE
   Identidade: Navy + Dourado, tipografia serifada (autoridade)
   ------------------------------------------------------------- */

:root {
  --navy:        #14263F;   /* primária escura */
  --navy-deep:   #0C1A2C;   /* fundo hero/footer */
  --navy-soft:   #1E3555;   /* cartões sobre navy */
  --gold:        #C6A15B;   /* dourado principal */
  --gold-dark:   #A6813C;   /* dourado hover */
  --gold-soft:   #E7D9BC;   /* dourado claro */
  --cream:       #F7F3EC;   /* fundo claro */
  --cream-2:     #FBF9F4;
  --white:       #ffffff;

  --text-dark:   #1B2A3A;
  --text-body:   #46586A;
  --text-muted:  #7C8A99;
  --text-light:  #ffffff;

  --font-heading: 'Lora', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --transition-smooth: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast:   all 0.22s ease;

  --shadow-soft:  0 10px 34px rgba(20, 38, 63, 0.07);
  --shadow-hover: 0 22px 48px rgba(20, 38, 63, 0.14);
  --shadow-gold:  0 14px 30px rgba(198, 161, 91, 0.28);

  --radius-sm: 3px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --maxw: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.18;
  color: var(--text-dark);
}

a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
img { max-width: 100%; height: auto; display: block; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3.5px;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 1.5px;
  background: var(--gold);
}
.eyebrow-light { color: var(--gold-soft); }
.eyebrow-light::before { background: var(--gold); }

/* Section head shared */
.section-head { text-align: center; margin-bottom: 58px; }
.section-head .eyebrow { justify-content: center; }
.section-head h2 {
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin-bottom: 18px;
}
.section-intro {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* -------------------------------------------------------------
   BUTTONS
   ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.6px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: var(--transition-smooth);
}
.btn svg { width: 18px; height: 18px; }

.btn-primary {
  background-color: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background-color: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-whatsapp { background-color: var(--gold); }

.btn-nav-whatsapp {
  padding: 10px 20px;
  font-size: 12.5px;
  letter-spacing: 0.4px;
  background-color: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}
.btn-nav-whatsapp:hover {
  background-color: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
}

/* -------------------------------------------------------------
   HEADER + LOGO (wordmark)
   ------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 22px 0;
  transition: var(--transition-smooth);
}
.site-header.scrolled {
  background-color: rgba(12, 26, 44, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  box-shadow: 0 6px 30px rgba(0,0,0,0.25);
}
.header-container {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}

.logo, .footer-logo { display: inline-flex; align-items: center; }
/* Logo é tinta escura com fundo transparente — invertida para branco
   sobre o header/rodapé navy. */
.logo-img {
  height: 58px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: var(--transition-smooth);
}
.site-header.scrolled .logo-img { height: 48px; }
.footer-logo-img {
  height: 74px;
  width: auto;
  filter: brightness(0) invert(1);
}

.main-nav ul { display: flex; align-items: center; list-style: none; gap: 30px; }
.main-nav a {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: rgba(255,255,255,0.85);
  position: relative;
  padding: 6px 0;
}
.main-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.main-nav a:not(.btn):hover { color: var(--white); }
.main-nav a:not(.btn):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta a::after { display: none; }

.mobile-nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer; z-index: 1001;
}
.mobile-nav-toggle span {
  display: block; width: 26px; height: 2px;
  background-color: var(--gold);
  margin: 6px 0;
  transition: var(--transition-smooth);
}

/* -------------------------------------------------------------
   HERO
   ------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(150deg, rgba(20, 42, 68, 0.88) 0%, rgba(12, 26, 44, 0.93) 100%),
    var(--navy-deep) url("images/hero.jpg") center center / cover no-repeat;
  overflow: hidden;
  padding: 140px 20px 90px;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(198,161,91,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198,161,91,0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 78%);
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  top: -20%; right: -10%;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(198,161,91,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  text-align: center;
  animation: heroFade 1s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes heroFade { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 24px;
  padding: 7px 16px;
  border: 1px solid rgba(198,161,91,0.35);
  border-radius: 40px;
}
.hero-heading {
  font-size: 58px;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 22px;
}
.hero-subtext {
  font-size: 19px;
  color: rgba(255,255,255,0.82);
  max-width: 700px;
  margin: 0 auto 38px;
  line-height: 1.65;
}
.hero-subtext strong { color: var(--gold-soft); font-weight: 600; }
.hero-cta-group {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 46px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14.5px;
  color: rgba(255,255,255,0.72);
}
.hero-trust strong { color: var(--white); font-weight: 600; }
.hero-trust-rating { display: inline-flex; align-items: center; gap: 8px; }
.hero-stars { color: var(--gold); letter-spacing: 1px; }
.hero-trust-divider { width: 1px; height: 16px; background: rgba(255,255,255,0.2); }

/* -------------------------------------------------------------
   SOBRE / ABOUT
   ------------------------------------------------------------- */
.about-section { background: var(--cream); padding: 110px 0; }
.about-container { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
.about-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 72px; align-items: center; }
.about-text h2 { font-size: 38px; margin-bottom: 24px; letter-spacing: -0.3px; }
.about-text p { font-size: 16px; color: var(--text-body); line-height: 1.8; margin-bottom: 20px; }
.about-text strong { color: var(--text-dark); font-weight: 600; }
.about-text .btn { margin-top: 12px; }

.about-stats { display: flex; flex-direction: column; gap: 20px; }
.stat-item {
  background: var(--white);
  padding: 28px 32px;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}
.stat-item:hover { transform: translateX(6px); box-shadow: var(--shadow-hover); }
.stat-number {
  display: flex; align-items: baseline; gap: 4px;
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-star { color: var(--gold); font-size: 26px; }
.stat-label {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* -------------------------------------------------------------
   ÁREAS DE ATUAÇÃO
   ------------------------------------------------------------- */
.areas-section { background: var(--white); padding: 110px 0; }
.areas-container { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
.areas-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.area-card {
  display: flex;
  flex-direction: column;
  background: var(--cream-2);
  border: 1px solid rgba(20,38,63,0.06);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  transition: var(--transition-smooth);
}
.area-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(198,161,91,0.4);
  background: var(--white);
}
.area-card p { margin-bottom: 0; }
.area-card-featured {
  background: var(--white);
  border-color: rgba(198,161,91,0.4);
}
.area-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 11px 16px;
  background: #25D366;
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
  align-self: flex-start;
  transition: var(--transition-fast);
}
.area-card-cta svg { width: 16px; height: 16px; }
.area-card-cta:hover { background: #1da851; color: var(--white); transform: translateY(-2px); }
.area-card-icon {
  width: 58px; height: 58px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(198,161,91,0.12);
  color: var(--gold-dark);
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}
.area-card:hover .area-card-icon { background: var(--gold); color: var(--white); }
.area-card-icon svg { width: 28px; height: 28px; }
.area-card h3 { font-size: 21px; margin-bottom: 12px; }
.area-card p { font-size: 15px; color: var(--text-body); line-height: 1.65; }

/* -------------------------------------------------------------
   COMO FUNCIONA / STEPS
   ------------------------------------------------------------- */
.steps-section { background: var(--cream); padding: 110px 0; }
.steps-container { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  border-top: 3px solid transparent;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}
.step-item:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-top-color: var(--gold); }
.step-number {
  font-family: var(--font-heading);
  font-size: 42px; font-weight: 700;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}
.step-item h3 { font-size: 19px; margin-bottom: 12px; }
.step-item p { font-size: 14.5px; color: var(--text-body); line-height: 1.65; }

/* -------------------------------------------------------------
   COMPARATIVO
   ------------------------------------------------------------- */
.compare-section {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: 110px 0;
  color: var(--white);
}
.compare-container { max-width: 1000px; margin: 0 auto; padding: 0 40px; }
.compare-section .section-head h2 { color: var(--white); }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.compare-col {
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}
.compare-others {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
}
.compare-us {
  position: relative;
  background: var(--white);
  color: var(--text-dark);
  box-shadow: var(--shadow-hover);
}
.compare-badge {
  position: absolute;
  top: -13px; left: 36px;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--font-body);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.5px;
  padding: 6px 16px;
  border-radius: 40px;
}
.compare-col h3 {
  font-size: 22px;
  margin-bottom: 22px;
  color: inherit;
}
.compare-others h3 { color: rgba(255,255,255,0.75); }
.compare-col ul { list-style: none; display: flex; flex-direction: column; gap: 15px; }
.compare-col li {
  position: relative;
  padding-left: 32px;
  font-size: 15px;
  line-height: 1.55;
}
.compare-others li { color: rgba(255,255,255,0.7); }
.compare-others li::before {
  content: '✕';
  position: absolute; left: 0; top: 0;
  color: #c96b6b;
  font-weight: 700;
}
.compare-us li { color: var(--text-body); }
.compare-us li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  color: var(--gold-dark);
  font-weight: 700;
}

/* -------------------------------------------------------------
   DEPOIMENTOS
   ------------------------------------------------------------- */
.testimonials-section { background: var(--white); padding: 110px 0; }
.testimonials-container { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testimonial-card {
  background: var(--cream-2);
  border: 1px solid rgba(20,38,63,0.06);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 18px;
  transition: var(--transition-smooth);
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.testimonial-stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }
.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
  flex: 1;
  font-family: var(--font-heading);
  font-weight: 400;
}
.testimonial-card footer {
  display: flex; flex-direction: column; gap: 2px;
  border-top: 1px solid rgba(20,38,63,0.08);
  padding-top: 16px;
}
.testimonial-name { font-size: 14px; font-weight: 600; color: var(--text-dark); font-family: var(--font-body); }
.testimonial-role { font-size: 13px; color: var(--text-muted); }

/* -------------------------------------------------------------
   FAQ
   ------------------------------------------------------------- */
.faq-section { background: var(--cream); padding: 110px 0; }
.faq-container { max-width: 800px; margin: 0 auto; padding: 0 40px; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid rgba(20,38,63,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}
.faq-item.open { border-color: rgba(198,161,91,0.5); box-shadow: var(--shadow-soft); }
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 26px;
  background: transparent; border: none; cursor: pointer; text-align: left;
  font-family: var(--font-heading);
  font-size: 18px; font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition-fast);
}
.faq-question:hover { color: var(--gold-dark); }
.faq-icon { position: relative; width: 16px; height: 16px; min-width: 16px; }
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: var(--gold-dark); transition: var(--transition-fast);
}
.faq-icon::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq-icon::after  { top: 0; left: 7px; width: 2px; height: 16px; }
.faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s cubic-bezier(0.16,1,0.3,1); }
.faq-answer p { padding: 0 26px 24px; font-size: 15.5px; color: var(--text-body); line-height: 1.75; }

/* -------------------------------------------------------------
   CONTATO
   ------------------------------------------------------------- */
.contact-section { background: var(--white); padding: 110px 0; }
.contact-container { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: 72px; align-items: start; }
.contact-info h2 { font-size: 38px; margin-bottom: 18px; }
.contact-info > p { font-size: 16px; color: var(--text-body); line-height: 1.7; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail-item { display: flex; align-items: center; gap: 15px; }
.contact-detail-item svg {
  width: 22px; height: 22px; min-width: 22px; color: var(--gold-dark);
}
.contact-detail-item a, .contact-detail-text {
  font-size: 15px; color: var(--text-dark); line-height: 1.5;
}
.contact-detail-item a:hover { color: var(--gold-dark); }

.contact-map {
  display: block;
  margin-top: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(20,38,63,0.1);
  box-shadow: var(--shadow-soft);
  line-height: 0;
  transition: var(--transition-smooth);
}
.contact-map:hover { box-shadow: var(--shadow-hover); }
.contact-map iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
  filter: grayscale(0.25);
  transition: filter 0.3s ease;
}
.contact-map:hover iframe { filter: grayscale(0); }
.contact-map-link {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.3px;
}
.contact-map-link:hover { color: var(--navy); letter-spacing: 0.6px; }

.contact-form-wrapper {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 46px 42px;
  border: 1px solid rgba(20,38,63,0.05);
}
.contact-form { display: flex; flex-direction: column; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 600; letter-spacing: 0.3px; color: var(--text-dark);
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 14px 16px;
  background: var(--white);
  border: 1px solid rgba(20,38,63,0.15);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px; color: var(--text-dark);
  transition: var(--transition-fast); outline: none; appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198,161,91,0.14);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23A6813C' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 40px; cursor: pointer;
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 16px; margin-top: 4px; }
.form-note { font-size: 12.5px; color: var(--text-muted); line-height: 1.5; }
.form-counter {
  align-self: flex-end;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
  transition: var(--transition-fast);
}
.form-counter.near-limit { color: #c0392b; font-weight: 600; }
.h-captcha { margin-top: 4px; }
.form-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.45;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  margin-top: -4px;
  animation: statusIn 0.35s cubic-bezier(0.16,1,0.3,1) both;
}
.form-status:empty { display: none; }
.form-status::before {
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
}
.form-status.success {
  color: #1e824c;
  background: rgba(30,130,76,0.1);
  border: 1px solid rgba(30,130,76,0.25);
}
.form-status.success::before { content: '✓'; }
.form-status.error {
  color: #c0392b;
  background: rgba(192,57,43,0.08);
  border: 1px solid rgba(192,57,43,0.25);
}
.form-status.error::before { content: '!'; font-weight: 800; }
@keyframes statusIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* -------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------- */
.site-footer { background: var(--navy-deep); color: var(--white); padding: 80px 0 36px; font-size: 14px; }
.footer-container {
  max-width: var(--maxw); margin: 0 auto 56px;
  display: grid; grid-template-columns: 1.4fr 1fr 0.9fr; gap: 56px; padding: 0 40px;
}
.footer-logo { margin-bottom: 22px; }
.footer-col-brand p { color: rgba(255,255,255,0.6); line-height: 1.8; max-width: 340px; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  transition: var(--transition-fast);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }

.footer-col-title {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--white); margin-bottom: 24px; position: relative; padding-bottom: 10px; display: inline-block;
}
.footer-col-title::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 28px; height: 2px; background: var(--gold);
}
.footer-col-address p { color: rgba(255,255,255,0.7); line-height: 1.8; }
.footer-col-address p + p { margin-top: 14px; }
.footer-col-address a { color: var(--white); }
.footer-col-address a:hover { color: var(--gold); }

.footer-links-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links-list a { color: rgba(255,255,255,0.7); display: inline-flex; align-items: center; }
.footer-links-list a::before {
  content: '›'; font-size: 18px; margin-right: 8px; opacity: 0;
  transform: translateX(-5px); transition: var(--transition-fast); color: var(--gold);
}
.footer-links-list a:hover { color: var(--white); padding-left: 5px; }
.footer-links-list a:hover::before { opacity: 1; transform: translateX(0); }

.footer-bottom {
  max-width: var(--maxw); margin: 0 auto; padding: 28px 40px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 18px; color: rgba(255,255,255,0.45); font-size: 12px;
}
.footer-bottom-left { display: flex; flex-direction: column; gap: 8px; max-width: 680px; }
.footer-disclaimer { font-size: 11px; line-height: 1.6; color: rgba(255,255,255,0.32); }
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--white); }
.incore-logo { height: 18px; width: auto; vertical-align: middle; margin: 0 2px; opacity: 0.75; display: inline; transition: opacity 0.2s ease; }
.incore-logo:hover { opacity: 1; }

/* -------------------------------------------------------------
   WHATSAPP FLOAT
   ------------------------------------------------------------- */
.whatsapp-widget {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.whatsapp-float {
  width: 58px; height: 58px;
  background: #25D366;
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(37,211,102,0.42);
  transition: var(--transition-smooth);
  animation: waPulse 2.6s infinite;
}
.whatsapp-float:hover { transform: scale(1.06); color: var(--white); }
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-float .wa-icon-close { display: none; width: 26px; height: 26px; }
.whatsapp-widget.open .whatsapp-float { animation: none; background: var(--navy); }
.whatsapp-widget.open .wa-icon-chat { display: none; }
.whatsapp-widget.open .wa-icon-close { display: block; }

.whatsapp-menu {
  width: 290px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 20px 54px rgba(12,26,44,0.28);
  overflow: hidden;
  transform-origin: bottom right;
  animation: waMenuIn 0.28s cubic-bezier(0.16,1,0.3,1);
}
.whatsapp-menu[hidden] { display: none; }
.whatsapp-menu-header {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 15px 18px;
}
.whatsapp-menu-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 18px;
  border-top: 1px solid rgba(20,38,63,0.07);
  transition: var(--transition-fast);
}
.whatsapp-menu-item:hover { background: var(--cream); }
.whatsapp-menu-item .wa-ic {
  width: 40px; height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.whatsapp-menu-item .wa-ic svg { width: 21px; height: 21px; }
.whatsapp-menu-item .wa-txt strong {
  display: block;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}
.whatsapp-menu-item .wa-txt span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.35;
  margin-top: 2px;
}
@keyframes waMenuIn { from { opacity: 0; transform: translateY(12px) scale(0.94); } to { opacity: 1; transform: none; } }
@keyframes waPulse {
  0%   { box-shadow: 0 8px 24px rgba(37,211,102,0.42), 0 0 0 0 rgba(37,211,102,0.45); }
  70%  { box-shadow: 0 8px 24px rgba(37,211,102,0.42), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 24px rgba(37,211,102,0.42), 0 0 0 0 rgba(37,211,102,0); }
}

/* -------------------------------------------------------------
   PÁGINA 404
   ------------------------------------------------------------- */
.error-page {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
  background:
    radial-gradient(120% 120% at 80% 0%, rgba(30, 53, 85, 0.8) 0%, transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  overflow: hidden;
}
.error-page::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(198,161,91,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198,161,91,0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 78%);
  pointer-events: none;
}
.error-overlay {
  position: absolute;
  top: -20%; right: -10%;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(198,161,91,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.error-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  animation: heroFade 1s cubic-bezier(0.16,1,0.3,1) both;
}
.error-logo { display: inline-flex; margin-bottom: 44px; }
.error-code {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 130px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
  letter-spacing: 4px;
  margin-bottom: 8px;
}
.error-title {
  font-size: 34px;
  color: var(--white);
  margin-bottom: 18px;
}
.error-text {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 36px;
}
.error-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.error-links {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
}
.error-links a { color: rgba(255,255,255,0.7); }
.error-links a:hover { color: var(--gold); }
.error-links span { color: rgba(255,255,255,0.3); }

@media (max-width: 575px) {
  .error-code { font-size: 92px; }
  .error-title { font-size: 26px; }
  .error-text { font-size: 15.5px; }
  .error-cta-group .btn { width: 100%; }
  .error-logo { margin-bottom: 32px; }
}

/* -------------------------------------------------------------
   PÁGINA /bio (link na bio do Instagram)
   ------------------------------------------------------------- */
.bio-body {
  min-height: 100vh;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(30, 53, 85, 0.85) 0%, transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
}
.bio {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 54px 20px 48px;
}
.bio-card {
  width: 100%;
  max-width: 440px;
  text-align: center;
  animation: heroFade 0.9s cubic-bezier(0.16,1,0.3,1) both;
}
.bio-logo {
  height: 96px;
  width: auto;
  margin: 0 auto 22px;
  filter: brightness(0) invert(1);
}
.bio-name {
  font-size: 26px;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}
.bio-tagline {
  font-size: 14.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  max-width: 380px;
  margin: 0 auto 32px;
}
.bio-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bio-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  text-align: left;
  transition: var(--transition-smooth);
}
.bio-link:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.bio-link-primary {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.bio-link-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.bio-ic {
  width: 42px; height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.bio-ic svg { width: 22px; height: 22px; }
.bio-link-primary .bio-ic { background: rgba(12,26,44,0.15); color: var(--navy-deep); }
.bio-ic-wa { background: #25D366; color: var(--white); }
.bio-ic-star { background: rgba(198,161,91,0.22); color: var(--gold-soft); }
.bio-ic-ig { background: #E1306C; color: var(--white); }
.bio-txt { flex: 1; min-width: 0; }
.bio-txt strong {
  display: block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}
.bio-txt span {
  display: block;
  font-size: 12.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.35;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bio-link-primary .bio-txt strong { color: var(--navy-deep); }
.bio-link-primary .bio-txt span { color: rgba(12,26,44,0.72); }
.bio-arrow {
  font-size: 24px;
  color: rgba(255,255,255,0.4);
  line-height: 1;
}
.bio-link-primary .bio-arrow { color: rgba(12,26,44,0.5); }
.bio-legal {
  margin-top: 34px;
  font-size: 11px;
  line-height: 1.6;
  color: rgba(255,255,255,0.32);
}
.bio-credit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 22px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  transition: var(--transition-fast);
}
.bio-credit:hover { color: rgba(255,255,255,0.8); }
.bio-credit .incore-logo { opacity: 0.8; }

@media (max-width: 400px) {
  .bio-logo { height: 82px; }
  .bio-name { font-size: 23px; }
  .bio-link { padding: 13px 15px; gap: 12px; }
}

/* -------------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------------- */
@media (max-width: 1100px) {
  .areas-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
  .header-container, .about-container, .areas-container, .steps-container,
  .compare-container, .testimonials-container, .faq-container,
  .contact-container, .footer-container, .footer-bottom { padding-left: 28px; padding-right: 28px; }

  .site-header { background-color: rgba(12,26,44,0.96); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); padding: 14px 0; }

  .mobile-nav-toggle { display: block; }
  .main-nav {
    position: fixed; top: 0; right: -100%;
    width: 290px; height: 100vh;
    background: var(--navy-deep);
    padding: 100px 36px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.4);
    transition: var(--transition-smooth); z-index: 1000;
  }
  .main-nav.active { right: 0; }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 24px; }
  .main-nav a { font-size: 16px; }
  .mobile-nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
  .mobile-nav-toggle.active span:nth-child(2) { opacity: 0; }
  .mobile-nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

  .about-section, .areas-section, .steps-section, .compare-section,
  .testimonials-section, .faq-section, .contact-section { padding: 76px 0; }

  .hero { min-height: 620px; padding-top: 120px; }
  .hero-heading { font-size: 42px; }
  .hero-subtext { font-size: 17px; }

  .section-head h2, .about-text h2, .contact-info h2 { font-size: 30px; }

  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-stats { flex-direction: row; flex-wrap: wrap; }
  .stat-item { flex: 1; min-width: 150px; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; gap: 34px; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }

  .footer-container { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-col-brand { grid-column: span 2; }

  .whatsapp-widget { bottom: 20px; right: 20px; }
  .whatsapp-float { width: 52px; height: 52px; }
  .whatsapp-float svg { width: 27px; height: 27px; }
  .whatsapp-menu { width: 270px; }
}

@media (max-width: 575px) {
  .header-container, .about-container, .areas-container, .steps-container,
  .compare-container, .testimonials-container, .faq-container,
  .contact-container, .footer-container, .footer-bottom { padding-left: 20px; padding-right: 20px; }

  .logo-img { height: 46px; }
  .site-header.scrolled .logo-img { height: 42px; }

  .hero { min-height: 580px; padding: 110px 18px 70px; }
  .hero-heading { font-size: 32px; }
  .hero-eyebrow { font-size: 11px; }
  .hero-cta-group .btn { width: 100%; }
  .hero-trust { gap: 10px 16px; font-size: 13px; }
  .hero-trust-divider { display: none; }

  .about-section, .areas-section, .steps-section, .compare-section,
  .testimonials-section, .faq-section, .contact-section { padding: 60px 0; }

  .section-head h2, .about-text h2, .contact-info h2 { font-size: 26px; }
  .section-head { margin-bottom: 40px; }

  .areas-cards-grid, .steps-grid { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; }

  .faq-question { font-size: 16px; padding: 18px 20px; }
  .compare-col { padding: 34px 26px; }
  .contact-form-wrapper { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-container { grid-template-columns: 1fr; }
  .footer-col-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
