/* ============================================
   ORYUM DIGITAL ADS — STYLES
   Dark Navy + Gold Premium Theme
   ============================================ */

:root {
  --navy-900: #07101f;
  --navy-800: #0c1828;
  --navy-700: #111f34;
  --navy-600: #162640;
  --navy-500: #1b2e4e;
  --gold-400: #d4a020;
  --gold-500: #b88a10;
  --gold-600: #9e7408;
  --gold-gradient: linear-gradient(135deg, #e8bc3a, #a07010);
  --gold-gradient-h: linear-gradient(135deg, #f0c840, #b88a10);
  --white: #ffffff;
  --gray-100: #f0f2f8;
  --gray-300: #a0aec0;
  --gray-500: #4a5568;
  --font-main: 'Inter', sans-serif;
  --font-display: 'Montserrat', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-gold: 0 0 40px rgba(212, 160, 23, 0.2);
  --transition: 0.3s ease;
}

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

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

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

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

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

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

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-400);
  border: 1px solid rgba(212, 160, 23, 0.3);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  background: rgba(212, 160, 23, 0.05);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 18px;
  color: var(--gray-300);
  max-width: 600px;
  margin: 0 auto;
}

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

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--navy-900);
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.3);
}

.btn-primary:hover {
  background: var(--gold-gradient-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 160, 23, 0.45);
}

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

.btn-outline:hover {
  background: rgba(212, 160, 23, 0.1);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
}

.btn.full { width: 100%; justify-content: center; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(5, 8, 16, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 160, 23, 0.1);
  padding: 12px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-icon { width: 36px; height: 36px; }

.logo-text {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 1px;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-300);
  border-radius: 8px;
  transition: all var(--transition);
}

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

.btn-nav {
  background: var(--gold-gradient);
  color: var(--navy-900) !important;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 8px;
}

.btn-nav:hover { background: var(--gold-gradient-h); transform: translateY(-1px); }

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

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(13, 21, 38, 0.8) 0%, var(--navy-900) 70%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  pointer-events: none;
}

.glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.4), transparent 70%);
  top: -100px; right: -100px;
  animation: float 8s ease-in-out infinite;
}

.glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(13, 42, 100, 0.6), transparent 70%);
  bottom: 0; left: -50px;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-400);
  border: 1px solid rgba(212, 160, 23, 0.3);
  padding: 7px 16px;
  border-radius: 100px;
  background: rgba(212, 160, 23, 0.06);
  margin-bottom: 28px;
}

.badge-dot {
  width: 6px; height: 6px;
  background: var(--gold-400);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero-desc {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--gray-300);
  margin-bottom: 40px;
  max-width: 600px;
  line-height: 1.7;
  text-align: left;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  justify-content: center;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 12px;
  color: var(--gray-300);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(212, 160, 23, 0.2);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-300);
  font-size: 12px;
  letter-spacing: 1px;
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
}

.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid var(--gold-400);
  border-bottom: 2px solid var(--gold-400);
  transform: rotate(45deg);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

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

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

.sobre-text {
  color: var(--gray-300);
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

.sobre-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(212, 160, 23, 0.05);
  border: 1px solid rgba(212, 160, 23, 0.1);
  border-radius: var(--radius);
}

.pillar-icon { font-size: 24px; flex-shrink: 0; }

.pillar strong {
  display: block;
  font-weight: 700;
  margin-bottom: 2px;
}

.pillar p {
  color: var(--gray-300);
  font-size: 14px;
  margin: 0;
}

.sobre-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.sobre-card.main-card {
  width: 320px;
  height: 320px;
  background: var(--navy-700);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.card-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at center, rgba(212, 160, 23, 0.1), transparent 70%);
  animation: float 6s ease-in-out infinite;
}

.big-logo { width: 120px; height: 120px; position: relative; z-index: 1; }

.card-tagline {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 12px;
  position: relative;
  z-index: 1;
}

.float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy-600);
  border: 1px solid rgba(212, 160, 23, 0.2);
  padding: 12px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  white-space: nowrap;
}

.badge-top { top: 20px; right: -40px; }
.badge-bottom { bottom: 20px; left: -40px; }

.badge-icon { font-size: 20px; }

.float-badge strong { display: block; font-size: 14px; font-weight: 700; }
.float-badge small { color: var(--gray-300); font-size: 11px; }

/* ============================================
   FUNDADORES
   ============================================ */
.fundadores-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 0;
}

.fundador-card {
  background: var(--navy-700);
  border: 1px solid rgba(212, 160, 23, 0.15);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
}

.fundador-card:hover {
  border-color: rgba(212, 160, 23, 0.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.fundador-avatar {
  width: 72px; height: 72px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--navy-900);
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.35);
}

.fundador-avatar-foto {
  width: 110px;
  height: 110px;
  padding: 3px;
  background: var(--gold-gradient);
}

.fundador-avatar-foto img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.fundador-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}

.fundador-role {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 16px;
}

.fundador-card p {
  color: var(--gray-300);
  font-size: 14px;
  line-height: 1.7;
}

.fundador-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 16px;
}

.fundador-tags span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--gold-400);
  border: 1px solid rgba(212, 160, 23, 0.3);
  background: rgba(212, 160, 23, 0.06);
  padding: 3px 10px;
  border-radius: 100px;
}

.missao-standalone {
  margin-top: 32px;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.07) 0%, var(--navy-700) 60%);
  border: 1px solid rgba(212, 160, 23, 0.25);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
}

.missao-standalone-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.missao-icon {
  font-size: 40px;
  flex-shrink: 0;
}

.missao-standalone-text {
  flex: 1;
  min-width: 200px;
}

.missao-standalone-text h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.missao-standalone-text p {
  color: var(--gray-300);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.missao-standalone-text strong { color: var(--gold-400); }

.missao-values {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.missao-value {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  background: rgba(212, 160, 23, 0.08);
  border: 1px solid rgba(212, 160, 23, 0.2);
  padding: 6px 14px;
  border-radius: 100px;
}

@media (max-width: 900px) {
  .fundadores-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .fundadores-grid {
    grid-template-columns: 1fr;
  }
  .missao-standalone {
    padding: 24px 20px;
  }
}

/* ============================================
   SERVIÇOS
   ============================================ */
.servicos {
  padding: 100px 0;
  background: var(--navy-900);
}

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

.servico-card {
  background: var(--navy-700);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.servico-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.servico-card:hover {
  border-color: rgba(212, 160, 23, 0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold), var(--shadow);
}

.servico-card:hover::before { opacity: 1; }

.servico-card.featured {
  border-color: rgba(212, 160, 23, 0.4);
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.08) 0%, var(--navy-700) 50%);
}

.featured-tag {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy-900);
  background: var(--gold-gradient);
  padding: 4px 10px;
  border-radius: 100px;
}

.servico-icon {
  width: 52px; height: 52px;
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.servico-icon svg {
  width: 28px; height: 28px;
  color: var(--gold-400);
}

.servico-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

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

.servico-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.servico-features li {
  font-size: 13px;
  color: var(--gray-300);
  padding-left: 16px;
  position: relative;
}

.servico-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-400);
  font-size: 11px;
  top: 1px;
}

.servico-ia {
  border-color: rgba(120, 80, 220, 0.25);
  background: linear-gradient(135deg, rgba(100, 60, 200, 0.07) 0%, var(--navy-700) 60%);
  position: relative;
}

.servico-ia:hover {
  border-color: rgba(150, 100, 255, 0.4);
}

.ia-badge {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

.servico-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 4px;
  padding: 12px 16px;
  background: rgba(212, 160, 23, 0.08);
  border: 1px solid rgba(212, 160, 23, 0.25);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-400);
  transition: all var(--transition);
}

.servico-cta:hover {
  background: rgba(212, 160, 23, 0.15);
  border-color: rgba(212, 160, 23, 0.5);
  color: var(--gold-400);
  transform: translateX(3px);
}

/* ============================================
   PACOTES
   ============================================ */
.pacotes {
  padding: 100px 0;
  background: var(--navy-800);
}

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

.pacote-card {
  background: var(--navy-700);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: all var(--transition);
}

.pacote-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 160, 23, 0.2);
}

.pacote-card.featured {
  border-color: rgba(212, 160, 23, 0.4);
  background: var(--navy-600);
  transform: scale(1.03);
  box-shadow: var(--shadow-gold), var(--shadow);
}

.pacote-card.featured:hover { transform: scale(1.03) translateY(-4px); }

.pacote-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

.pacote-header { margin-bottom: 20px; }

.pacote-name {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}

.pacote-price { display: flex; align-items: baseline; gap: 4px; flex-wrap: wrap; }

.price-from { font-size: 12px; color: var(--gray-300); }

.price-value {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-period { font-size: 14px; color: var(--gray-300); }

.pacote-desc {
  font-size: 14px;
  color: var(--gray-300);
  margin-bottom: 24px;
  line-height: 1.6;
}

.pacote-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.pacote-items li {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pacote-items li.inactive { opacity: 0.35; }

.check {
  color: var(--gold-400);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}

.pacotes-custom {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--navy-700);
  border: 1px dashed rgba(212, 160, 23, 0.3);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  flex-wrap: wrap;
}

.custom-icon { font-size: 32px; flex-shrink: 0; }

.custom-text { flex: 1; min-width: 200px; }

.custom-text strong { display: block; font-size: 18px; font-weight: 700; margin-bottom: 4px; }

.custom-text p { color: var(--gray-300); font-size: 14px; margin: 0; }

/* ============================================
   RESULTADOS
   ============================================ */
.resultados {
  padding: 100px 0;
  background: var(--navy-900);
}

.resultados-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.resultado-card {
  background: var(--navy-700);
  border: 1px solid rgba(212, 160, 23, 0.15);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}

.resultado-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 160, 23, 0.35);
  box-shadow: var(--shadow-gold);
}

.resultado-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.resultado-label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.resultado-seg {
  font-size: 12px;
  color: var(--gray-300);
}

.depoimentos-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
}

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

.depoimento-card {
  background: var(--navy-700);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}

.depoimento-card:hover {
  border-color: rgba(212, 160, 23, 0.2);
  transform: translateY(-4px);
}

.stars {
  color: var(--gold-400);
  font-size: 14px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.depoimento-card p {
  color: var(--gray-300);
  font-size: 15px;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
}

.depoimento-autor {
  display: flex;
  align-items: center;
  gap: 12px;
}

.autor-avatar {
  width: 40px; height: 40px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy-900);
  flex-shrink: 0;
}

.autor-avatar-foto {
  width: 52px; height: 52px;
  padding: 2px;
  background: var(--gold-gradient);
}

.autor-avatar-foto img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.depoimento-destaque {
  border-color: rgba(212, 160, 23, 0.35);
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.07) 0%, var(--navy-700) 60%);
}

.depoimento-autor strong { display: block; font-size: 14px; font-weight: 700; }

.depoimento-insta {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-400);
  margin-top: 3px;
  transition: color var(--transition);
}

.depoimento-insta:hover { color: var(--gold-500); text-decoration: underline; }

.depoimento-autor small { color: var(--gray-300); font-size: 12px; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 100px 0;
  background: var(--navy-800);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(212, 160, 23, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

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

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 18px;
  color: var(--gray-300);
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   CONTATO
   ============================================ */
.contato {
  padding: 100px 0;
  background: var(--navy-900);
}

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

.contato-info .section-title { margin-bottom: 16px; }

.contato-info > p {
  color: var(--gray-300);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.contato-meios { display: flex; flex-direction: column; gap: 16px; }

.meio {
  display: flex;
  align-items: center;
  gap: 14px;
}

.meio-icon {
  font-size: 24px;
  width: 48px; height: 48px;
  background: rgba(212, 160, 23, 0.08);
  border: 1px solid rgba(212, 160, 23, 0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.meio strong { display: block; font-size: 14px; font-weight: 700; }
.meio span { color: var(--gray-300); font-size: 14px; }

/* FORM */
.contato-form {
  background: var(--navy-700);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group:last-of-type { margin-bottom: 0; }

label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-300);
  letter-spacing: 0.3px;
}

input, select, textarea {
  background: var(--navy-600);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 14px;
  color: var(--white);
  font-family: var(--font-main);
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}

input:focus, select:focus, textarea:focus {
  border-color: rgba(212, 160, 23, 0.5);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
}

input::placeholder, textarea::placeholder { color: var(--gray-500); }

select { cursor: pointer; }

select option { background: var(--navy-700); }

textarea { resize: vertical; min-height: 100px; }

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-800);
  border-top: 1px solid rgba(212, 160, 23, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  padding: 60px 0;
  align-items: start;
}

.footer-brand .logo { margin-bottom: 16px; }

.footer-brand p {
  color: var(--gray-300);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 280px;
}

.social-links { display: flex; gap: 12px; }

.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  transition: all var(--transition);
}

.social-link svg { width: 16px; height: 16px; }

.social-link:hover {
  background: rgba(212, 160, 23, 0.1);
  border-color: rgba(212, 160, 23, 0.3);
  color: var(--gold-400);
}

.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 8px; }

.footer-col a {
  font-size: 14px;
  color: var(--gray-300);
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p { font-size: 13px; color: var(--gray-500); }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition);
}

.whatsapp-float svg { width: 28px; height: 28px; color: white; }

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

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .resultados-grid { grid-template-columns: repeat(2, 1fr); }
  .depoimentos-grid { grid-template-columns: repeat(2, 1fr); }
  .sobre-grid { gap: 50px; }
  .float-badge { display: none; }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(5, 8, 16, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 80px 24px 32px;
    gap: 4px;
    z-index: 999;
    border-bottom: 1px solid rgba(212, 160, 23, 0.1);
  }

  .nav-links.open { display: flex; }

  .nav-link { padding: 12px 16px; width: 100%; }

  .btn-nav { margin-top: 8px; text-align: center; }

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

  .hero-stats { gap: 24px; }

  .stat-divider { display: none; }

  .sobre-grid { grid-template-columns: 1fr; gap: 40px; }

  .sobre-visual { display: none; }

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

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

  .pacote-card.featured { transform: none; }
  .pacote-card.featured:hover { transform: translateY(-4px); }

  .resultados-grid { grid-template-columns: repeat(2, 1fr); }

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

  .contato-grid { grid-template-columns: 1fr; gap: 40px; }

  .form-row { grid-template-columns: 1fr; }

  .footer-content { grid-template-columns: 1fr; gap: 40px; }

  .footer-links { grid-template-columns: repeat(2, 1fr); }

  .pacotes-custom { flex-direction: column; text-align: center; }

  .footer-bottom .container { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .resultados-grid { grid-template-columns: 1fr; }

  .hero-actions { flex-direction: column; }

  .hero-actions .btn { width: 100%; justify-content: center; }

  .cta-actions { flex-direction: column; align-items: center; }

  .contato-form { padding: 24px; }

  .footer-links { grid-template-columns: 1fr; }
}
