/* ============================================
   MICHELY GONÇALVES ADVOCACIA — STYLESHEET
   Design: Econfisp-inspired | Navy + Gold
   ============================================ */

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

:root {
  --navy:       #1a2d4f;
  --navy-dark:  #0f1e35;
  --navy-mid:   #1e3a6e;
  --gold:       #c9a227;
  --gold-light: #e0b84a;
  --gold-dark:  #a8861a;
  --white:      #ffffff;
  --off-white:  #f8f6f0;
  --gray-100:   #f4f4f4;
  --gray-200:   #e8e8e8;
  --gray-500:   #888888;
  --gray-700:   #444444;
  --text-dark:  #1a1a1a;
  --text-mid:   #333333;

  --font-body:   'Work Sans', sans-serif;
  --font-serif:  'Playfair Display', serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.18);
  --shadow-gold: 0 8px 32px rgba(201,162,39,.25);

  --transition: .3s cubic-bezier(.4,0,.2,1);
  --transition-slow: .6s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === TYPOGRAPHY === */
.section-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-eyebrow.gold { color: var(--gold-light); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-dark);
  margin-bottom: 16px;
}
.section-title em { color: var(--gold); font-style: normal; }

.light .section-title { color: var(--white); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .04em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

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

.btn-gold-lg {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  padding: 15px 36px;
  font-size: 1rem;
  font-weight: 700;
}
.btn-gold-lg:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(201,162,39,.4); }
.btn-gold-lg.full-width { width: 100%; justify-content: center; }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
  padding: 13px 32px;
}
.btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  transition: var(--transition);
}
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.35); }

/* === HEADER === */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(15,30,53,.96);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-img {
  height: 52px;
  width: auto;
  transition: var(--transition);
}
.header.scrolled .logo-img { height: 42px; }

.nav { display: flex; align-items: center; gap: 36px; }
.nav-list { display: flex; align-items: center; gap: 32px; }

.nav-link {
  color: rgba(255,255,255,.85);
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .04em;
  position: relative;
  transition: var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-link:hover { color: var(--gold-light); }
.nav-link:hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(10,18,40,.92) 0%, rgba(26,45,79,.85) 50%, rgba(30,58,110,.8) 100%),
    url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1920&q=80') center/cover no-repeat;
  padding-top: 100px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(201,162,39,.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding: 6px 16px;
  border: 1px solid rgba(201,162,39,.4);
  border-radius: 50px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp .8s ease both;
}
.hero-title em { color: var(--gold-light); font-style: normal; }

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,.8);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 540px;
  animation: fadeInUp .8s .2s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp .8s .4s ease both;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 50px;
  overflow: hidden;
}
.hero-scroll-indicator span {
  display: block;
  width: 100%; height: 50%;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
  0%   { transform: translateY(-100%); opacity: 0; }
  50%  { opacity: 1; }
  100% { transform: translateY(200%); opacity: 0; }
}

/* === FLOATING CARDS === */
.floating-cards {
  background: var(--white);
  margin-top: -60px;
  position: relative;
  z-index: 10;
  padding: 0 0 20px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.card-quick {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 32px 28px;
  border-right: 1px solid var(--gray-200);
  transition: var(--transition);
  cursor: default;
}
.card-quick:last-child { border-right: none; }
.card-quick:hover { background: var(--off-white); }
.card-quick:hover .card-quick-icon { transform: scale(1.15); }

.card-quick-icon {
  font-size: 2.4rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.card-quick-text h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.card-quick-text p {
  font-size: .85rem;
  color: var(--gray-500);
  line-height: 1.5;
}

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

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

.sobre-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.sobre-img {
  width: 100%;
  height: 520px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  object-position: center top;
}

.sobre-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.badge-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
.badge-label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sobre-text {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.9;
  margin-bottom: 16px;
}

.sobre-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
}

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.value-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-item h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.value-item p {
  font-size: .85rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* === STATS === */
.stats {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,162,39,.08) 0%, transparent 70%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat-plus {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-label {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-top: 8px;
}

/* === ÁREAS === */
.areas {
  padding: 100px 0;
  background: var(--off-white);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.area-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.area-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-slow);
}
.area-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.area-card:hover::before { transform: scaleX(1); }

.area-card.featured {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  border-color: transparent;
  color: var(--white);
}
.area-card.featured h3 { color: var(--white); }
.area-card.featured .area-list li { color: rgba(255,255,255,.75); }
.area-card.featured .area-list li::before { background: var(--gold); }
.area-card.featured .area-link { color: var(--gold-light); }
.area-card.featured::before { background: linear-gradient(90deg, var(--gold-light), var(--gold)); transform: scaleX(1); }

.area-card-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
  transition: var(--transition);
}
.area-card:hover .area-card-icon { transform: scale(1.1); }

.area-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.area-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.area-list li {
  font-size: .88rem;
  color: var(--gray-700);
  padding-left: 16px;
  position: relative;
}
.area-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.area-link {
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .04em;
  transition: var(--transition);
}
.area-link:hover { color: var(--gold); letter-spacing: .08em; }

/* === PROCESSO === */
.processo {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
.processo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(201,162,39,.07) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(201,162,39,.05) 0%, transparent 50%);
}

.processo .container { position: relative; z-index: 1; }

.processo-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
  margin-top: 60px;
}

.step {
  text-align: center;
  padding: 20px;
}
.step-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(201,162,39,.25);
  line-height: 1;
  margin-bottom: 16px;
}
.step:hover .step-num { color: var(--gold); transition: var(--transition); }
.step-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.step-content p {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
}

.step-connector {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, rgba(201,162,39,.2), rgba(201,162,39,.6), rgba(201,162,39,.2));
}

/* === DEPOIMENTOS === */
.depoimentos {
  padding: 100px 0;
  background: var(--white);
}

.depo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.depo-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
}
.depo-card::before {
  content: '"';
  position: absolute;
  top: 20px; right: 28px;
  font-family: var(--font-serif);
  font-size: 6rem;
  color: rgba(201,162,39,.15);
  line-height: 1;
}
.depo-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.depo-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.depo-text {
  font-size: .95rem;
  color: var(--gray-700);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}
.depo-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.depo-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--gold-light);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.depo-author strong {
  display: block;
  font-size: .9rem;
  color: var(--navy);
}
.depo-author span {
  font-size: .78rem;
  color: var(--gold);
  font-weight: 600;
}

/* === .contato-esquerda: agrupa foto + info na coluna esquerda === */
.contato-esquerda {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contato-foto-wrapper {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 300px;
}

.contato-foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: var(--radius-lg);
  transition: transform .6s ease;
}
.contato-foto-wrapper:hover .contato-foto { transform: scale(1.04); }

.contato-foto-badge {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,18,40,.95) 0%, transparent 100%);
  padding: 40px 20px 20px;
  text-align: center;
}
.contato-foto-badge span {
  display: block;
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.contato-foto-badge small {
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  letter-spacing: .08em;
}

/* === CONTATO original (sem foto) === */
.contato {
  padding: 100px 0;
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}
.contato::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 50%, rgba(201,162,39,.06) 0%, transparent 60%);
}

.contato-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contato-text .section-title { color: var(--white); margin-bottom: 12px; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.contato-text > p {
  color: rgba(255,255,255,.7);
  line-height: 1.8;
  font-size: .95rem;
}

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

.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.8);
  font-size: .9rem;
}
.info-icon { font-size: 1.2rem; flex-shrink: 0; }
.info-item a { color: rgba(255,255,255,.8); transition: var(--transition); }
.info-item a:hover { color: var(--gold-light); }

/* === FORM === */
.contato-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
}
.contato-form h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 28px;
  font-weight: 700;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: .83rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
  letter-spacing: .04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-disclaimer {
  font-size: .78rem;
  color: var(--gray-500);
  text-align: center;
  margin-top: 12px;
}

/* === FOOTER === */
.footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 80px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-logo {
  height: 56px;
  width: auto;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  line-height: 1.8;
  max-width: 260px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--navy-dark); }

.footer h4 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-nav ul,
.footer-areas ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a,
.footer-areas a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: var(--transition);
}
.footer-nav a:hover,
.footer-areas a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-contato p {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 10px;
  line-height: 1.6;
}
.footer-contato a { color: rgba(255,255,255,.55); transition: var(--transition); }
.footer-contato a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  line-height: 1.8;
}

.footer-webmail {
  margin-top: 12px;
}

.webmail-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  border: 1px solid rgba(255,255,255,.12);
  padding: 5px 14px;
  border-radius: 50px;
  transition: var(--transition);
}
.webmail-link:hover {
  color: var(--gold-light);
  border-color: rgba(201,162,39,.4);
  background: rgba(201,162,39,.06);
}

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  z-index: 999;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: var(--transition);
  animation: pulse-green 2.5s ease infinite;
}
.whatsapp-float:hover { transform: scale(1.12); animation: none; box-shadow: 0 10px 36px rgba(37,211,102,.55); }

@keyframes pulse-green {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.45); }
  50%      { box-shadow: 0 6px 40px rgba(37,211,102,.7), 0 0 0 12px rgba(37,211,102,.1); }
}

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

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-left.visible,
.reveal-right.visible { transform: translateX(0); }

/* === MOBILE NAV === */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--navy-dark);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    padding: 60px 40px;
    transition: var(--transition);
    box-shadow: -4px 0 40px rgba(0,0,0,.4);
  }
  .nav.open { right: 0; }
  .nav-list { flex-direction: column; gap: 24px; }
  .nav-link { font-size: 1.1rem; }
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .processo-steps {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .step-connector { display: none; }
}

@media (max-width: 900px) {
  .cards-grid       { grid-template-columns: 1fr; }
  .card-quick       { border-right: none; border-bottom: 1px solid var(--gray-200); }
  .card-quick:last-child { border-bottom: none; }
  .sobre-inner      { grid-template-columns: 1fr; gap: 40px; }
  .sobre-badge      { right: 0; }
  .stats-grid       { grid-template-columns: repeat(2, 1fr); }
  .stat-item        { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .areas-grid       { grid-template-columns: 1fr; }
  .processo-steps   { grid-template-columns: 1fr; gap: 32px; }
  .depo-grid        { grid-template-columns: 1fr; }
  .contato-inner    { grid-template-columns: 1fr; gap: 48px; }
  .contato-3col     { grid-template-columns: 1fr; }
  .contato-foto-wrapper { min-height: 280px; }
  .footer-inner     { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 600px) {
  .hero-title       { font-size: 2.5rem; }
  .hero-actions     { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .stats-grid       { grid-template-columns: 1fr 1fr; }
  .footer-inner     { grid-template-columns: 1fr; }
  .contato-form     { padding: 28px 20px; }
}
