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

:root {
  --black: #232323;
  --red: #F04A3C;
  --red-dark: #c73a2e;
  --off-white: #F5F1EA;
  --gray-light: #CCC9C3;
  --gray-dark: #1A1A1A;
  --bg: #161616;
  --card-bg: #1e1e1e;
  --border: rgba(255,255,255,0.07);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--off-white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

.red-text { color: var(--red); }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--gray-dark); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
  padding: 20px 0;
}

#navbar.scrolled {
  background: rgba(22, 22, 22, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
  padding: 14px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--off-white);
  white-space: nowrap;
}

.logo-g {
  color: var(--red);
  font-size: 28px;
  line-height: 1;
}

.logo-text { color: var(--off-white); }

/* ===== LOGO IMAGE ===== */
.logo-img {
  height: 36px;
  width: auto;
  display: block;
  transition: opacity 0.2s;
}

.nav-logo:hover .logo-img { opacity: 0.8; }

.logo-img--footer {
  height: 48px;
  margin-bottom: 20px;
}

.logo-img--gmn {
  height: 36px;
}

.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--gray-light);
  transition: color 0.2s;
  text-transform: uppercase;
}

.nav-links a:hover { color: var(--off-white); }

.btn-nav {
  white-space: nowrap;
  background: var(--red);
  color: #fff;
  padding: 10px 22px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
}

.btn-nav:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

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

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

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--gray-dark);
  z-index: 999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.mobile-menu.open { display: flex; }

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: center;
}

.mobile-menu a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--off-white);
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--red); }
.mobile-menu .mobile-cta { font-size: 16px; margin-top: 8px; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  padding: 16px 32px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240, 74, 60, 0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--off-white);
  padding: 15px 32px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid rgba(245, 241, 234, 0.3);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(240, 74, 60, 0.05);
}

.btn-large { padding: 20px 40px; font-size: 14px; }
.btn-full { width: 100%; justify-content: center; }

/* ===== SECTION COMMON ===== */
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(240, 74, 60, 0.4);
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 24px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray-light);
  margin-bottom: 60px;
  max-width: 600px;
}

.section-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-light);
  max-width: 680px;
  margin-bottom: 48px;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  background: var(--gray-dark);
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.shape {
  position: absolute;
  border-radius: 0;
}

.shape-1 {
  width: 300px; height: 300px;
  border: 1px solid rgba(240, 74, 60, 0.15);
  top: 10%; right: 10%;
  animation: rotateSlow 25s linear infinite;
  transform-origin: center;
}

.shape-2 {
  width: 180px; height: 180px;
  border: 1px solid rgba(240, 74, 60, 0.1);
  top: 20%; right: 18%;
  animation: rotateSlow 18s linear infinite reverse;
  transform-origin: center;
}

.shape-3 {
  width: 60px; height: 60px;
  background: var(--red);
  opacity: 0.08;
  bottom: 30%; right: 25%;
  animation: float 6s ease-in-out infinite;
}

.shape-4 {
  width: 8px; height: 8px;
  background: var(--red);
  opacity: 0.6;
  top: 40%; right: 35%;
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 32px;
}

.dot {
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 32px;
  max-width: 800px;
}

.hero-title .red-text {
  display: block;
  position: relative;
}

.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 580px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-keywords {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.kw {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.15);
  writing-mode: horizontal-tb;
  animation: floatKeyword 8s ease-in-out infinite;
}

.kw-1 { animation-delay: 0s; }
.kw-2 { animation-delay: 1s; color: rgba(240, 74, 60, 0.2); }
.kw-3 { animation-delay: 2s; }
.kw-4 { animation-delay: 3s; color: rgba(240, 74, 60, 0.2); }
.kw-5 { animation-delay: 4s; }
.kw-6 { animation-delay: 5s; color: rgba(240, 74, 60, 0.2); }

@keyframes floatKeyword {
  0%, 100% { transform: translateX(0); opacity: 0.5; }
  50% { transform: translateX(-8px); opacity: 1; }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.7); }
}

/* ===== PROBLEMA ===== */
.problema {
  padding: 120px 0;
  background: var(--bg);
}

.dores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 60px;
}

.dor-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 24px;
  transition: border-color 0.3s, transform 0.3s;
}

.dor-card:hover {
  border-color: rgba(240, 74, 60, 0.4);
  transform: translateY(-4px);
}

.dor-icon {
  width: 44px; height: 44px;
  color: var(--red);
  margin-bottom: 16px;
}

.dor-icon svg { width: 100%; height: 100%; }

.dor-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-light);
}

/* ===== SERVIÇOS ===== */
.servicos {
  padding: 120px 0;
  background: var(--gray-dark);
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.servico-card {
  background: #222;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px 28px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.servico-card:hover {
  border-color: rgba(240, 74, 60, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.servico-icon {
  width: 48px; height: 48px;
  color: var(--red);
  margin-bottom: 20px;
  transition: transform 0.3s;
}

.servico-card:hover .servico-icon {
  transform: scale(1.1) rotate(-5deg);
}

.servico-icon svg { width: 100%; height: 100%; }

.servico-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: var(--off-white);
}

.servico-card > p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-light);
  margin-bottom: 20px;
}

.servico-itens {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  flex: 1;
}

.servico-itens li {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--gray-light);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 2px;
}

.btn-servico {
  display: inline-block;
  background: transparent;
  color: var(--red);
  border: 1px solid rgba(240, 74, 60, 0.5);
  padding: 12px 20px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-align: center;
  margin-top: auto;
}

.btn-servico:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

/* ===== MÉTODO ===== */
.metodo {
  padding: 120px 0;
  background: var(--bg);
}

.metodo-steps {
  margin-top: 64px;
  position: relative;
}

.metodo-step {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 0;
  position: relative;
}

.step-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 64px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(240, 74, 60, 0.3);
  min-width: 100px;
  line-height: 1;
  padding-top: 4px;
  transition: -webkit-text-stroke 0.3s, color 0.3s;
}

.metodo-step:hover .step-number {
  -webkit-text-stroke: 1px var(--red);
  color: rgba(240, 74, 60, 0.1);
}

.step-line {
  width: 1px;
  min-height: 100px;
  background: linear-gradient(to bottom, var(--red), rgba(240, 74, 60, 0.1));
  margin: 8px 48px 0 16px;
  flex-shrink: 0;
  position: relative;
}

.step-line::before {
  content: '';
  position: absolute;
  top: -1px; left: -4px;
  width: 9px; height: 9px;
  background: var(--red);
  border-radius: 50%;
}

.step-line.last {
  background: linear-gradient(to bottom, rgba(240, 74, 60, 0.3), transparent);
}

.step-content {
  padding: 0 0 60px;
  flex: 1;
}

.step-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: var(--off-white);
}

.step-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-light);
  max-width: 500px;
}

/* ===== SOBRE ===== */
.sobre {
  padding: 120px 0;
  background: var(--gray-dark);
}

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

.sobre-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-light);
  margin-bottom: 20px;
}

.sobre-destaque {
  margin-top: 36px;
  padding: 28px 32px;
  border-left: 3px solid var(--red);
  background: rgba(240, 74, 60, 0.05);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.sobre-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stat-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-light);
}

.sobre-tags {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sobre-tags span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(240, 74, 60, 0.3);
  padding: 6px 12px;
  border-radius: 2px;
}

/* ===== AUTORIDADE ===== */
.autoridade {
  padding: 120px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.autoridade::before {
  content: 'GALILEU';
  position: absolute;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 200px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  letter-spacing: 10px;
  pointer-events: none;
}

.autoridade-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 72px;
  letter-spacing: -0.5px;
}

.autoridade-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.autoridade-item {
  background: var(--card-bg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.autoridade-item:hover { background: #222; }

.aut-bar {
  width: 0;
  height: 2px;
  background: var(--red);
  margin-bottom: 20px;
  transition: width 0.6s ease;
}

.autoridade-item.visible .aut-bar { width: 48px; }

.autoridade-item p {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 0.5px;
  color: var(--off-white);
}

/* ===== CASES ===== */
.cases {
  padding: 120px 0;
  background: var(--gray-dark);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.case-card {
  background: #222;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  cursor: pointer;
}

.case-card:hover {
  border-color: rgba(240, 74, 60, 0.5);
  transform: translateY(-4px);
}

.case-overlay {
  position: absolute;
  inset: 0;
  background: rgba(240, 74, 60, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.case-card:hover .case-overlay { opacity: 1; }

.case-overlay span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #fff;
}

.case-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(240, 74, 60, 0.1);
  border: 1px solid rgba(240, 74, 60, 0.3);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.case-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.case-seg {
  font-size: 12px;
  color: var(--gray-light);
  margin-bottom: 20px;
}

.case-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.case-info div {
  font-size: 13px;
  color: var(--gray-light);
}

.case-info strong {
  color: var(--off-white);
  font-weight: 500;
}

/* ===== INSTAGRAM ===== */
.instagram {
  padding: 120px 0;
  background: var(--bg);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 60px;
  margin-bottom: 40px;
}

.insta-card {
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}

.insta-card:hover { transform: scale(1.03); }

.insta-content {
  position: relative;
  width: 100%; height: 100%;
  min-height: 200px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.insta-bg {
  position: absolute;
  inset: 0;
}

.bg1 {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(240, 74, 60, 0.05) 20px,
      rgba(240, 74, 60, 0.05) 21px
    );
}

.bg2 {
  background: linear-gradient(135deg, #1a0808 0%, #2d1010 100%);
}

.bg3 {
  background: linear-gradient(135deg, #080a1a 0%, #101224 100%);
}

.bg4 {
  background: linear-gradient(135deg, #0a0808 0%, #1a1212 100%);
  background-image: repeating-linear-gradient(
    -45deg, transparent, transparent 15px,
    rgba(240, 74, 60, 0.04) 15px, rgba(240, 74, 60, 0.04) 16px
  );
}

.insta-content p {
  position: relative;
  z-index: 1;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
  color: var(--off-white);
}

.insta-cta { text-align: center; }

/* ===== GOOGLE MEU NEGÓCIO ===== */
.gmn {
  padding: 120px 0;
  background: var(--gray-dark);
}

.gmn-card {
  background: #222;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.gmn-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gmn-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stars { display: flex; gap: 2px; }

.gmn-rating span {
  font-size: 13px;
  color: var(--gray-light);
}

.gmn-address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-light);
  max-width: 380px;
  line-height: 1.5;
}

.gmn-address svg { flex-shrink: 0; margin-top: 2px; }

.gmn-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.gmn-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--off-white);
  padding: 12px 20px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  cursor: pointer;
}

.gmn-btn:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(240, 74, 60, 0.05);
}

/* ===== CTA PRINCIPAL ===== */
.cta-principal {
  padding: 140px 0;
  background: var(--gray-dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
}

.cta-shape-1 {
  width: 500px; height: 500px;
  background: var(--red);
  top: -100px; left: -100px;
}

.cta-shape-2 {
  width: 400px; height: 400px;
  background: var(--red);
  bottom: -100px; right: -80px;
}

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

.cta-pre {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

.cta-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.cta-sub {
  font-size: 16px;
  color: var(--gray-light);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ===== CONTATO ===== */
.contato {
  padding: 120px 0;
  background: var(--bg);
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contato-itens {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}

.contato-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.5;
  transition: color 0.2s;
}

.contato-item:not(.no-link):hover { color: var(--red); }
.contato-item svg { flex-shrink: 0; margin-top: 2px; color: var(--red); }

/* FORM */
.contato-form {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--off-white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(204, 201, 195, 0.4);
}

.form-group select {
  cursor: pointer;
  color: rgba(204, 201, 195, 0.6);
}

.form-group select option {
  background: var(--gray-dark);
  color: var(--off-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--gray-dark);
  border-top: 1px solid var(--border);
  padding: 72px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-light);
  margin-top: 20px;
  max-width: 280px;
}

.footer-links h5,
.footer-contato h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: var(--gray-light);
  transition: color 0.2s;
}

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

.footer-contato {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contato h5 { margin-bottom: 10px; }

.footer-contato a,
.footer-contato p {
  font-size: 13px;
  color: var(--gray-light);
  transition: color 0.2s;
  line-height: 1.5;
}

.footer-contato a:hover { color: var(--red); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(204, 201, 195, 0.4);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: waBounce 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
  animation: none;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-keywords { display: none; }
  .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .nav-toggle { display: flex; }

  .hero-title { font-size: clamp(42px, 10vw, 64px); }

  .dores-grid { grid-template-columns: 1fr; }
  .servicos-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }

  .autoridade-grid { grid-template-columns: 1fr; }

  .contato-grid { grid-template-columns: 1fr; gap: 48px; }
  .contato-form { padding: 28px 20px; }

  .metodo-step { gap: 0; }
  .step-number { font-size: 40px; min-width: 60px; }
  .step-line { margin: 8px 24px 0 8px; }

  .gmn-card { flex-direction: column; align-items: flex-start; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-primary, .hero-btns .btn-outline { width: 100%; justify-content: center; }

  .insta-grid { grid-template-columns: 1fr 1fr; }

  .gmn-btns { flex-direction: column; }
  .gmn-btn { justify-content: center; }

  .cta-title { font-size: clamp(32px, 8vw, 48px); }
}
