@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Cores - Design High Premium */
  --bg-dark: #080808;
  --bg-dark-card: #11110f;
  --bg-light: #f7f6f2;
  --bg-light-card: #ffffff;
  
  --gold-primary: #d4af37;
  --gold-light: #f5df9e;
  --gold-dark: #aa842c;
  --gold-gradient: linear-gradient(135deg, #c5a059 0%, #f3d79b 50%, #b38f43 100%);
  --gold-glow: rgba(212, 175, 55, 0.15);
  
  --text-light: #f5f4f0;
  --text-muted-light: #a3a29e;
  --text-dark: #1a1917;
  --text-muted-dark: #666560;
  
  --border-gold: rgba(212, 175, 55, 0.2);
  --border-gold-hover: rgba(212, 175, 55, 0.6);
  --border-light: rgba(0, 0, 0, 0.06);
  --border-dark: rgba(255, 255, 255, 0.06);
  
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.3s ease;
  
  --font-serif: 'Marcellus', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
}

/* Reset Geral */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

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

/* Transições e Contraste de Seções */
section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.section-light {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.3;
  text-align: center;
}

.gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

p {
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* Cabeçalhos de Seção */
.section-header {
  margin-bottom: 60px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-light .section-header h2 {
  color: var(--text-dark);
}

.section-header p {
  font-size: 1.1rem;
}

.section-light .section-header p {
  color: var(--text-muted-dark);
}

.section-dark .section-header p {
  color: var(--text-muted-light);
}

/* Divisores Premium */
.premium-divider {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  margin: 20px auto 0 auto;
}

/* Botões Premium com Efeito Shiner (Hover Shine) */
.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  cursor: pointer;
  z-index: 1;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #000000;
  border: 1px solid transparent;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
}

.btn-outline-gold:hover {
  background: var(--gold-gradient);
  color: #000000;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

/* Efeito Shiner */
.btn-premium::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-30deg);
  transition: var(--transition-smooth);
}

.btn-premium:hover::after {
  left: 150%;
  transition: 0.8s ease-in-out;
}

/* CTAs Centralizados */
.cta-container {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

/* DOBRA 1: HERO */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 0 80px 0;
  position: relative;
  background-color: var(--bg-dark);
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(212, 175, 55, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: center;
  mask-image: radial-gradient(circle, black 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(circle, black 40%, transparent 85%);
  pointer-events: none;
  z-index: 1;
}

/* Balança da Justiça minimalista em background no Hero */
.hero-scale-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  width: 580px;
  height: 580px;
  opacity: 0.038;
  pointer-events: none;
  z-index: 1;
  color: var(--gold-primary);
}

.hero-scale-svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 0.7px;
  fill: none;
}

/* Badge em cápsula estilo Elite Attorney */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 100px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  background-color: rgba(17, 17, 15, 0.7);
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 30px;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  background-color: var(--gold-primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold-primary);
}

/* Efeito de partículas subindo */
.particles-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  bottom: -20px;
  background: radial-gradient(circle, var(--gold-light) 0%, rgba(212, 175, 55, 0) 70%);
  border-radius: 50%;
  opacity: 0;
  animation: float-up infinite linear;
}

@keyframes float-up {
  0% {
    transform: translateY(0) scale(0.6);
    opacity: 0;
  }
  15% {
    opacity: 0.7;
  }
  85% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(-110vh) scale(1.4);
    opacity: 0;
  }
}

/* Efeito de brilho sweep de fundo no Hero */
.hero-shiner {
  position: absolute;
  top: 0;
  left: -150%;
  width: 300%;
  height: 100%;
  background: linear-gradient(
    135deg,
    transparent 42%,
    rgba(212, 175, 55, 0.025) 50%,
    transparent 58%
  );
  pointer-events: none;
  z-index: 1;
  animation: hero-sweep 16s infinite linear;
}

@keyframes hero-sweep {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  max-width: 240px;
  height: auto;
  margin-bottom: 40px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
  animation: logo-glow 3s ease-in-out infinite alternate;
}

@keyframes logo-glow {
  0% {
    filter: drop-shadow(0 4px 5px rgba(212, 175, 55, 0.15));
  }
  100% {
    filter: drop-shadow(0 4px 20px rgba(212, 175, 55, 0.35));
  }
}

.hero-section h1 {
  font-size: 3rem;
  line-height: 1.25;
  color: var(--text-light);
  margin-bottom: 24px;
  text-transform: capitalize;
}

.hero-section .hero-subheadline {
  font-size: 1.15rem;
  color: var(--text-muted-light);
  max-width: 780px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
}

/* DOBRA 2: SERVIÇOS */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.card-premium {
  position: relative;
  border-radius: 6px;
  padding: 40px 24px;
  text-align: center;
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.section-light .card-premium {
  background-color: var(--bg-light-card);
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 10px 30px rgba(26, 25, 23, 0.04);
}

.section-light .card-premium:hover {
  transform: translateY(-10px);
  border-color: var(--gold-primary);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15), 0 4px 12px rgba(212, 175, 55, 0.05);
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.02) 0%, #ffffff 80%);
}

.card-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  transition: var(--transition-smooth);
}

.card-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.2;
}

.card-premium:hover .card-icon {
  transform: scale(1.1);
  color: var(--gold-light);
}

.card-premium h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: inherit;
  letter-spacing: 0.02em;
}

.section-light .card-premium h3 {
  color: var(--text-dark);
}

.card-premium p {
  font-size: 0.95rem;
}

.section-light .card-premium p {
  color: var(--text-muted-dark);
}

/* DOBRA 3: SOBRE O ESCRITÓRIO */
.about-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-text {
  text-align: left;
}

.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 24px;
  text-align: left;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted-light);
  margin-bottom: 24px;
}

.about-text p strong {
  color: var(--text-light);
  font-weight: 500;
}

.about-image-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.about-image-frame {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  max-width: 440px;
  width: 100%;
}

.about-image-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition-smooth);
}

.about-image-frame:hover img {
  transform: scale(1.03);
}

/* Moldura dourada decorativa */
.about-image-container::before {
  content: '';
  position: absolute;
  top: -12px;
  left: calc(50% - 220px - 12px);
  width: calc(100% - 20px);
  max-width: 440px;
  height: 100%;
  border: 1px solid var(--gold-primary);
  border-radius: 8px;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
  transition: var(--transition-smooth);
}

@media (max-width: 992px) {
  .about-image-container::before {
    left: calc(50% - 190px);
    max-width: 380px;
  }
}

.about-image-container:hover::before {
  transform: translate(6px, 6px);
  opacity: 0.6;
}

/* DOBRA 4: DIFERENCIAIS */
.differentials-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.differential-card {
  background-color: var(--bg-light-card);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 6px;
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 25px rgba(26, 25, 23, 0.02);
}

.differential-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: 0 18px 35px rgba(212, 175, 55, 0.12);
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.01) 0%, #ffffff 80%);
}

.diff-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--gold-primary);
  margin-bottom: 16px;
  display: inline-block;
  opacity: 0.8;
}

.differential-card h3 {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.differential-card p {
  font-size: 0.9rem;
  color: var(--text-muted-dark);
}

/* DOBRA 5: PROVA SOCIAL */
.social-proof-section {
  padding: 100px 0;
  background-color: var(--bg-dark);
}

.social-proof-content {
  position: relative;
  z-index: 2;
}

.manifesto-box {
  max-width: 850px;
  margin: 0 auto;
  padding: 60px 48px;
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  background-color: var(--bg-dark-card);
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  text-align: center;
}

.manifesto-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: var(--gold-gradient);
}

.manifesto-box h2 {
  font-size: 2rem;
  color: var(--text-light);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.manifesto-box p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted-light);
  font-weight: 300;
  letter-spacing: 0.02em;
}

@media (max-width: 576px) {
  .manifesto-box {
    padding: 40px 24px;
  }
  .manifesto-box h2 {
    font-size: 1.5rem;
  }
  .manifesto-box p {
    font-size: 0.95rem;
  }
}

/* DOBRA 6: FAQ ACCORDION */
.faq-container {
  max-width: 850px;
  margin: 40px auto 0 auto;
}

.faq-item {
  background-color: var(--bg-light-card);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: var(--gold-primary);
}

.faq-trigger {
  width: 100%;
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-trigger h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
  text-align: left;
  letter-spacing: 0.01em;
  padding-right: 20px;
}

.faq-icon-wrapper {
  color: var(--gold-primary);
  transition: var(--transition-smooth);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon-wrapper svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

/* Acordeão Dinâmico com Grid transition */
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
  min-height: 0;
  overflow: hidden;
}

.faq-answer-content {
  padding: 0 30px 24px 30px;
  color: var(--text-muted-dark);
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 300;
}

/* Estados Ativos */
.faq-item.active {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
  border-color: var(--gold-primary);
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.active .faq-icon-wrapper {
  transform: rotate(180deg);
  color: var(--gold-dark);
}

/* DOBRA 7: CONTATO E LOCALIZAÇÃO */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

.contact-item:hover {
  transform: translateX(5px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  background-color: var(--bg-dark-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.contact-item:hover .contact-icon {
  background-color: var(--gold-primary);
  color: #000000;
  border-color: transparent;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.contact-details h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin-bottom: 6px;
  text-align: left;
}

.contact-details p {
  font-size: 0.95rem;
  color: var(--text-muted-light);
}

.contact-item:hover .contact-details p {
  color: var(--text-light);
}

/* Mapa */
.map-container {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(1) invert(0.9) contrast(1.2); /* Estilo escuro elegante para o mapa */
}

/* Botão Fixo de WhatsApp */
.whatsapp-fixed {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: var(--transition-smooth);
}

.whatsapp-fixed svg {
  width: 32px;
  height: 32px;
}

.whatsapp-fixed:hover {
  transform: scale(1.1) translateY(-3px);
  background-color: #20ba59;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Animação de pulso para o botão do WhatsApp */
.whatsapp-fixed::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #25d366;
  opacity: 0.5;
  z-index: -1;
  animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    opacity: 0.5;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* RODAPÉ */
footer {
  padding: 40px 0;
  background-color: #030303;
  border-top: 1px solid var(--border-dark);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logo {
  max-width: 130px;
  height: auto;
  opacity: 0.8;
}

.footer-copy {
  font-size: 0.9rem;
  color: var(--text-muted-light);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted-light);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: var(--transition-fast);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.footer-links a:hover {
  color: var(--gold-primary);
  border-color: var(--gold-primary);
}

/* PÁGINA SECUNDÁRIA: POLÍTICAS DE PRIVACIDADE */
.privacy-header {
  padding: 140px 0 60px 0;
  background-color: var(--bg-dark);
  border-bottom: 1px solid var(--border-dark);
}

.privacy-header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.privacy-header h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.privacy-header p {
  color: var(--text-muted-light);
  text-align: center;
  font-size: 1.1rem;
}

.privacy-content {
  padding: 80px 0;
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.privacy-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-section {
  margin-bottom: 40px;
}

.privacy-section h2 {
  font-size: 1.6rem;
  color: var(--text-dark);
  text-align: left;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding-bottom: 8px;
}

.privacy-section p, .privacy-section ul {
  font-size: 1rem;
  color: var(--text-muted-dark);
  line-height: 1.8;
  margin-bottom: 16px;
}

.privacy-section ul {
  padding-left: 20px;
  list-style-type: square;
}

.privacy-section ul li {
  margin-bottom: 8px;
}

.privacy-back-btn {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-primary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-fast);
}

.privacy-back-btn:hover {
  color: var(--gold-light);
  transform: translateX(-3px);
}

/* ANIMAÇÃO SCROLL REVEAL */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(4px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 1s cubic-bezier(0.16, 1, 0.3, 1), 
              filter 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Delays para animação cascata */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* RESPONSIVIDADE (MEDIA QUERIES) */

/* Notebooks & Desktops */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .differentials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablets */
@media (max-width: 992px) {
  section {
    padding: 80px 0;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .about-text {
    text-align: center;
  }
  
  .about-text h2 {
    text-align: center;
  }
  
  .about-image-container::before {
    display: none;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .map-container {
    min-height: 300px;
  }
}

/* Mobile Avançado (Telas Médias) */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .differentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .social-proof-quote {
    font-size: 1.8rem;
  }
  
  .social-proof-quote::before, .social-proof-quote::after {
    font-size: 4rem;
  }
}

/* Mobile Padrão */
@media (max-width: 576px) {
  section {
    padding: 60px 0;
  }
  
  .hero-section {
    padding: 100px 0 60px 0;
  }
  
  .hero-section h1 {
    font-size: 1.9rem;
    line-height: 1.3;
    text-align: center;
  }
  
  .section-header h2 {
    font-size: 1.45rem;
    line-height: 1.4;
    text-align: center;
  }
  
  .about-text h2 {
    font-size: 1.45rem;
    margin-bottom: 16px;
    text-align: center;
  }
  
  .hero-section .hero-subheadline {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .hero-logo {
    max-width: 180px;
    margin-bottom: 30px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .differentials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .differential-card, .card-premium {
    padding: 30px 20px;
  }
  
  .social-proof-quote {
    font-size: 1.4rem;
    padding: 0 20px;
  }
  
  .faq-trigger {
    padding: 20px 24px;
  }
  
  .faq-trigger h3 {
    font-size: 1rem;
  }
  
  .faq-answer-content {
    padding: 0 24px 20px 24px;
  }
  
  .whatsapp-fixed {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-fixed svg {
    width: 26px;
    height: 26px;
  }
}
