/* ============================================
   RÉGLICRED — Dark Premium Institutional
   Gold/Graphite Identity
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --grafite: #0B0F19;
  --carvao: #151D30;
  --dourado: #E2B842;
  --dourado-claro: #ECD082;
  --off-white: #F1F5F9;
  --cinza-nevoa: #94A3B8;
  --verde: #10B981;
  --texto: #F1F5F9;
  --texto-sec: #94A3B8;
  --font-titulo: 'Sora', sans-serif;
  --font-corpo: 'Inter', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  font-family: var(--font-corpo);
  background-color: var(--grafite);
  color: var(--texto);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

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

.gold { color: var(--dourado); }

/* ===== SECTION LABELS & HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-titulo);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--dourado);
  margin-bottom: 0px;
  padding: 6px 16px;
  border: 1px solid var(--dourado);
  border-radius: 100px;
}

.section-title {
  font-family: var(--font-titulo);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--off-white);
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
  position: fixed;
  inset: 0;
  background: var(--grafite);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-content {
  text-align: center;
}

.loading-logo {
  width: 80px;
  height: 80px;
  margin-bottom: 8px;
  animation: pulse-logo 1.5s ease-in-out infinite;
}

@keyframes pulse-logo {
  0%, 100% { opacity: 0.5; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1); }
}

.loading-bar {
  width: 200px;
  height: 3px;
  background: var(--carvao);
  border-radius: 10px;
  margin: 0 auto 16px;
  overflow: hidden;
}

.loading-progress {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--dourado), var(--dourado-claro));
  border-radius: 10px;
  animation: loadingFill 1.5s ease-out forwards;
}

@keyframes loadingFill {
  0% { width: 0%; }
  100% { width: 100%; }
}

.loading-text {
  font-family: var(--font-titulo);
  font-size: 0.875rem;
  color: var(--cinza-nevoa);
  letter-spacing: 0.1em;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 80px);
  max-width: 1120px;
  z-index: 1000;
  padding: 14px 32px;
  background: rgba(16, 20, 30, 0.82);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.navbar.scrolled {
  background: rgba(16, 20, 30, 0.94);
  border-color: rgba(255, 255, 255, 0.08);
}

.nav-container {
  max-width: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-titulo);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--off-white);
  letter-spacing: -0.01em;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--off-white);
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  font-family: var(--font-corpo);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--texto-sec);
  padding: 8px 14px;
  border-radius: 100px;
  transition: all 0.25s ease;
}

.nav-link:hover {
  color: var(--off-white);
  background: rgba(255, 255, 255, 0.04);
}

.nav-cta {
  font-family: var(--font-corpo);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--grafite);
  background: var(--dourado);
  padding: 10px 22px;
  border-radius: 100px;
  margin-left: 6px;
  transition: all 0.25s ease;
}

.nav-cta:hover {
  background: var(--dourado-claro);
  transform: scale(0.97);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  max-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(80px, 10vh, 100px) 0 clamp(20px, 4vh, 40px);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(232, 182, 23, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(226, 184, 66, 0.08);
  border: 1px solid rgba(226, 184, 66, 0.2);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--dourado-claro);
  margin-bottom: 12px;
}

.badge-star {
  color: var(--dourado);
  letter-spacing: 2px;
}

.hero-title {
  font-family: var(--font-titulo);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--off-white);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--cinza-nevoa);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 460px;
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-cta-btn {
  display: inline-block;
  padding: 14px 28px;
  background: var(--dourado);
  color: var(--grafite);
  font-family: var(--font-titulo);
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-align: center;
  transition: var(--transition);
}

.hero-cta-btn:hover {
  background: var(--dourado-claro);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(226, 184, 66, 0.25);
}

.hero-cta-btn.btn-secondary {
  background: transparent;
  color: var(--off-white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-cta-btn.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--off-white);
  box-shadow: none;
  transform: translateY(-2px);
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  background: var(--carvao);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  color: var(--off-white);
  font-family: var(--font-corpo);
  font-size: 0.9375rem;
  transition: var(--transition);
}

.form-input::placeholder {
  color: var(--cinza-nevoa);
}

.form-input:focus {
  outline: none;
  border-color: var(--dourado);
  box-shadow: 0 0 0 3px rgba(232, 182, 23, 0.1);
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238A8A8F' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

.form-btn {
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--dourado), var(--dourado-claro));
  color: var(--grafite);
  font-family: var(--font-titulo);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(226, 184, 66, 0.25);
}

.form-btn-lg {
  font-size: 1.0625rem;
  padding: 14px;
  font-size: 0.9375rem;
}

.form-disclaimer {
  font-size: 0.6875rem;
  color: var(--cinza-nevoa);
  text-align: center;
  margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130%;
  height: 130%;
  background: radial-gradient(circle, rgba(226, 184, 66, 0.08) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.hero-image-wrapper {
  position: relative;
  z-index: 1;
  max-width: clamp(300px, 42vh, 380px);
  width: 100%;
  margin: 0 auto;
  padding: 8px;
  background: rgba(11, 15, 25, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 184, 66, 0.15);
  border-radius: 32px;
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(226, 184, 66, 0.03);
}

.hero-image,
.hero-video {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(46, 46, 51, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(232, 182, 23, 0.1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  animation: floatCard 4s ease-in-out infinite;
}

.hero-float-card strong {
  display: block;
  font-family: var(--font-titulo);
  font-size: 0.8125rem;
  color: var(--off-white);
}

.hero-float-card small {
  font-size: 0.75rem;
  color: var(--cinza-nevoa);
}

.float-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 182, 23, 0.15);
  border-radius: 10px;
  font-size: 0.875rem;
}

.card-1 {
  top: 24px;
  left: -24px;
  animation-delay: 0s;
}

.card-2 {
  top: 50%;
  right: -20px;
  animation-delay: 1.3s;
}

.card-3 {
  bottom: 30px;
  left: -16px;
  animation-delay: 2.6s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Hero Scroll Hint */
.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--cinza-nevoa);
  font-size: 0.75rem;
  opacity: 0.7;
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid var(--cinza-nevoa);
  border-radius: 12px;
  position: relative;
}

.scroll-wheel {
  width: 3px;
  height: 6px;
  background: var(--cinza-nevoa);
  border-radius: 2px;
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%, 100% { top: 7px; opacity: 1; }
  50% { top: 16px; opacity: 0.3; }
}

/* ===== MARQUEE ===== */
.marquee-wrapper {
  background: var(--carvao);
  border-top: 1px solid rgba(226, 184, 66, 0.12);
  border-bottom: 1px solid rgba(226, 184, 66, 0.12);
  padding: 14px 0;
  overflow: hidden;
}

.marquee-dark {
  background: var(--grafite);
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: inline-block;
  animation: marquee-scroll 30s linear infinite;
}

.marquee-wrapper:nth-child(even) .marquee-content {
  animation-direction: reverse;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-content span {
  display: inline-block;
  font-family: var(--font-titulo);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--dourado);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0 20px;
}

.marquee-dark .marquee-content span {
  color: var(--cinza-nevoa);
}

.marquee-content .dot {
  color: rgba(226, 184, 66, 0.4);
  font-size: 0.5rem;
  vertical-align: middle;
}

.marquee-dark .marquee-content .dot {
  color: rgba(226, 184, 66, 0.3);
}

/* ===== DOR E SOLUÇÃO MINIMALISTA PREMIUM ===== */
.dor-solucao {
  padding: 100px 0;
  background: linear-gradient(180deg, #111625 0%, #171E32 100%); /* Cor de fundo diferente da Hero (#0B0F19) */
  border-top: 1px solid rgba(226, 184, 66, 0.05);
  position: relative;
  overflow: hidden;
}

.dor-solucao::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(226, 184, 66, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.dor-solucao-header {
  text-align: center;
  margin-bottom: 56px;
}

.dor-solucao-minimal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.dor-box-min, .solucao-box-min {
  padding: 48px;
  border-radius: var(--radius);
  background: rgba(11, 15, 25, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.02);
  transition: var(--transition);
  position: relative;
}

.dor-box-min:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 68, 68, 0.15);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.solucao-box-min {
  border-color: rgba(226, 184, 66, 0.12);
  background: linear-gradient(135deg, rgba(226, 184, 66, 0.03) 0%, rgba(11, 15, 25, 0.5) 100%);
}

.solucao-box-min:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: var(--dourado);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.45), 0 0 40px rgba(226, 184, 66, 0.03);
}

.box-icon-top {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 24px;
}

.box-icon-top svg {
  width: 28px;
  height: 28px;
}

.box-icon-top.text-red {
  background: rgba(239, 68, 68, 0.08);
  color: #EF4444;
  border: 1px solid rgba(239, 68, 68, 0.15);
}

.box-icon-top.text-gold {
  background: rgba(226, 184, 66, 0.08);
  color: var(--dourado);
  border: 1px solid rgba(226, 184, 66, 0.15);
}

.dor-box-min h3, .solucao-box-min h3 {
  font-family: var(--font-titulo);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 6px;
}

.box-subtitle {
  font-size: 0.875rem;
  color: var(--cinza-nevoa);
  margin-bottom: 32px;
}

.min-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.min-list li {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--texto-sec);
  padding-left: 20px;
  position: relative;
}

.min-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
}

.dor-box-min .min-list li::before {
  background: #EF4444;
}

.solucao-box-min .min-list li::before {
  background: var(--dourado);
}

.min-list li span {
  font-weight: 600;
  color: var(--off-white);
  display: block;
  margin-bottom: 2px;
}
/* ===== DEGRADÊ ENTRE SEÇÕES (GRADIENT BRIDGE) ===== */
/*
 * Elemento de transição suave entre seções com cores de fundo diferentes.
 * Elimina a linha de corte abrupta entre seções adjacentes.
 */
.gradient-bridge {
  display: block;
  width: 100%;
  height: 32px;
  pointer-events: none;
  position: relative;
  z-index: 0;
}

/* Dor/Solução (#171E32) → Serviços (#151D30) */
.gradient-bridge--dor-to-servicos {
  background: linear-gradient(to bottom, #171E32, #151D30);
}

/* Nossa História → Educação e Segurança (ambas em grafite #0B0F19) */
.gradient-bridge--sobre-to-videos {
  background: #0B0F19;
  height: 0; /* Invisível — o trabalho foi remover o ::before que causava o corte */
}

/* ===== SERVIÇOS PREMIUM — SPOTLIGHT GRID ===== */
.servicos {
  padding: 100px 0;
  background: var(--carvao);
  position: relative;
  overflow: hidden;
}

.servicos-spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(226, 184, 66, 0.03), transparent 40%);
  transition: background 0.3s ease;
}

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

/* Grid 3x2 */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.svc-tile {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--grafite);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
}

.svc-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(226, 184, 66, 0.2), transparent 40%, rgba(226, 184, 66, 0.05));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 2;
}

.svc-tile:hover::before {
  opacity: 1;
}

.svc-tile-spotlight {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(400px circle at var(--tile-x, 50%) var(--tile-y, 50%), rgba(226, 184, 66, 0.06), transparent 50%);
}

.svc-tile:hover .svc-tile-spotlight {
  opacity: 1;
}

.svc-tile-border {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  pointer-events: none;
  z-index: 2;
  box-shadow: inset 0 0 0 1px rgba(226, 184, 66, 0);
  transition: box-shadow 0.5s ease;
}

.svc-tile:hover .svc-tile-border {
  box-shadow: inset 0 0 0 1px rgba(226, 184, 66, 0.2);
}

.svc-tile-inner {
  position: relative;
  z-index: 3;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.svc-tile-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.svc-tile-tag {
  font-family: var(--font-titulo);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dourado);
  padding: 4px 12px;
  background: rgba(226, 184, 66, 0.08);
  border: 1px solid rgba(226, 184, 66, 0.15);
  border-radius: 100px;
  transition: all 0.4s ease;
}

.svc-tile:hover .svc-tile-tag {
  background: rgba(226, 184, 66, 0.15);
  border-color: rgba(226, 184, 66, 0.3);
}

.svc-tile-num {
  font-family: var(--font-titulo);
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(226, 184, 66, 0.25);
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.svc-tile:hover .svc-tile-num {
  color: rgba(226, 184, 66, 0.5);
}

.svc-tile-icon {
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(226, 184, 66, 0.1), rgba(226, 184, 66, 0.02));
  border: 1px solid rgba(226, 184, 66, 0.15);
  border-radius: 16px;
  margin-bottom: 20px;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.svc-tile:hover .svc-tile-icon {
  background: linear-gradient(135deg, rgba(226, 184, 66, 0.18), rgba(226, 184, 66, 0.06));
  border-color: rgba(226, 184, 66, 0.3);
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 24px rgba(226, 184, 66, 0.1);
}

.svc-tile-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--dourado);
  transition: all 0.4s ease;
}

.svc-tile:hover .svc-tile-icon svg {
  stroke: var(--dourado-claro);
  filter: drop-shadow(0 0 6px rgba(226, 184, 66, 0.3));
}

.svc-tile h3 {
  font-family: var(--font-titulo);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 10px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.svc-tile:hover h3 {
  color: var(--dourado-claro);
}

.svc-tile p {
  font-size: 0.875rem;
  color: var(--cinza-nevoa);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
  transition: color 0.3s ease;
}

.svc-tile:hover p {
  color: rgba(241, 245, 249, 0.85);
}

.svc-tile-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-titulo);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dourado);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  width: fit-content;
  position: relative;
  padding: 2px 0;
}

.svc-tile-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.svc-tile-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--dourado), var(--dourado-claro));
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.svc-tile-link:hover {
  color: var(--dourado-claro);
  gap: 12px;
}

.svc-tile-link:hover svg {
  transform: translateX(4px);
}

.svc-tile-link:hover::after {
  width: 100%;
}

/* ===== COMO FUNCIONA PREMIUM — PROCESS TIMELINE ===== */
/* ===== COMO FUNCIONA — REDESIGN COM SETAS ===== */
.como-funciona {
  padding: 120px 0 100px;
  background: var(--grafite);
  position: relative;
  overflow: hidden;
}

/* Linha de brilho vertical central decorativa */
.como-funciona::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(226, 184, 66, 0.06), transparent);
  pointer-events: none;
  z-index: 0;
}

/* Cabeçalho da seção em duas colunas */
.cf-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 72px;
}

.cf-header-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cf-header-left .section-title {
  text-align: left;
  margin-top: 8px;
}

.cf-header-desc {
  font-size: 1rem;
  color: var(--cinza-nevoa);
  line-height: 1.7;
  padding-left: 24px;
  border-left: 2px solid rgba(226, 184, 66, 0.25);
  align-self: center;
}

/* Grade horizontal dos passos com setas */
.cf-steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Card de cada passo */
.cf-step {
  position: relative;
  padding: 40px 32px 32px;
  background: linear-gradient(145deg, rgba(21, 29, 48, 0.7) 0%, rgba(11, 15, 25, 0.85) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  height: 360px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
  overflow: hidden;
}

/* Detalhe dourado superior ao hover */
.cf-step::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--dourado), var(--dourado-claro));
  transition: right 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.cf-step:hover::after {
  right: 0;
}

.cf-step:hover {
  border-color: rgba(226, 184, 66, 0.18);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35), 0 0 32px rgba(226, 184, 66, 0.04);
}

/* Número de fundo como marca d'água */
.cf-step-number {
  position: absolute;
  top: -8px;
  right: 20px;
  font-family: var(--font-titulo);
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(226, 184, 66, 0.055);
  pointer-events: none;
  user-select: none;
  transition: color 0.4s ease;
}

.cf-step:hover .cf-step-number {
  color: rgba(226, 184, 66, 0.11);
}

/* Ícone do passo */
.cf-step-icon-wrap {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(226, 184, 66, 0.07);
  border: 1px solid rgba(226, 184, 66, 0.18);
  border-radius: 14px;
  margin-bottom: 24px;
  transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.cf-step:hover .cf-step-icon-wrap {
  background: rgba(226, 184, 66, 0.14);
  border-color: rgba(226, 184, 66, 0.35);
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(226, 184, 66, 0.12);
}

.cf-step-icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: var(--dourado);
  transition: filter 0.3s ease, stroke 0.3s ease;
}

.cf-step:hover .cf-step-icon-wrap svg {
  stroke: var(--dourado-claro);
  filter: drop-shadow(0 0 6px rgba(226, 184, 66, 0.3));
}

/* Corpo de texto do passo */
.cf-step-body h3 {
  font-family: var(--font-titulo);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.cf-step:hover .cf-step-body h3 {
  color: var(--dourado-claro);
}

.cf-step-body p {
  font-size: 0.875rem;
  color: var(--cinza-nevoa);
  line-height: 1.7;
  margin: 0 0 24px;
  transition: color 0.3s ease;
}

.cf-step:hover .cf-step-body p {
  color: rgba(241, 245, 249, 0.8);
}

/* Tags informativas do passo */
.cf-step-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cf-tag {
  font-family: var(--font-titulo);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dourado);
  padding: 5px 12px;
  background: rgba(226, 184, 66, 0.06);
  border: 1px solid rgba(226, 184, 66, 0.12);
  border-radius: 100px;
  transition: all 0.3s ease;
}

.cf-step:hover .cf-tag {
  background: rgba(226, 184, 66, 0.12);
  border-color: rgba(226, 184, 66, 0.28);
}

/* Container das setas SVG entre os passos */
.cf-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 8px;
  padding-top: 56px; /* Alinha verticalmente com o ícone dos passos */
  color: rgba(226, 184, 66, 0.4);
  flex-shrink: 0;
}

.cf-arrow-svg {
  width: 100px;
  height: 36px;
  overflow: visible;
  transition: color 0.4s ease;
}

/* Animação de rastro tracejado da seta */
.cf-arrow-path {
  stroke-dasharray: 6 5;
  animation: dash-flow 2s linear infinite;
}

@keyframes dash-flow {
  to {
    stroke-dashoffset: -22;
  }
}

.cf-arrow-label {
  font-family: var(--font-titulo);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(226, 184, 66, 0.35);
  white-space: nowrap;
}

/* ===== SEPARADOR DE SEÇÃO PREMIUM ===== */
.section-divider {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 40px;
  background: var(--grafite);
  position: relative;
  z-index: 1;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(226, 184, 66, 0.2), rgba(226, 184, 66, 0.35), rgba(226, 184, 66, 0.2), transparent);
}

.divider-ornament {
  flex-shrink: 0;
  padding: 0 20px;
  color: rgba(226, 184, 66, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.divider-ornament svg {
  width: 22px;
  height: 22px;
  display: block;
  animation: ornament-spin 12s linear infinite;
}

@keyframes ornament-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ===== CALCULADORA DE EMPRÉSTIMO ===== */
.calculadora-section {
  padding: 100px 0;
  background: radial-gradient(circle at 15% 75%, rgba(226, 184, 66, 0.035) 0%, transparent 60%), var(--grafite);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(226, 184, 66, 0.05);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.calc-content {
  display: flex;
  flex-direction: column;
}

.calc-description {
  font-size: 1.0625rem;
  color: var(--cinza-nevoa);
  line-height: 1.7;
  margin-top: 24px;
  margin-bottom: 36px;
}

.calc-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.calc-benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--off-white);
}

.calc-benefit-item svg {
  flex-shrink: 0;
}

.calc-card {
  background: var(--carvao);
  border: 1px solid rgba(226, 184, 66, 0.08);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 50px rgba(226, 184, 66, 0.02);
  display: flex;
  flex-direction: column;
}

.calc-tabs {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 32px;
  gap: 4px;
}

.calc-tab {
  flex: 1;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--cinza-nevoa);
  font-family: var(--font-titulo);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 12px 8px;
  cursor: pointer;
  transition: all 0.3s var(--transition);
}

.calc-tab:hover {
  color: var(--off-white);
}

.calc-tab.active {
  color: var(--dourado);
  border-bottom-color: var(--dourado);
  background: rgba(226, 184, 66, 0.03);
}

.calc-body {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.calc-control-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.calc-control-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-titulo);
  font-size: 0.875rem;
  color: var(--off-white);
  font-weight: 600;
}

.calc-val-display {
  color: var(--dourado);
  font-size: 1.125rem;
  font-weight: 700;
}

.calc-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  transition: background 0.3s;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--dourado);
  border: 3px solid var(--carvao);
  box-shadow: 0 0 12px rgba(226, 184, 66, 0.4);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.25);
  background: var(--dourado-claro);
}

.calc-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--dourado);
  border: 3px solid var(--carvao);
  box-shadow: 0 0 12px rgba(226, 184, 66, 0.4);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.calc-slider::-moz-range-thumb:hover {
  transform: scale(1.25);
  background: var(--dourado-claro);
}

.calc-slider-limits {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--cinza-nevoa);
  margin-top: -4px;
}

.calc-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(11, 15, 25, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 24px 28px;
  margin-top: 12px;
}

.calc-result-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.result-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cinza-nevoa);
}

.result-value {
  font-family: var(--font-titulo);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--dourado);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.result-value-sub {
  font-family: var(--font-titulo);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--off-white);
}

.calc-result-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
}

.calc-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--dourado);
  color: var(--grafite);
  padding: 18px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-titulo);
  font-size: 0.9375rem;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 10px 24px rgba(226, 184, 66, 0.15);
}

.calc-cta-btn:hover {
  background: var(--dourado-claro);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(226, 184, 66, 0.25);
}

.calc-cta-btn svg {
  fill: currentColor;
  transition: transform 0.3s var(--transition);
}

.calc-cta-btn:hover svg {
  transform: scale(1.1) rotate(5deg);
}

.calc-footer-info {
  font-size: 0.75rem;
  color: var(--cinza-nevoa);
  text-align: center;
  margin-top: 8px;
}

/* ===== NOSSA ESTRUTURA PREMIUM ===== */
.estrutura {
  padding: 120px 0;
  background: var(--carvao);
  position: relative;
  overflow: hidden;
}

.estrutura-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.estrutura-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
  background: radial-gradient(circle, rgba(226, 184, 66, 0.06), transparent 70%);
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  animation: orbPulse 15s ease-in-out infinite;
}

@keyframes orbPulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.3; }
  50% { transform: translateX(-50%) scale(1.15); opacity: 0.4; }
}

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

.estrutura-showcase {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  height: 600px;
  max-width: 1100px;
  margin: 0 auto;
}

.estrutura-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.estrutura-card--featured {
  grid-row: span 2;
}

.estrutura-card-shine {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.03) 45%,
    rgba(255, 255, 255, 0.06) 50%,
    rgba(255, 255, 255, 0.03) 55%,
    transparent 60%
  );
  background-size: 200% 200%;
  background-position: 100% 0;
  transition: background-position 0.8s ease;
  opacity: 0;
}

.estrutura-card:hover .estrutura-card-shine {
  opacity: 1;
  background-position: -100% 0;
}

.estrutura-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
}

.estrutura-card-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(226, 184, 66, 0.15), transparent 50%, rgba(226, 184, 66, 0.05));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 2;
}

.estrutura-card:hover .estrutura-card-inner::after {
  opacity: 1;
}

.estrutura-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  filter: brightness(0.85);
}

.estrutura-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.95);
}

.estrutura-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 32px 32px;
  background: linear-gradient(to top, rgba(11, 15, 25, 0.95) 0%, rgba(11, 15, 25, 0.6) 50%, transparent 100%);
  z-index: 2;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.estrutura-card:hover .estrutura-card-overlay {
  background: linear-gradient(to top, rgba(11, 15, 25, 0.98) 0%, rgba(11, 15, 25, 0.7) 60%, transparent 100%);
  padding-bottom: 40px;
}

.estrutura-card-meta {
  margin-bottom: 12px;
}

.estrutura-card-tag {
  font-family: var(--font-titulo);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--dourado);
  padding: 5px 14px;
  background: rgba(226, 184, 66, 0.1);
  border: 1px solid rgba(226, 184, 66, 0.2);
  border-radius: 100px;
  display: inline-block;
  transition: all 0.4s ease;
}

.estrutura-card:hover .estrutura-card-tag {
  background: rgba(226, 184, 66, 0.18);
  border-color: rgba(226, 184, 66, 0.35);
  box-shadow: 0 4px 16px rgba(226, 184, 66, 0.1);
}

.estrutura-card-overlay h3 {
  font-family: var(--font-titulo);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 8px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.estrutura-card:hover .estrutura-card-overlay h3 {
  color: var(--dourado-claro);
}

.estrutura-card-overlay p {
  font-size: 0.875rem;
  color: var(--cinza-nevoa);
  line-height: 1.6;
  max-width: 320px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.estrutura-card:hover .estrutura-card-overlay p {
  opacity: 1;
  transform: translateY(0);
}

.estrutura-card--featured .estrutura-card-overlay h3 {
  font-size: 1.625rem;
  margin-bottom: 12px;
}

.estrutura-card--featured .estrutura-card-overlay p {
  font-size: 0.9375rem;
  max-width: 400px;
}

/* ===== SOBRE / CREDENCIAIS ===== */
.sobre {
  padding: 120px 0;
  background: radial-gradient(circle at 10% 20%, rgba(23, 30, 50, 0.4) 0%, var(--grafite) 90%);
  position: relative;
  overflow: hidden;
}

.sobre::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(226, 184, 66, 0.15), transparent);
}

/* Dissolve a borda inferior da seção para eliminar linha de corte */
.sobre::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #0B0F19);
  pointer-events: none;
  z-index: 2;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  grid-template-rows: auto auto;
  gap: 30px 80px;
  align-items: center;
}

/* Coluna de Mídia */
.sobre-media {
  position: relative;
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
}

.sobre-header-col {
  grid-column: 2;
  grid-row: 1;
}

.sobre-details {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ===== VÍDEO PREMIUM — NOSSA HISTÓRIA ===== */
.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-width: 360px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.5), 
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 0 80px rgba(0,0,0,0.2);
  cursor: pointer;
  background: var(--carvao);
  transition: box-shadow 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.video-container:hover {
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.6), 
    0 0 0 1px rgba(226, 184, 66, 0.15),
    inset 0 0 60px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
  filter: brightness(0.85) saturate(0.95);
  border-radius: 28px;
}

/* No hover do container, garante que controles nativos apareçam por cima */
.video-container:hover video::-webkit-media-controls-panel {
  opacity: 1 !important;
}

/* Quando o vídeo está em play, ajusta z-index da legenda para não sobrepor controles */
.video-container.playing .video-caption-premium {
  z-index: 3;
  padding-bottom: 50px;
}

.video-container.playing:hover .video-caption-premium {
  padding-bottom: 54px;
}

.video-container:hover video {
  transform: scale(1.05);
  filter: brightness(0.95) saturate(1.05);
}

/* Overlay central — play/pause */
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 15, 25, 0.85) 0%, transparent 50%, rgba(11, 15, 25, 0.3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.5s ease, opacity 0.4s ease;
}

.video-container:hover .video-overlay {
  background: linear-gradient(to top, rgba(11, 15, 25, 0.75) 0%, transparent 55%, rgba(11, 15, 25, 0.2) 100%);
}

.video-play-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--dourado);
  color: var(--grafite);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(226, 184, 66, 0.35), 0 0 0 4px rgba(226, 184, 66, 0.1);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 3;
}

.video-play-icon .pause-symbol {
  display: none;
}

.video-play-icon.playing {
  background: rgba(11, 15, 25, 0.85);
  color: var(--dourado);
  border: 1px solid rgba(226, 184, 66, 0.25);
  transform: scale(0.88);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3), 0 0 0 3px rgba(226, 184, 66, 0.08);
}

/* Vídeo da Nossa História: botão de pausa some quando não está em hover */
.sobre-media .video-container .video-play-icon.playing {
  opacity: 0;
}

.sobre-media .video-container:hover .video-play-icon.playing {
  opacity: 1;
}

.video-play-icon .play-symbol {
  display: inline;
}

.video-play-icon .pause-symbol {
  display: none;
}

.video-play-icon.playing .play-symbol {
  display: none;
}

.video-play-icon.playing .pause-symbol {
  display: inline;
}

/* Só o ícone de pausa nos cards da grid */
.video-card-premium .video-play-icon.playing .pause-symbol {
  display: inline;
  color: var(--dourado);
}

/* Cards da grid: botão de pausa sempre visível quando playing */
.video-card-premium .video-container .video-play-icon.playing {
  opacity: 0;
}

.video-card-premium .video-container:hover .video-play-icon.playing {
  opacity: 1;
}

/* Badge superior esquerdo */
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  background: rgba(11, 15, 25, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--off-white);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: all 0.4s ease;
}

.video-container:hover .video-badge {
  background: rgba(11, 15, 25, 0.9);
  border-color: rgba(226, 184, 66, 0.15);
  transform: translateY(-2px);
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background: var(--dourado);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--dourado);
  animation: pulse-sobre 1.8s infinite;
}

@keyframes pulse-sobre {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Botões superiores direito — aparecem só quando o vídeo está em play */
.video-top-controls {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 4;
  display: flex;
  gap: 10px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Quando o vídeo está em play, botões aparecem */
.video-container.playing .video-top-controls,
.video-card-premium .video-container.playing .video-top-controls {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

/* No hover do container em play, mantém visível */
.video-container.playing:hover .video-top-controls,
.video-card-premium .video-container.playing:hover .video-top-controls {
  opacity: 1;
  transform: translateY(0);
}

.video-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(11, 15, 25, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--off-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.video-icon-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--dourado);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.video-icon-btn:hover::before {
  transform: scale(1);
}

.video-icon-btn:hover {
  border-color: var(--dourado);
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 6px 20px rgba(226, 184, 66, 0.3);
}

.video-icon-btn .btn-icon {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.video-icon-btn:hover .btn-icon {
  color: var(--grafite);
}

/* Ícones de som — toggle visibilidade */
.video-icon-btn .icon-sound {
  display: none;
}

.video-icon-btn.sound-active .icon-mute {
  display: none;
}

.video-icon-btn.sound-active .icon-sound {
  display: inline;
}

/* ===== LEGENDA PREMIUM INFERIOR (dentro do vídeo) ===== */
.video-caption-premium {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 50px 24px 24px;
  background: linear-gradient(to top, rgba(11, 15, 25, 0.95) 0%, rgba(11, 15, 25, 0.7) 40%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.5s ease;
  pointer-events: none;
}

.video-caption-premium > * {
  pointer-events: auto;
}

.video-container:hover .video-caption-premium {
  padding-bottom: 28px;
  background: linear-gradient(to top, rgba(11, 15, 25, 0.98) 0%, rgba(11, 15, 25, 0.8) 50%, transparent 100%);
}

.video-caption-line {
  width: 40px;
  height: 2px;
  background: var(--dourado);
  border-radius: 2px;
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.video-container:hover .video-caption-line {
  width: 60px;
}

.video-caption-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.video-caption-name {
  font-family: var(--font-titulo);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--off-white);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.video-caption-title {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--dourado);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.video-container:hover .video-caption-title {
  opacity: 1;
}

/* Remover legenda antiga externa (se ainda existir) */
.sobre-media-caption {
  display: none;
}

/* Modal de Vídeo Premium */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.video-modal.active {
  opacity: 1;
  pointer-events: all;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1;
}

.video-modal-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 380px; /* Proporção ideal para celular 9:16 vertical */
  aspect-ratio: 9 / 16;
  max-height: 85vh;
  background: var(--carvao);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(226, 184, 66, 0.2);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
}

.video-modal.active .video-modal-content {
  transform: scale(1) translateY(0);
}

.video-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(11, 15, 25, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.video-modal-close:hover {
  background: var(--dourado);
  color: var(--grafite);
  transform: rotate(90deg);
}

.video-modal-player-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  flex-direction: column;
}

.video-modal-player-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
  border-radius: 24px;
}

/* Estilização da barra de controles nativa do HTML5 video */
.video-modal-player-wrapper video::-webkit-media-controls {
  border-radius: 0 0 24px 24px;
  overflow: hidden;
}

.video-modal-player-wrapper video::-webkit-media-controls-panel {
  background: linear-gradient(to top, rgba(11, 15, 25, 0.95) 0%, rgba(11, 15, 25, 0.7) 60%, transparent 100%) !important;
  padding-bottom: 12px;
}

.video-modal-player-wrapper video::-webkit-media-controls-play-button {
  filter: invert(1) sepia(1) saturate(5) hue-rotate(10deg);
  cursor: pointer;
}

.video-modal-player-wrapper video::-webkit-media-controls-timeline {
  cursor: pointer;
  padding: 0 8px;
}

.video-modal-player-wrapper video::-webkit-media-controls-current-time-display,
.video-modal-player-wrapper video::-webkit-media-controls-time-remaining-display {
  color: var(--off-white) !important;
  font-family: var(--font-corpo) !important;
  font-size: 0.75rem !important;
  font-weight: 500;
}

.video-modal-player-wrapper video::-webkit-media-controls-volume-slider {
  cursor: pointer;
}

.video-modal-player-wrapper video::-webkit-media-controls-fullscreen-button {
  filter: invert(1) sepia(1) saturate(5) hue-rotate(10deg);
  cursor: pointer;
}

/* Quando entra em tela cheia do navegador, desativa o crop/zoom (object-fit: contain) */
.video-modal-player-wrapper video:fullscreen {
  object-fit: contain !important;
  background-color: #000 !important;
  border-radius: 0;
}

.video-modal-player-wrapper video:-webkit-full-screen {
  object-fit: contain !important;
  background-color: #000 !important;
  border-radius: 0;
}

/* Remove os controles customizados antigos (mantido para compatibilidade se ainda existir em algum lugar) */
.video-modal-controls {
  display: none !important;
}

.video-modal-btn {
  display: none !important;
}

/* Coluna de Conteúdo */
.sobre-header-col h2, .sobre-text h2 {
  font-family: var(--font-titulo);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 24px;
  line-height: 1.2;
}

.sobre-details p, .sobre-text p {
  font-size: 0.95rem;
  color: var(--cinza-nevoa);
  line-height: 1.75;
  margin-bottom: 14px;
}

.sobre-details p.lead, .sobre-text p.lead {
  font-size: 1.125rem;
  color: var(--off-white);
  font-weight: 500;
  line-height: 1.6;
}

.sobre-details strong, .sobre-text strong {
  color: var(--dourado);
}

/* Painel de Estatísticas Premium (2 colunas horizontais) */
.sobre-stats {
  display: flex;
  align-items: stretch;
  background: rgba(21, 29, 48, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  max-width: 520px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.stat-item {
  flex: 1;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  transition: background 0.4s ease;
}

.stat-item:hover {
  background: rgba(226, 184, 66, 0.03);
}

.stat-item .counter-number {
  font-family: var(--font-titulo);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--dourado);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-item .stat-label {
  font-size: 0.8125rem;
  color: var(--cinza-nevoa);
  line-height: 1.5;
  font-weight: 400;
}

/* Divisor vertical dourado entre as estatísticas */
.stat-divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(226, 184, 66, 0.3), transparent);
  align-self: stretch;
  margin: 20px 0;
}


/* ===== CENTRAL DE VÍDEOS PREMIUM ===== */
.videos-premium {
  padding: 100px 0;
  background: var(--grafite); /* Alterna com o fundo radial e depoimentos */
  position: relative;
}



.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin: 50px auto 0;
  max-width: 800px;
}

.video-card-premium {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.video-card-premium .video-container {
  aspect-ratio: 9 / 16;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.5), 
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 0 80px rgba(0,0,0,0.2);
  background: var(--carvao);
  transition: box-shadow 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
}

.video-card-premium .video-container:hover {
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.6), 
    0 0 0 1px rgba(226, 184, 66, 0.15),
    inset 0 0 60px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.video-card-premium .video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
  filter: brightness(0.85) saturate(0.95);
}

.video-card-premium .video-container:hover video {
  transform: scale(1.05);
  filter: brightness(0.95) saturate(1.05);
}

.video-card-premium .video-container .video-overlay {
  background: linear-gradient(to top, rgba(11, 15, 25, 0.85) 0%, transparent 50%, rgba(11, 15, 25, 0.3) 100%);
  transition: background 0.5s ease, opacity 0.4s ease;
}

.video-card-premium .video-container:hover .video-overlay {
  background: linear-gradient(to top, rgba(11, 15, 25, 0.75) 0%, transparent 55%, rgba(11, 15, 25, 0.2) 100%);
}

.video-card-premium .video-container .video-play-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--dourado);
  color: var(--grafite);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(226, 184, 66, 0.35), 0 0 0 4px rgba(226, 184, 66, 0.1);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 3;
}

.video-card-premium .video-container .video-play-icon.playing {
  background: rgba(11, 15, 25, 0.9);
  color: var(--dourado);
  border: 1px solid rgba(226, 184, 66, 0.3);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 0 0 4px rgba(226, 184, 66, 0.1);
}

.video-card-premium .video-container .video-play-icon .pause-symbol {
  display: none;
}

.video-card-premium .video-container .video-play-icon.playing .pause-symbol {
  display: inline;
  color: var(--dourado);
}


.video-card-premium .video-container:hover .video-play-icon {
  transform: none;
  box-shadow: 0 8px 28px rgba(226, 184, 66, 0.35), 0 0 0 4px rgba(226, 184, 66, 0.1);
}

/* Só o ícone de pausa visível nos cards */
.video-card-premium .video-container .video-play-icon.playing {
  opacity: 0;
}

.video-card-premium .video-container:hover .video-play-icon.playing {
  opacity: 1;
}

.video-card-premium .video-container .video-caption-premium {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 50px 24px 24px;
  background: linear-gradient(to top, rgba(11, 15, 25, 0.95) 0%, rgba(11, 15, 25, 0.7) 40%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.5s ease;
}

.video-card-premium .video-container:hover .video-caption-premium {
  padding-bottom: 28px;
  background: linear-gradient(to top, rgba(11, 15, 25, 0.98) 0%, rgba(11, 15, 25, 0.8) 50%, transparent 100%);
}

.video-card-premium .video-container .video-caption-line {
  width: 40px;
  height: 2px;
  background: var(--dourado);
  border-radius: 2px;
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.video-card-premium .video-container:hover .video-caption-line {
  width: 60px;
}

.video-card-premium .video-container .video-caption-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.video-card-premium .video-container .video-caption-name {
  font-family: var(--font-titulo);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--off-white);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.video-card-premium .video-container .video-caption-title {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--dourado);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.video-card-premium .video-container:hover .video-caption-title {
  opacity: 1;
}

.video-card-premium .video-container .video-badge {
  top: 20px;
  left: 20px;
  z-index: 3;
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(11, 15, 25, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  transition: all 0.4s ease;
}

.video-card-premium .video-container:hover .video-badge {
  background: rgba(11, 15, 25, 0.85);
  border-color: rgba(226, 184, 66, 0.2);
}

.video-card-premium .video-container .video-top-controls {
  top: 20px;
  right: 20px;
  z-index: 3;
  gap: 10px;
}

.video-card-premium .video-container .video-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(11, 15, 25, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  font-size: 0.875rem;
}

.video-card-premium .video-container .video-icon-btn:hover {
  background: rgba(226, 184, 66, 0.15);
  border-color: rgba(226, 184, 66, 0.3);
  color: var(--dourado);
  transform: scale(1.1);
}

.video-card-premium .video-container .video-progress-bar,
.sobre-media .video-container .video-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 5;
  cursor: pointer;
  transition: height 0.3s ease;
  border-radius: 0 0 28px 28px;
  overflow: hidden;
}

.video-card-premium .video-container:hover .video-progress-bar,
.sobre-media .video-container:hover .video-progress-bar {
  height: 5px;
}

.video-card-premium .video-container .video-progress-fill,
.sobre-media .video-container .video-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--dourado), var(--dourado-claro));
  border-radius: 0 0 0 28px;
  transition: width 0.1s linear;
  position: relative;
}

.video-card-premium .video-container .video-progress-fill::after,
.sobre-media .video-container .video-progress-fill::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--dourado);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(226, 184, 66, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-card-premium .video-container:hover .video-progress-fill::after,
.sobre-media .video-container:hover .video-progress-fill::after {
  opacity: 1;
}

.video-card-premium .video-container .video-progress-bar:hover .video-progress-fill::after,
.sobre-media .video-container .video-progress-bar:hover .video-progress-fill::after {
  opacity: 1;
  transform: translateY(-50%) scale(1.2);
}

.video-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 4px;
}

.video-info h3 {
  font-family: var(--font-titulo);
  color: var(--off-white);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.video-card-premium:hover .video-info h3 {
  color: var(--dourado);
}

.video-info p {
  font-size: 0.875rem;
  color: var(--cinza-nevoa);
  line-height: 1.6;
}

/* Responsivo para os Vídeos Grid */
@media (max-width: 992px) {
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 650px) {
  .videos-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .video-card-premium .video-container {
    max-width: 320px;
    margin: 0 auto;
  }
  
  .video-info {
    text-align: center;
    max-width: 320px;
    margin: 0 auto;
  }
}

/* ===== DEPOIMENTOS ===== */
.depoimentos {
  padding: 100px 0;
  background: radial-gradient(circle at 10% 20%, rgba(23, 30, 50, 0.4) 0%, var(--carvao) 90%);
  position: relative;
  overflow: hidden;
}

.depoimentos-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.depoimentos-orb {
  position: absolute;
  top: 50%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(226, 184, 66, 0.04) 0%, transparent 70%);
  transform: translateY(-50%);
  filter: blur(80px);
}

.depoimentos .container {
  position: relative;
  z-index: 2;
}

.depoimentos-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.depoimentos-info {
  display: flex;
  flex-direction: column;
}

.depoimentos-info .section-title {
  text-align: left;
  margin-top: 8px;
}

.depoimentos-desc {
  font-size: 0.95rem;
  color: var(--cinza-nevoa);
  line-height: 1.65;
  margin-top: 16px;
  margin-bottom: 32px;
}

/* Card Google Reputação Compacto */
.google-rating-card {
  background: rgba(21, 29, 48, 0.45);
  border: 1px solid rgba(226, 184, 66, 0.15);
  border-radius: 24px;
  padding: 6px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  max-width: 420px;
}

.gr-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--off-white);
  font-weight: 600;
  transition: var(--transition);
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  width: 100%;
}

.gr-link:hover {
  background: rgba(226, 184, 66, 0.08);
  border-color: rgba(226, 184, 66, 0.25);
  color: var(--dourado);
}

.gr-link svg {
  flex-shrink: 0;
  opacity: 0.6;
  transition: var(--transition);
}

.gr-link:hover svg {
  opacity: 1;
  transform: translate(2px, -2px);
}

.gr-header,
.gr-logo,
.gr-stars-wrap,
.gr-stars,
.gr-score,
.gr-body,
.gr-bar-row,
.gr-bar,
.gr-bar-fill {
  display: none;
}

/* Coluna da Pilha de Cards 3D */
.depoimentos-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  position: relative;
  width: 100%;
}

.depo-stack-container {
  position: relative;
  width: 100%;
  max-width: 460px;
  height: 320px; /* Mantém a seção pequena e controlada verticalmente */
}

/* Card 3D Individual */
.depo-stack-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(21, 29, 48, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5);
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.45s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transform-origin: bottom center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Marca d'água de aspas */
.depo-stack-card::before {
  content: '“';
  position: absolute;
  top: -20px;
  right: 20px;
  font-size: 10rem;
  font-family: var(--font-titulo);
  font-weight: 900;
  color: rgba(226, 184, 66, 0.012);
  line-height: 1;
  pointer-events: none;
  transition: color 0.4s ease;
}

.depo-stack-card:hover {
  border-color: rgba(226, 184, 66, 0.25);
}

.depo-stack-card:hover::before {
  color: rgba(226, 184, 66, 0.025);
}

/* Efeito físico de descarte lateral (Swipe-Out) */
.depo-stack-card.swipe-out {
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}

/* Estrutura interna do card */
.depo-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  width: 100%;
}

.depo-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.depo-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(226, 184, 66, 0.12) 0%, rgba(226, 184, 66, 0.02) 100%);
  border: 1px solid rgba(226, 184, 66, 0.2);
  color: var(--dourado);
  font-family: var(--font-titulo);
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.depo-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.depo-author {
  font-family: var(--font-titulo);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--off-white);
}

.depo-verified {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--dourado);
}

.verified-icon {
  width: 10px;
  height: 10px;
  stroke: var(--dourado);
}

.depo-time {
  font-size: 0.75rem;
  color: var(--cinza-nevoa);
}

.depo-stars {
  color: var(--dourado);
  font-size: 0.8125rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.depo-text {
  font-size: 0.875rem;
  color: var(--texto-sec);
  line-height: 1.6;
  margin: 0;
  font-style: normal;
}

/* Área de Controles da Pilha */
.depo-stack-controls {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 12px;
}

.stack-control-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(21, 29, 48, 0.6);
  border: 1px solid rgba(226, 184, 66, 0.25);
  color: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  outline: none;
}

.stack-control-btn:hover {
  background: var(--dourado);
  color: var(--grafite);
  border-color: var(--dourado);
  transform: scale(1.05);
  box-shadow: 0 0 16px rgba(226, 184, 66, 0.3);
}

.stack-control-btn svg {
  transition: transform 0.3s ease;
}

.stack-control-btn:hover svg {
  transform: scale(1.1);
}

.stack-counter {
  font-family: var(--font-titulo);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--dourado);
  letter-spacing: 1px;
}

/* Responsividade da Pilha */
@media (max-width: 1024px) {
  .depoimentos-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  
  .depoimentos-info {
    text-align: center;
    align-items: center;
  }
  
  .depoimentos-info .section-title {
    text-align: center;
  }
  
  .google-rating-card {
    max-width: 420px;
  }
}

@media (max-width: 500px) {
  .depo-stack-container {
    height: 350px; /* Um pouco mais alto em telas muito estreitas para acomodar o texto */
  }
  
  .depo-stack-card {
    padding: 24px;
  }
  
  .stack-control-btn {
    width: 44px;
    height: 44px;
  }
}

/* ===== FAQ ===== */
.faq {
  padding: 120px 0;
  background: radial-gradient(circle at 90% 80%, rgba(23, 30, 50, 0.4) 0%, var(--grafite) 80%);
  position: relative;
  overflow: hidden;
  min-height: 850px; /* Garante que a seção não cresça e desça a página ao abrir as respostas */
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(226, 184, 66, 0.12), transparent);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: flex-start;
}

.faq-info {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
}

.faq-info .section-header {
  margin-bottom: 20px;
  text-align: left;
}

.faq-intro {
  font-size: 0.95rem;
  color: var(--cinza-nevoa);
  line-height: 1.7;
  margin-bottom: 40px;
}

.faq-cta-box {
  background: var(--carvao);
  border: 1px solid rgba(226, 184, 66, 0.1);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.faq-cta-box h4 {
  font-family: var(--font-titulo);
  color: var(--off-white);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.faq-cta-box p {
  font-size: 0.8125rem;
  color: var(--cinza-nevoa);
  line-height: 1.45;
  margin-bottom: 20px;
}

.faq-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dourado);
  color: var(--grafite);
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-cta-link svg {
  transition: transform 0.3s ease;
}

.faq-cta-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(226, 184, 66, 0.3);
}

.faq-cta-link:hover svg {
  transform: translateX(4px);
}

.faq-list {
  width: 100%;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.faq-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 20px;
  background: none;
  border: none;
  color: var(--off-white);
  font-family: var(--font-titulo);
  font-size: 1.0625rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-item:hover .faq-question {
  color: var(--dourado);
  background: rgba(255, 255, 255, 0.02);
}

.faq-item.active {
  background: rgba(226, 184, 66, 0.015);
  border-bottom-color: rgba(226, 184, 66, 0.2);
}

.faq-item.active .faq-question {
  color: var(--dourado);
}

.faq-arrow {
  width: 18px;
  height: 18px;
  stroke: var(--dourado);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

/* Transição de Altura Ultra-Suave (Grid CSS Trick) */
.faq-answer-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.faq-answer-inner {
  overflow: hidden;
  min-height: 0; /* Essencial para a renderização correta da transição do Grid */
}

.faq-answer-inner p {
  font-size: 0.95rem;
  color: var(--cinza-nevoa);
  line-height: 1.75;
  padding: 8px 24px 28px 36px; /* Aumentado padding esquerdo para acomodar a barra lateral dourada */
  margin: 0;
  position: relative;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Efeito de fade-in e subida suave quando ativo */
.faq-item.active .faq-answer-inner p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

/* Detalhe de linha dourada vertical premium no lado esquerdo da resposta */
.faq-answer-inner p::before {
  content: '';
  position: absolute;
  top: 8px;
  bottom: 28px;
  left: 20px;
  width: 2px;
  background: linear-gradient(to bottom, var(--dourado) 0%, rgba(226, 184, 66, 0.1) 100%);
  border-radius: 4px;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.active .faq-answer-inner p::before {
  opacity: 1;
  transform: scaleY(1);
  transition-delay: 0.2s;
}

/* Responsivo FAQ Layout */
@media (max-width: 992px) {
  .faq {
    min-height: auto; /* Desabilita altura mínima fixa em telas menores */
  }
  
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .faq-info {
    position: static;
  }
  
  .faq-cta-box {
    max-width: 500px;
  }
}

/* ===== LOCALIZAÇÃO MINIMALISTA IMERSIVA ===== */
.local-minimal {
  padding: 120px 0;
  background: var(--grafite);
  position: relative;
  overflow: hidden;
}

.local-minimal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(226, 184, 66, 0.04), transparent 70%);
  pointer-events: none;
}

.local-min-header {
  text-align: center;
  margin-bottom: 56px;
}

.local-min-body {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Container do Mapa */
.local-min-map {
  width: 100%;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.local-min-map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* Faixa de Informações do Endereço */
.local-min-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  background: rgba(21, 29, 48, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  flex-wrap: wrap;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.lmin-addr {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--off-white);
}

.lmin-addr svg {
  color: var(--dourado);
  flex-shrink: 0;
}

.lmin-addr-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lmin-addr-text strong {
  font-family: var(--font-titulo);
  font-size: 1.0625rem;
  font-weight: 700;
}

.lmin-addr-text span {
  font-size: 0.875rem;
  color: var(--cinza-nevoa);
}

.lmin-route {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 100px;
  background: var(--dourado);
  color: var(--grafite);
  font-family: var(--font-titulo);
  font-size: 0.8125rem;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(226, 184, 66, 0.2);
}

.lmin-route:hover {
  background: var(--dourado-claro);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(226, 184, 66, 0.35);
}

/* Grid de Cards */
.local-min-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.lmin-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: rgba(21, 29, 48, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.lmin-card--wa:hover {
  transform: translateY(-3px);
  border-color: rgba(226, 184, 66, 0.2);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(226, 184, 66, 0.08);
}

.lmin-card-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(226, 184, 66, 0.1);
  border: 1px solid rgba(226, 184, 66, 0.15);
  color: var(--dourado);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lmin-card--wa:hover .lmin-card-icon {
  background: var(--dourado);
  color: var(--grafite);
  box-shadow: 0 4px 16px rgba(226, 184, 66, 0.3);
}

.lmin-card-icon svg {
  width: 22px;
  height: 22px;
}

.lmin-card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.lmin-card-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--cinza-nevoa);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lmin-card-value {
  font-family: var(--font-titulo);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--off-white);
}

.lmin-card-arrow {
  color: var(--cinza-nevoa);
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.lmin-card--wa:hover .lmin-card-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--dourado);
}

/* Responsivo Localização */
@media (max-width: 768px) {
  .local-minimal {
    padding: 80px 0;
  }
  
  .local-min-map {
    height: 280px;
  }
  
  .local-min-info {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .lmin-route {
    width: 100%;
    justify-content: center;
  }
  
  .local-min-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .lmin-card {
    padding: 20px;
  }
}

/* ===== CTA ===== */
/* ===== CTA PREMIUM ===== */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--grafite) 0%, #0d1118 50%, #121820 100%);
  position: relative;
  overflow: hidden;
}

.cta-bg-img {
  position: absolute;
  inset: 0;
  background: url('Assets/reglicred-sala-atendimento-consignado-1.webp') center center / cover no-repeat;
  transform: scale(1.05);
  animation: ctaBgZoom 20s ease-in-out infinite alternate;
}

@keyframes ctaBgZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}

.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 15, 25, 0.97) 0%,
    rgba(11, 15, 25, 0.95) 25%,
    rgba(11, 15, 25, 0.92) 50%,
    rgba(11, 15, 25, 0.95) 75%,
    rgba(11, 15, 25, 0.98) 100%
  );
  pointer-events: none;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(226, 184, 66, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(226, 184, 66, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(20, 30, 60, 0.6) 0%, transparent 50%);
  pointer-events: none;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
}

.cta-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(226, 184, 66, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226, 184, 66, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 70%);
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: ctaOrbFloat 8s ease-in-out infinite;
}

.cta-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(226, 184, 66, 0.12) 0%, transparent 70%);
  top: -100px;
  right: 10%;
  animation-delay: 0s;
}

.cta-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(21, 29, 48, 0.8) 0%, transparent 70%);
  bottom: -50px;
  left: 5%;
  animation-delay: -3s;
  animation-duration: 10s;
}

.cta-orb-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(226, 184, 66, 0.06) 0%, transparent 70%);
  top: 40%;
  left: 30%;
  animation-delay: -5s;
  animation-duration: 12s;
}

@keyframes ctaOrbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(226, 184, 66, 0.3) 50%, transparent 100%);
}

.cta::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(226, 184, 66, 0.2) 50%, transparent 100%);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-text h2 {
  font-family: var(--font-titulo);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--off-white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-text p {
  font-size: 1.0625rem;
  color: var(--cinza-nevoa);
  line-height: 1.8;
  margin-bottom: 28px;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(226, 184, 66, 0.1);
  border: 1px solid rgba(226, 184, 66, 0.2);
  color: var(--dourado);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--dourado);
  border-radius: 50%;
  position: relative;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--dourado);
  animation: pulseDot 2s ease-out infinite;
  opacity: 0.5;
}

@keyframes pulseDot {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(2.5); opacity: 0; }
}

.cta-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-benefits li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9375rem;
  color: var(--texto-sec);
  transition: var(--transition);
}

.cta-benefits li:hover {
  color: var(--off-white);
  transform: translateX(4px);
}

.cb-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(226, 184, 66, 0.1);
  border: 1px solid rgba(226, 184, 66, 0.2);
  border-radius: 8px;
  color: var(--dourado);
  flex-shrink: 0;
  transition: var(--transition);
}

.cta-benefits li:hover .cb-icon {
  background: rgba(226, 184, 66, 0.2);
  border-color: rgba(226, 184, 66, 0.4);
  transform: scale(1.1);
}

.cta-form-wrapper {
  position: relative;
  background: rgba(21, 29, 48, 0.6);
  border: 1px solid rgba(226, 184, 66, 0.15);
  border-radius: 28px;
  padding: 28px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 1px 0 rgba(255, 255, 255, 0.05) inset;
  overflow: hidden;
}

.cta-form-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(226, 184, 66, 0.06) 0%, transparent 50%);
  pointer-events: none;
  animation: formGlowRotate 15s linear infinite;
}

@keyframes formGlowRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.cta-form {
  position: relative;
  z-index: 1;
}

.cta-form-header {
  text-align: center;
  margin-bottom: 20px;
}

.cta-form-tag {
  display: inline-block;
  background: rgba(226, 184, 66, 0.1);
  border: 1px solid rgba(226, 184, 66, 0.2);
  color: var(--dourado);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.cta-form h3 {
  font-family: var(--font-titulo);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 8px;
}

.cta-form-header p {
  font-size: 0.875rem;
  color: var(--cinza-nevoa);
  margin-bottom: 0;
}

.cta-form .form-group {
  margin-bottom: 14px;
}

.cta-form label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--cinza-nevoa);
  margin-bottom: 8px;
  transition: var(--transition);
}

.cta-form .form-group:focus-within label {
  color: var(--dourado);
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  background: rgba(11, 15, 25, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  color: var(--off-white);
  font-family: var(--font-corpo);
  font-size: 0.9375rem;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.form-input::placeholder {
  color: rgba(148, 163, 184, 0.5);
}

.form-input:focus {
  outline: none;
  border-color: rgba(226, 184, 66, 0.4);
  box-shadow: 0 0 0 3px rgba(226, 184, 66, 0.08), 0 4px 12px rgba(0, 0, 0, 0.2);
  background: rgba(11, 15, 25, 0.8);
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238A8A8F' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

.form-btn {
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--dourado) 0%, var(--dourado-claro) 100%);
  color: var(--grafite);
  font-family: var(--font-titulo);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.form-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.form-btn:hover::before {
  left: 100%;
}

.form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(226, 184, 66, 0.3), 0 0 0 1px rgba(226, 184, 66, 0.2);
}

.form-btn:active {
  transform: translateY(0);
}

.form-btn-lg {
  font-size: 0.9375rem;
  padding: 14px;
}

.form-disclaimer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--cinza-nevoa);
  text-align: center;
  margin-top: 12px;
  opacity: 0.7;
}

.form-disclaimer svg {
  flex-shrink: 0;
  opacity: 0.5;
}

/* ===== FOOTER ===== */
.footer {
  background: #070A10;
  padding: 64px 0 0;
  border-top: 1px solid rgba(226, 184, 66, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 48px;
}

.footer-brand {
  text-align: left;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo .footer-logo-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.footer-brand p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 4px;
}

.footer-links h4, .footer-contact h4 {
  font-family: var(--font-titulo);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dourado);
  margin-bottom: 1.5rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: 300ms ease;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--dourado);
}

.footer-contact {
  text-align: left;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.contact-item a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  transition: 300ms ease;
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--dourado);
}

.contact-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.footer-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0px;
  width: 40px;
  height: 40px;
  background: rgba(232, 182, 23, 0.08);
  border-radius: 50%;
  font-family: var(--font-titulo);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--dourado);
  transition: var(--transition);
  text-decoration: none;
}

.footer-instagram svg {
  width: 20px;
  height: 20px;
}

.footer-instagram:hover {
  background: rgba(232, 182, 23, 0.15);
  color: var(--dourado-claro);
  transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-credits-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-copyright-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal-links a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: 300ms ease;
}

.footer-legal-links a:hover {
  color: var(--dourado);
}

.legal-links-separator {
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-credits-right {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

.footer-credits-right a {
  color: var(--dourado);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.footer-credits-right a:hover {
  color: var(--dourado-claro);
}

/* Cookie Link */
.cookie-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  text-decoration: none;
  transition: 300ms ease;
}

.cookie-link:hover {
  color: var(--dourado);
}

/* Cookie Toggle Visual iOS */
.cookie-toggle {
  display: inline-flex;
  align-items: center;
  width: 28px;
  height: 14px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 2px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  font-size: 8px;
  font-weight: bold;
  flex-shrink: 0;
}

.cookie-toggle-check {
  color: #86EFAC;
  margin-left: 2px;
}

.cookie-toggle-x {
  color: #FCA5A5;
  margin-left: auto;
  margin-right: 2px;
}

.cookie-toggle-dot {
  position: absolute;
  left: 15px;
  width: 10px;
  height: 10px;
  background: var(--dourado);
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  transition: left 0.2s ease, background 0.2s ease;
}

/* Estado ativo (cookies aceitos) - bolinha à direita */
.cookie-toggle.active .cookie-toggle-dot {
  left: 15px;
  background: var(--dourado);
}

/* Estado inativo (cookies rejeitados) - bolinha à esquerda */
.cookie-toggle.inactive .cookie-toggle-dot {
  left: 2px;
  background: #888;
}

/* Hover effect no toggle */
.cookie-link:hover .cookie-toggle {
  border-color: rgba(255, 255, 255, 0.4);
}

.cookie-link:hover .cookie-toggle-dot {
  box-shadow: 0 0 8px rgba(226, 184, 66, 0.5);
}

/* AG5 Link */
.ag5-link {
  color: var(--dourado);
  font-weight: 600;
  transition: var(--transition);
}

.ag5-link:hover {
  color: var(--dourado-claro);
}

/* ===== WHATSAPP FLOAT ===== */
.btn-flutuante-whatsapp {
  display: none;
}

/* ========================================
   WHATSAPP PREMIUM EXPERIENCE
   ======================================== */
.wa-premium-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  font-family: var(--font-corpo);
}

/* Balão Glassmorphism - Dark Mode */
.wa-bubble {
  width: 300px;
  position: absolute;
  bottom: 85px;
  right: 0;
  background: rgba(21, 29, 48, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(226, 184, 66, 0.15);
  border-radius: 20px 20px 4px 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(226, 184, 66, 0.05);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wa-bubble.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Cabeçalho do Chat */
.wa-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 12px;
}

.wa-avatar-wrapper {
  position: relative;
}

.wa-avatar {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid var(--dourado);
}

.wa-status-dot {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  background: var(--verde);
  border: 2px solid var(--carvao);
  border-radius: 50%;
  animation: wa-pulse-green 2s infinite;
}

.wa-name {
  display: block;
  font-weight: 700;
  color: var(--off-white);
  font-size: 15px;
  font-family: var(--font-titulo);
}

.wa-status-text {
  font-size: 11px;
  color: var(--cinza-nevoa);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Animação de Digitação */
.wa-typing {
  display: flex;
  gap: 4px;
  padding: 10px 0;
}

.wa-typing span {
  width: 6px;
  height: 6px;
  background: var(--dourado);
  border-radius: 50%;
  animation: wa-typing-ani 1.4s infinite;
  opacity: 0.4;
}

.wa-typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.wa-typing span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes wa-typing-ani {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(-4px); opacity: 1; }
}

/* Texto da Mensagem */
.wa-message-text p {
  margin: 0;
  font-size: 14px;
  color: var(--cinza-nevoa);
  line-height: 1.5;
}

.wa-message-text strong {
  color: var(--off-white);
  font-weight: 700;
}

/* Botão Flutuante - Redondo (mantido conforme solicitado) */
.wa-float-btn {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  border-radius: 50%; /* REDONDO conforme solicitado */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.wa-float-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}

/* Badge de Notificação */
.wa-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff3b30;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--grafite);
  transform: scale(0);
  transition: transform 0.5s ease;
}

.wa-badge.show {
  transform: scale(1);
}

/* Fechar */
.wa-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  color: var(--cinza-nevoa);
  cursor: pointer;
  font-size: 14px;
  transition: color 0.3s;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-close:hover {
  color: var(--off-white);
}

/* Animações Auxiliares */
@keyframes wa-pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Responsivo */
@media (max-width: 480px) {
  .wa-premium-container {
    bottom: 20px;
    right: 20px;
  }
  .wa-bubble {
    width: 260px;
    bottom: 75px;
  }
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ===== MOBILE DRAWER (PREMIUM) ===== */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--grafite);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(226, 184, 66, 0.1);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.4);
}

.drawer.active {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.drawer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.drawer-logo .logo-img {
  width: 36px;
  height: 36px;
}

.drawer-logo .logo-text {
  font-size: 1.125rem;
}

.drawer-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  cursor: pointer;
  color: var(--off-white);
  transition: var(--transition);
}

.drawer-close:hover {
  background: rgba(226, 184, 66, 0.1);
  border-color: rgba(226, 184, 66, 0.2);
  color: var(--dourado);
}

.drawer-close svg {
  width: 20px;
  height: 20px;
}

.drawer-nav {
  flex: 1;
  padding: 16px 0;
  overflow-y: auto;
}

.drawer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.drawer-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.drawer-link {
  display: block;
  padding: 16px 24px;
  font-family: var(--font-corpo);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--texto-sec);
  opacity: 0.85;
  transition: var(--transition);
}

.drawer-link:hover {
  color: var(--off-white);
  background: rgba(226, 184, 66, 0.06);
  opacity: 1;
  padding-left: 28px;
}

.drawer-footer {
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.drawer-cta {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--dourado);
  color: var(--grafite);
  font-family: var(--font-titulo);
  font-size: 0.9375rem;
  font-weight: 700;
  text-align: center;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.drawer-cta:hover {
  background: var(--dourado-claro);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(226, 184, 66, 0.25);
}

/* Lock scroll when drawer is open */
body.drawer-open {
  overflow: hidden;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero {
    position: relative;
    min-height: 100vh;
    max-height: none;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    overflow: hidden;
  }

  .hero-container {
    position: static;
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .hero-text {
    position: relative;
    z-index: 3;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.95);
  }
  
  .hero-visual {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    display: block;
  }

  .hero-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to right,
      rgba(11, 15, 25, 0.9) 0%,
      rgba(11, 15, 25, 0.75) 50%,
      rgba(11, 15, 25, 0.4) 100%
    );
    z-index: 2;
    width: 100%;
    height: 100%;
    transform: none;
  }
  
  .hero-image-wrapper {
    width: 100%;
    height: 100%;
    max-width: none;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero-image,
  .hero-video {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    border-radius: 0;
    opacity: 0.7;
    display: block;
  }

  .hero-title {
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.95);
  }

  .hero-subtitle {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95);
    color: #E2E8F0;
  }

  .hero-badge {
    background: rgba(11, 15, 25, 0.8) !important;
    border-color: rgba(226, 184, 66, 0.4) !important;
    backdrop-filter: blur(8px);
  }
  
  .dor-solucao-minimal {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .dor-box-min, .solucao-box-min {
    padding: 32px 24px;
  }
  
  .servicos-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 16px;
  }
  
  .svc-tile-inner {
    padding: 24px;
  }
  
  .svc-tile-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }
  
  .svc-tile-icon svg {
    width: 22px;
    height: 22px;
  }
  
  .svc-tile h3 {
    font-size: 1.125rem;
  }
  
  /* Processo Simples — responsivo */
  .cf-header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 48px;
  }

  .cf-header-desc {
    border-left: none;
    border-top: 1px solid rgba(226, 184, 66, 0.2);
    padding-left: 0;
    padding-top: 20px;
    align-self: auto;
  }

  .cf-steps-row {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0;
  }

  .cf-step {
    padding: 32px 24px;
  }

  .cf-step-number {
    font-size: 4rem;
    right: 14px;
    top: -4px;
  }

  /* Setas viram verticais em mobile */
  .cf-arrow {
    flex-direction: row;
    padding-top: 0;
    padding: 12px 24px;
    justify-content: flex-start;
    gap: 14px;
    border-left: 2px solid rgba(226, 184, 66, 0.12);
    margin-left: 24px;
  }

  .cf-arrow-svg {
    width: 24px;
    height: 48px;
    transform: rotate(90deg);
  }
  
  .estrutura-showcase {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    height: auto;
    gap: 16px;
  }
  
  .estrutura-card--featured {
    grid-row: span 1;
    grid-column: span 2;
  }
  
  .estrutura-card-overlay {
    padding: 36px 24px 24px;
  }
  
  .estrutura-card-overlay h3 {
    font-size: 1.125rem;
  }
  
  .estrutura-card--featured .estrutura-card-overlay h3 {
    font-size: 1.375rem;
  }
  
  .estrutura-card-overlay p {
    opacity: 1;
    transform: translateY(0);
  }
  
  .sobre-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 32px;
  }
  
  .sobre-header-col {
    grid-column: 1;
    grid-row: 1;
  }
  
  .sobre-media {
    grid-column: 1;
    grid-row: 2;
  }
  
  .sobre-details {
    grid-column: 1;
    grid-row: 3;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .local-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .cta-orb {
    display: none;
  }
  
  .cta-grid-pattern {
    background-size: 40px 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .calc-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    background: rgba(11, 15, 25, 0.65);
    border: 1px solid rgba(226, 184, 66, 0.25);
    padding: 10px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    gap: 4px;
  }
  
  .nav-toggle span {
    background: var(--dourado);
    width: 20px;
  }
  
  .nav-menu {
    display: none;
  }
  
  .hero {
    padding: 100px 0 50px;
  }
  
  .hero-image,
  .hero-video {
    height: 100%;
  }
  
  .hero-float-card {
    display: none;
  }
  
  .servicos-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .svc-tile-inner {
    padding: 20px;
  }
  
  .svc-tile-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }
  
  .svc-tile-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .svc-tile h3 {
    font-size: 1.0625rem;
  }
  
  .svc-tile p {
    font-size: 0.8125rem;
  }
  
  .svc-tile-link {
    font-size: 0.8125rem;
  }
  
  .svc-tile-meta {
    margin-bottom: 14px;
  }
  
  .svc-tile-tag {
    font-size: 0.625rem;
    padding: 3px 10px;
  }
  
  .estrutura-showcase {
    grid-template-columns: 1fr;
    gap: 12px;
    height: auto;
  }
  
  .estrutura-card--featured {
    grid-column: span 1;
  }
  
  .estrutura-card {
    height: 280px;
  }
  
  .estrutura-card--featured {
    height: 320px;
  }
  
  .estrutura-card-overlay {
    padding: 28px 20px 20px;
  }
  
  .estrutura-card-overlay h3 {
    font-size: 1.0625rem;
  }
  
  .estrutura-card--featured .estrutura-card-overlay h3 {
    font-size: 1.25rem;
  }
  
  .estrutura-card-overlay p {
    font-size: 0.8125rem;
  }
  
  .estrutura-card-tag {
    font-size: 0.625rem;
    padding: 4px 10px;
  }
  
  
  .sobre-stats {
    max-width: 100%;
  }
  
  .stat-item {
    padding: 20px 24px;
  }
  
  .stat-item .counter-number {
    font-size: 2.25rem;
  }
  
  .depo-card {
    width: 300px;
    padding: 20px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    text-align: left !important;
  }
  
  .footer-brand {
    text-align: left !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
  }
  
  .footer-brand p {
    max-width: none;
    text-align: left !important;
  }
  
  .footer-logo {
    justify-content: flex-start !important;
  }
  
  .footer-links h4,
  .footer-contact h4 {
    text-align: left !important;
  }
  
  .footer-links ul {
    text-align: left !important;
  }
  
  .footer-contact {
    text-align: left !important;
  }
  
  .footer-bottom {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1rem !important;
    text-align: left !important;
  }
  
  .footer-credits-left {
    text-align: left !important;
  }
  
  .footer-legal-links {
    justify-content: flex-start !important;
  }
  
  .footer-credits-right {
    text-align: left !important;
    margin-left: 0 !important;
  }

  .dor-solucao-minimal {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
  
  .dor-box-min, .solucao-box-min {
    padding: 32px 24px !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .dor-box-min, .solucao-box-min {
    padding: 28px !important;
  }
  
  .bento-card {
    padding: 24px;
  }
  
  .cta-form-wrapper {
    padding: 28px;
    border-radius: 20px;
  }
  
  .cta-form-glow {
    display: none;
  }
  
  .cta-form-header {
    margin-bottom: 20px;
  }
  
  .cta-form h3 {
    font-size: 1.25rem;
  }
  
  .cta-form .form-group {
    margin-bottom: 14px;
  }
  
  .form-input {
    padding: 12px 14px;
  }
  
  .form-btn-lg {
    padding: 14px;
    font-size: 0.9375rem;
  }
  
  .counter-number {
    font-size: 2rem;
  }
  
  .sobre-stats {
    flex-direction: column;
  }
  
  .stat-divider {
    width: auto;
    height: 1px;
    margin: 0 24px;
    background: linear-gradient(to right, transparent, rgba(226, 184, 66, 0.3), transparent);
  }
  
  .stat-item {
    padding: 20px 24px;
    text-align: center;
  }

  .calc-card {
    padding: 24px;
  }
  
  .calc-result {
    padding: 16px 20px;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  
  .calc-result-divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }
  
  .result-value {
    font-size: 1.75rem;
  }
}

/* Responsividade especifica para Dor e Solucao */
@media (max-width: 991px) {
  .dor-solucao-minimal {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .dor-box-min, .solucao-box-min {
    padding: 32px 24px !important;
  }
}

@media (max-width: 480px) {
  .dor-box-min, .solucao-box-min {
    padding: 24px 16px !important;
  }
}
