/* ===========================================
   RESET & BASE
=========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  font-family: 'Inter', sans-serif;
}

/* ===========================================
   VARIÁVEIS
=========================================== */
:root {
  --red:       #cc2200;
  --red-hover: #e02800;
  --blue:      #013161;
  --blue-hover:#002244;
  --white:     #ffffff;
  --nav-text:  #d0dce8;
  --header-h: 68px;
}

/* ===========================================
   BOTÃO CTA — global, responsivo
=========================================== */
.cta {
  display: inline-block;
  background-color: var(--red);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(0.82rem, 1.2vw, 1rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 50px;
  white-space: normal;        /* quebra linha se precisar */
  text-align: center;
  transition: background-color 0.2s, transform 0.15s;
  max-width: 100%;            /* nunca ultrapassa o container */
}

.cta:hover {
  background-color: var(--red-hover);
  transform: translateY(-2px);
}

/* ===========================================
   HEADER
=========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: var(--blue);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--blue);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 48px;
  width: 100%;
}

.logo {
  width: 140px;
  height: auto;
  flex-shrink: 0;
}

nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

nav a {
  color: var(--nav-text);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
}

nav a:hover {
  color: var(--white);
}

nav a.btn {
  background-color: var(--red);
  color: var(--white);
  padding: 10px 26px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: background-color 0.2s, transform 0.15s;
}

nav a.btn:hover {
  background-color: var(--red-hover);
  transform: scale(1.04);
}

/* ===========================================
   HERO
=========================================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('img/advogada.png');
  background-size: cover;
  background-position: right 7%;
  background-repeat: no-repeat;
  background-color: var(--blue);
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13, 30, 59, 0.95) 0%,
    rgba(12, 28, 56, 0.60) 30%,
    rgba(12, 27, 54, 0.00) 55%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 55%;
  max-width: 800px;
  padding: 0 32px 0 40px;
  margin-top: var(--header-h);
  margin-left: 3%;
}

.hero-person {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 95%;
  z-index: 2;
  object-fit: contain;
  object-position: bottom right;
  pointer-events: none;
}

.hero-content h1 {
  font-weight: 800;
  font-size: clamp(3rem, 5vw, 5.5rem); /* ← maior */
  line-height: 1.04;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.hero-content h1 .h1-sub {
  display: block;
  font-size: clamp(2rem, 3.2vw, 2.5rem); /* ← maior */
  font-weight: 800;
  line-height: 1.08;
  margin-top: 6px;
}

.hero-content p {
  font-size: clamp(1rem, 1.4vw, 1.2rem); /* ← maior */
  font-weight: 400;
  color: var(--white);
  line-height: 1.5;
  margin-top: 30px;
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-content p strong {
  color: var(--red);
  font-weight: 700;
}

.hero-content .cta {
  padding: 20px 52px;
  font-size: 1rem;
}

/* ===========================================
   STATS
=========================================== */
.stats {
  background-color: var(--white);
  padding: 48px;
  width: 100%;
}

.stats .grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}

.stats .grid-3 > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 44px 36px;
  gap: 14px;
  border-right: 1px solid #dde3ea;
}

.stats .grid-3 > div:last-child {
  border-right: none;
}

.stat-icon-wrapper {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon-wrapper svg {
  width: 48px;
  height: 48px;
  color: var(--blue);
  stroke: var(--blue);
}

.stat-icon-wrapper h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin: 0;
}

.stats .grid-3 > div p {
  font-size: 0.92rem;
  color: #4a5a6a;
  line-height: 1.55;
  max-width: 220px;
}

/* ===========================================
   SERVIÇOS
=========================================== */
.servicos {
  background-color: #e5e7eb;
  padding: 80px 48px;
  width: 100%;
}

.servicos .container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.servicos .title {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 36px;
}

.servicos .card {
  background: transparent;
}

.servicos .card p {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: clamp(0.96rem, 1.3vw, 1.05rem);
  color: #3a4a58;
  line-height: 1.85;
  text-align: center;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.servico-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px 28px;
  text-align: left;
}

.servico-icon {
  width: 56px;
  height: 56px;
  background-color: #edf0f3;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.servico-icon svg {
  width: 26px;
  height: 26px;
  stroke: #4a6070;
}

.servico-card h3 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 12px;
  line-height: 1.3;
}

.servico-card p {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 1rem;
  font-weight: 500;
  color: #4a5a6a;
  line-height: 1.7;
}

.servicos-cta {
  text-align: center;
  margin-top: 48px;
}

/* ===========================================
   DEPOIMENTOS
=========================================== */
.depoimentos {
  background-color: var(--white);
  padding: 80px 48px;
  width: 100%;
}

.depoimentos-title {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--blue);
  text-align: center;
  margin-bottom: 48px;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.depoimento-card {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  min-height: 220px;
}

.depoimento-card .stars {
  font-size: 1.9rem;
  color: var(--red);
  letter-spacing: 2px;
}

.depoimento-card p {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 0.97rem;
  color: var(--blue);
  line-height: 1.75;
  font-style: italic;
  font-weight: 500;
  flex: 1;
}

.depoimento-card span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue);
  margin-top: auto;
}

/* ===========================================
   ATENDIMENTO
=========================================== */
.atendimento {
  background-color: var(--white);
  padding: 80px 48px;
  width: 100%;
}

.atendimento .container {
  max-width: 860px;
  margin: 0 auto;
}

.atendimento-title {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--blue);
  text-align: center;
  margin-bottom: 64px;
}

.atendimento-steps {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 0 auto;
}

.atendimento-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.atendimento-step .step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.step-icon {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(26, 74, 94, 0.25);
  isolation: isolate;
}

.step-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--white);
  stroke-width: 1.8;
  fill: none;
}

.step-line {
  display: none;
}

.step-content {
  padding-top: 16px;
  padding-bottom: 44px;
}

.atendimento-step:last-child .step-content {
  padding-bottom: 0;
}

.step-content h3 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.97rem;
  color: #5a6a78;
  line-height: 1.65;
}

.atendimento-cta {
  text-align: center;
  margin-top: 64px;
}

/* ===========================================
   SOBRE
=========================================== */
.sobre {
  background-color: #f4f6f8;
  padding: 80px 48px;
  width: 100%;
}

.sobre .container {
  max-width: 1100px;
  margin: 0 auto;
}

.sobre .title {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 48px;
  text-align: center;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 64px;
  align-items: center;
}

.sobre-foto {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
  display: block;
}

.sobre-texto {
  font-family: 'Playfair Display', 'Georgia', serif;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sobre-texto > p {
  font-size: 1rem;
  color: #3a4a58;
  line-height: 1.8;
}

.sobre-texto h3 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue);
  margin-top: 12px;
}

.sobre-lista {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sobre-lista li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.97rem;
  color: #3a4a58;
  line-height: 1.55;
}

.sobre-lista li::before {
  content: '';
  display: inline-block;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cc2200' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ===========================================
   DIFERENCIAIS
=========================================== */
.diferenciais {
  background-color: var(--blue);
  padding: 80px 48px;
  width: 100%;
  text-align: center;
}

.diferenciais .title {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.diferenciais > .subtitulo {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: var(--white);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 56px;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 40px;
  max-width: 1000px;
  margin: 0 auto 56px;
  text-align: left;
}

.diferenciais-grid--center {
  grid-template-columns: repeat(2, 1fr);
  max-width: 660px;
  margin-bottom: 56px;
}

.diferencial-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.diferencial-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.diferencial-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
  stroke-width: 1.8;
  fill: none;
}

.diferencial-item p {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 0.97rem;
  color: rgba(255,255,255,0.90);
  line-height: 1.6;
  padding-top: 10px;
}

.diferenciais .cta {
  padding: 18px 48px;
}

/* ===========================================
   FAQ
=========================================== */
.faq {
  background-color: var(--white);
  padding: 80px 48px;
  width: 100%;
}

.faq .container {
  max-width: 760px;
  margin: 0 auto;
}

.faq .title {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #1a2e3b;
  text-align: center;
  margin-bottom: 48px;
}

.faq-item {
  border: 1px solid #dde3ea;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item:hover {
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
}

.faq-question span {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1a2e3b;
  line-height: 1.4;
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  stroke: var(--blue);
  stroke-width: 2.2;
  fill: none;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}

.faq-answer p {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 0.95rem;
  color: #5a6a78;
  line-height: 1.75;
  padding: 0 28px 22px;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

/* ===========================================
   CTA BANNER
=========================================== */
.cta-banner {
  position: relative;
  width: 100%;
  padding: 100px 48px;
  text-align: center;
  overflow: hidden;
  background-color: var(--blue);
}

.cta-banner .container {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-banner .title {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin: 0;
  text-align: center;
}

.cta-banner p {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin: 0;
}

.cta-banner .cta {
  margin-top: 12px;
  padding: 20px 52px;
}

/* ===========================================
   FOOTER
=========================================== */
.footer {
  background-color: var(--blue-hover);
  padding: 60px 48px 32px;
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.footer-brand .logo {
  width: 150px;
  height: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.70);
  line-height: 1.65;
  max-width: 240px;
}

.footer-col h4 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col p,
.footer-col a {
  font-family: 'Inter', sans-serif;
  display: block;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  line-height: 1.5;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  font-family: 'Playfair Display', 'Georgia', serif;
  max-width: 1100px;
  margin: 28px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.footer-bottom a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.70);
  text-decoration: underline;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--white);
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.50);
}

/* ===========================================
   WHATSAPP FIXO
=========================================== */
.whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(0,0,0,0.30);
}

.whatsapp svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

/* ===========================================
   MENU HAMBURGUER (mobile)
=========================================== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  width: 100%;
  background-color: rgba(1, 49, 97, 0.97);
  backdrop-filter: blur(8px);
  z-index: 99;
  flex-direction: column;
  padding: 16px 0 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 18px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background-color 0.2s;
}

.mobile-menu a:hover {
  background-color: rgba(255,255,255,0.07);
}

.mobile-menu a.btn {
  margin: 16px 28px 0;
  text-align: center;
  background-color: var(--red);
  border-radius: 50px;
  border-bottom: none;
  padding: 16px 24px;
}

.mobile-menu a.btn:hover {
  background-color: var(--red-hover);
}

/* ===========================================
   ANIMAÇÃO FADE
=========================================== */
.fade {
  opacity: 0;
  transform: translateY(26px);
  animation: fadeUp 0.85s ease forwards;
  animation-delay: 0.15s;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ===========================================
   RESPONSIVO — TABLET (até 1100px)
=========================================== */
@media (max-width: 1100px) {
  .nav { padding: 0 28px; }
  nav { gap: 24px; }
  .hero-content { width: 58%; padding: 0 28px; }
  .sobre-grid { grid-template-columns: 1fr; gap: 36px; }
  .sobre-foto { max-width: 360px; aspect-ratio: 4 / 5; }
  .depoimentos-grid { grid-template-columns: repeat(2, 1fr); }
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
  .diferenciais-grid--center { grid-template-columns: repeat(2, 1fr); max-width: 660px; }
}

/* ===========================================
   RESPONSIVO — MOBILE (até 768px)
=========================================== */
@media (max-width: 1100px) {
  .nav { padding: 0 28px; }
  nav { gap: 24px; }
  .hero-content { width: 58%; padding: 0 28px; }
  .sobre-grid { grid-template-columns: 1fr; gap: 36px; }
  .sobre-foto { max-width: 360px; aspect-ratio: 4 / 5; }
  .depoimentos-grid { grid-template-columns: repeat(2, 1fr); }
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
  .diferenciais-grid--center { grid-template-columns: repeat(2, 1fr); max-width: 660px; }
}
 
/* ===========================================
   RESPONSIVO — MOBILE (até 768px)
=========================================== */
@media (max-width: 768px) {
  :root { --header-h: 60px; }
 
  /* Header */
  .nav { padding: 0 20px; }
  nav { display: none; }          /* esconde nav desktop */
  .hamburger { display: flex; }   /* mostra hamburguer */
 
  /* Botão CTA — adaptado ao mobile */
  .cta {
    width: 100%;
    max-width: 340px;
    padding: 16px 24px;
    font-size: 0.85rem;
  }
 
  /* Hero */
  .hero {
    background-position: 84% center;
    align-items: flex-end;
    padding-bottom: 48px;
  }
 
  .overlay {
    background: linear-gradient(
      to top,
      rgba(5, 12, 24, 0.97) 0%,
      rgba(5, 12, 24, 0.75) 50%,
      rgba(5, 12, 24, 0.20) 100%
    );
  }
 
  .hero-content {
    width: 100%;
    max-width: 100%;
    padding: 0 24px;
    margin-top: 0;
    margin-left: 0;
  }
 
  .hero-content h1 {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }
 
  .hero-content h1 .h1-sub {
    font-size: clamp(1.2rem, 5vw, 1.7rem);
  }
 
  .hero-content p { max-width: 100%; }
  .hero-person { display: none; }
 
  /* Stats */
  .stats { padding: 32px 20px; }
  .stats .grid-3 { grid-template-columns: 1fr; }
  .stats .grid-3 > div {
    border-right: none;
    border-bottom: 1px solid #dde3ea;
    padding: 32px 24px;
  }
  .stats .grid-3 > div:last-child { border-bottom: none; }
 
  /* Serviços */
  .servicos { padding: 56px 24px; }
  .servicos-grid { grid-template-columns: 1fr; }
 
  /* Depoimentos */
  .depoimentos { padding: 56px 24px; }
  .depoimentos-grid { grid-template-columns: 1fr; }
 
  /* Atendimento */
  .atendimento { padding: 56px 24px; }
  .step-icon { width: 58px; height: 58px; }
  .step-icon svg { width: 26px; height: 26px; }
 
  /* Sobre */
  .sobre { padding: 56px 24px; }
 
  /* Diferenciais */
  .diferenciais { padding: 56px 24px; }
  .diferenciais-grid { grid-template-columns: 1fr; }
  .diferenciais-grid--center { grid-template-columns: 1fr; max-width: 100%; }
 
  /* FAQ */
  .faq { padding: 56px 20px; }
  .faq-question { padding: 18px 20px; }
  .faq-answer p { padding: 0 20px 18px; }
 
  /* CTA Banner */
  .cta-banner { padding: 72px 24px; }
 
  /* Footer */
  .footer { padding: 48px 24px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand p { max-width: 100%; }
}
 
/* ===========================================
   RESPONSIVO — ULTRAWIDE (1800px+)
=========================================== */
@media (min-width: 1800px) {
  .nav { padding: 0 80px; }
  .hero-content { padding: 0 80px; }
}