/* ============================================
   ONLY WAY CONSULTING - PREMIUM A+
   CORREÇÃO DEFINITIVA DO SCROLL DUPLO
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --bg-primary: #070A0F;
  --bg-secondary: #0B111A;
  --bg-card: rgba(255, 255, 255, 0.04);
  --glass: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.1);
  --text-primary: #ECF2FF;
  --text-secondary: #AEB9CF;
  --text-muted: #6B7A94;
  --accent: #1F6FEB;
  --accent-hover: #2B8CFF;
  --gradient: linear-gradient(135deg, #1F6FEB 0%, #2B8CFF 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.3);
  --radius: 16px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET - CORREÇÃO SCROLL ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ⚡ FIX DEFINITIVO: SCROLL APENAS NO HTML */
html {
  scroll-behavior: smooth;
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  /* REMOVIDO: overflow-y - deixar natural */
}

/* Base */
body {
  font-family: 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  position: relative;
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  
  /* ⚡ IMPORTANTE: SEM OVERFLOW NO BODY */
  overflow-x: hidden;
  /* overflow-y é natural (auto) */
}

/* Quando o menu mobile estiver aberto, trava TUDO */
body.menu-open {
  overflow: hidden !important;
  position: fixed;
  width: 100%;
  height: 100%;
}

html.menu-open {
  overflow: hidden !important;
}

/* Background Gradient Animation */
body::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 20% 10%, rgba(31, 111, 235, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(43, 140, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(31, 111, 235, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
  animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(5%, -5%) rotate(1deg); }
  66% { transform: translate(-5%, 5%) rotate(-1deg); }
}

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

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

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
  width: 100%;
}

/* ===== LOADER PREMIUM ===== */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s, visibility 0.6s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px; 
}

.loader-logo-wrapper {
  width: clamp(220px, 35vw, 420px);
  height: clamp(220px, 35vw, 420px);
  margin: 0 auto 0px;
}

.loader-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  animation: fadeIn 0.6s 0.2s forwards;
}

.loader-ring {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 3px solid transparent;
  border-top-color: var(--accent);
  border-right-color: var(--accent);
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loader-bar {
  width: 240px;
  height: 4px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  margin: 0 auto 16px;
}

.loader-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--gradient);
  border-radius: 4px;
  animation: loading 1.5s ease-in-out forwards;
}

@keyframes loading {
  to { width: 100%; }
}

.loader-text {
  font-size: 14px;
  color: var(--text-muted);
  opacity: 0;
  animation: fadeIn 0.6s 0.8s forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* ===== LOADER MINIMALISTA (PÁGINAS INTERNAS) ===== */
.loader-minimal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader-minimal.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-bg-fade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(
      rgba(7, 10, 15, 0.85),
      rgba(7, 10, 15, 0.85)
    ),
    url('../img/intro.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: fadeInBg 0.8s ease forwards;
}

@keyframes fadeInBg {
  to { opacity: 1; }
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 16px 0;
  transition: var(--transition);
  backdrop-filter: blur(0);
}

.header.scrolled {
  background: rgba(7, 10, 15, 0.9);
  backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 var(--border);
  padding: 12px 0;
}

.header .container {
  max-width: 1400px;
  padding: 0 32px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.brand img {
  width: 60px;
  height: 60px;
  transition: var(--transition);
}

.brand:hover {
  color: var(--accent-hover);
  transform: translateY(-2px);
}

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

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
  transition: var(--transition);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--text-primary);
}

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

.nav-cta {
  background: var(--gradient);
  padding: 10px 24px;
  border-radius: 10px;
  color: white;
  font-weight: 600;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(31, 111, 235, 0.4);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  transition: var(--transition);
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: rgba(11, 17, 26, 0.98);
  backdrop-filter: blur(24px);
  z-index: 99;
  padding: 100px 32px 32px;
  transition: var(--transition);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-link {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-link:hover {
  color: var(--text-primary);
  padding-left: 10px;
}

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

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(
      rgba(7, 10, 15, 0.25),
      rgba(7, 10, 15, 0.70)
    ),  
    url('../img/intro.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0;
  transition: opacity 2s ease;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 0%, var(--bg-primary) 100%);
  z-index: 1;
}

.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  padding: 0 24px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass);
  border: 1px solid var(--border);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 400;
  letter-spacing: -0.4px;
  line-height: 1.15;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-title-line {
  opacity: 0;
  transform: translateY(40px);
}

.hero-title-highlight {
  background: linear-gradient(
    135deg,
    rgba(31, 111, 235, 0.95) 0%,
    rgba(43, 140, 255, 0.95) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
  letter-spacing: -0.3px;
}

.hero-subtitle {
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 48px;
}

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

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  opacity: 0;
}

.hero-cta.primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 8px 24px rgba(31, 111, 235, 0.3);
}

.hero-cta.primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(31, 111, 235, 0.5);
}

.hero-cta.secondary {
  background: var(--glass);
  border: 1px solid var(--border);
  color: var(--text-primary);
  backdrop-filter: blur(10px);
}

.hero-cta.secondary:hover {
  border-color: var(--accent);
  background: rgba(31, 111, 235, 0.1);
}

.hero-cta svg {
  width: 20px;
  height: 20px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0;
}

.scroll-indicator {
  width: 24px;
  height: 40px;
  border: 2px solid var(--border);
  border-radius: 12px;
  position: relative;
}

.scroll-dot {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes scrollDown {
  0%, 100% { transform: translate(-50%, 0); opacity: 1; }
  50% { transform: translate(-50%, 12px); opacity: 0; }
}

/* ===== HERO INTERNO (PÁGINAS INTERNAS) ===== */

.hero-interno .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(
      rgba(7, 10, 15, 0.75),
      rgba(7, 10, 15, 0.92)
    ),
    url('../img/intro.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 1;
}

.hero-interno .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 0%, var(--bg-primary) 100%);
  z-index: 1;
}

.hero-interno .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeInUp 0.8s 0.3s forwards;
}

.breadcrumb a {
  color: var(--text-secondary);
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb span {
  color: var(--text-muted);
}

.page-title {
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: fadeInUp 0.8s 0.5s forwards;
}

.page-subtitle {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  opacity: 0;
  animation: fadeInUp 0.8s 0.7s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
  from {
    opacity: 0;
    transform: translateY(20px);
  }
}

/* ===== STATS ===== */
.stats {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  width: 100%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 48px;
  text-align: center;
  width: 100%;
}

.stat-item {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.stat-icon {
  width: 64px;
  height: 64px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.stat-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--accent);
}

.stat-item:hover .stat-icon {
  background: var(--gradient);
  border-color: transparent;
  transform: translateY(-4px);
}

.stat-item:hover .stat-icon svg {
  stroke: white;
}

.stat-value, .stat-number {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.stat-description {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* ===== SECTIONS ===== */
.about,
.services,
.contact {
  padding: 120px 0;
  position: relative;
  z-index: 1;
  width: 100%;
  overflow-x: hidden;
}

.section-header {
  max-width: 800px;
  margin: 0 auto 80px;
  width: 100%;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-subtitle {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  opacity: 1 !important;
}

.section-title {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  opacity: 1 !important;
}

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

.section-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-secondary);
  line-height: 1.8;
  opacity: 1 !important;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 60px;
  width: 100%;
}

.about-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  transition: var(--transition);
  opacity: 1 !important;
  transform: translateY(0) !important;
  backdrop-filter: blur(20px);
}

.about-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.12);
}

.about-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: var(--transition);
}

.about-icon svg {
  width: 32px;
  height: 32px;
  stroke: white;
}

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

.about-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.about-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Ajuste para seção de planejamento financeiro com 6 cards */
#planejamento-financeiro .about-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

@media (min-width: 969px) {
  #planejamento-financeiro .about-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== SERVICES ===== */
.service-block {
  margin-bottom: 140px;
  opacity: 1 !important;
  width: 100%;
}

.service-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.service-block.reverse .service-content {
  direction: rtl;
}

.service-block.reverse .service-text {
  direction: ltr;
}

.service-number {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.service-title {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

.service-description {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 36px;
}

.service-features {
  display: grid;
  gap: 18px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--text-secondary);
  transition: var(--transition);
}

.feature-item:hover {
  color: var(--text-primary);
  transform: translateX(5px);
}

.feature-item svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  flex-shrink: 0;
}

.service-visual {
  position: relative;
}

.service-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 56px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(24px);
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.12);
}

.card-icon {
  width: 96px;
  height: 96px;
  background: var(--gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  transition: var(--transition);
}

.card-icon svg {
  width: 48px;
  height: 48px;
  stroke: white;
}

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

.service-card h4 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 120px 0;
  position: relative;
  z-index: 1;
  width: 100%;
}

.cta-content {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 80px 48px;
  text-align: center;
  backdrop-filter: blur(24px);
  opacity: 1 !important;
  position: relative;
  overflow: hidden;
}

.cta-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  opacity: 0.05;
  z-index: 0;
}

.cta-icon {
  width: 72px;
  height: 72px;
  background: var(--gradient);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.cta-icon svg {
  width: 36px;
  height: 36px;
  stroke: white;
}

.cta-title {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-text {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gradient);
  color: white;
  padding: 18px 40px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 17px;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(31, 111, 235, 0.3);
  position: relative;
  z-index: 1;
}

.cta-button svg {
  width: 20px;
  height: 20px;
}

.cta-button:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 40px rgba(31, 111, 235, 0.5);
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  width: 100%;
}

.contact-title {
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.contact-text {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 48px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-item {
  display: flex;
  gap: 18px;
  transition: var(--transition);
  cursor: pointer;
}

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

.contact-icon {
  width: 56px;
  height: 56px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--accent);
}

.contact-item:hover .contact-icon {
  background: var(--gradient);
  border-color: transparent;
  transform: scale(1.1);
}

.contact-item:hover .contact-icon svg {
  stroke: white;
}

.contact-item h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ⚡ FIX: ENDEREÇOS SEMPRE VISÍVEIS - SEM ANIMAÇÃO GSAP */
.contact-item p,
.contact-item .endereco {
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 8px;
  /* GARANTIR VISIBILIDADE TOTAL */
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  transform: none !important;
}

.contact-item .endereco:last-child {
  margin-bottom: 0;
}

/* ===== FORM ===== */
.contact-form {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  backdrop-filter: blur(24px);
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 15px;
  color: var(--text-primary);
  font-family: inherit;
  transition: var(--transition);
}

/* ===== SELECT CUSTOMIZADO ===== */
.form-group select {
  background: rgba(255, 255, 255, 0.05) 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='%23ECF2FF' d='M6 9L1 4h10z'/%3E%3C/svg%3E") no-repeat;
  background-position: right 18px center;
  padding-right: 50px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.form-group select:focus {
  background-color: rgba(255, 255, 255, 0.08);
}

.form-group select option {
  background: #0B111A;
  color: #ECF2FF;
  padding: 12px;
}

.form-group select option:hover {
  background: #1F6FEB;
  color: white;
}

.form-group select option:checked {
  background: #1F6FEB;
  color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(31, 111, 235, 0.1);
}

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

.form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--gradient);
  color: white;
  padding: 18px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(31, 111, 235, 0.3);
}

.form-submit svg {
  width: 20px;
  height: 20px;
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(31, 111, 235, 0.5);
}

/* ===== FOOTER ===== */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
  width: 100%;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
  width: 100%;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 56px;
  height: 56px;
}

.footer-brand h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
}

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

.footer-links a {
  font-size: 15px;
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--text-primary);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    padding: 120px 0 60px;
  }

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

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

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

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

  .service-block.reverse .service-content {
    direction: ltr;
  }

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

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

  .footer-links {
    flex-direction: column;
    gap: 16px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #planejamento-financeiro .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }

  .header .container {
    padding: 0 20px;
  }

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

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

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

  #planejamento-financeiro .about-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 32px 24px;
  }

  .cta-content {
    padding: 60px 32px;
  }

  .hero-interno {
    min-height: 300px;
    padding: 100px 0 60px;
    margin-bottom: 60px;
  }
}

/* ============================================
   PÁGINA SERVIÇOS - FUNDO FIXO TELA TODA
   ============================================ */
body.page-servicos {
  position: relative;
  min-height: 100vh;
  background: #070A0F;
}

body.page-servicos::before {
  display: none !important;
}

body.page-servicos::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: 
    linear-gradient(
      rgba(7, 10, 15, 0.70),
      rgba(7, 10, 15, 0.85)
    ),
    url('../img/intro.jpg');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  z-index: 0;
  pointer-events: none;
}

body.page-servicos > * {
  position: relative;
  z-index: 1;
}

body.page-servicos .hero-interno {
  background: transparent;
  margin-bottom: 0;
  padding: 140px 0 100px;
  min-height: 60vh;
  position: relative;
  z-index: 2;
}

body.page-servicos .hero-interno .hero-bg,
body.page-servicos .hero-interno .hero-overlay {
  display: none;
}

body.page-servicos .services {
  background: transparent;
  position: relative;
  padding: 80px 0 120px;
  z-index: 2;
}

body.page-servicos .service-card {
  background: rgba(11, 17, 26, 0.90);
  backdrop-filter: blur(25px) saturate(150%);
  -webkit-backdrop-filter: blur(25px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

body.page-servicos .service-card:hover {
  background: rgba(11, 17, 26, 0.95);
  border-color: var(--accent);
  box-shadow: 0 16px 48px rgba(31, 111, 235, 0.3);
}

body.page-servicos .cta-section,
body.page-servicos .footer {
  background: rgba(7, 10, 15, 0.92);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  position: relative;
  z-index: 2;
}

body.page-servicos .breadcrumb {
  background: rgba(11, 17, 26, 0.70);
  padding: 10px 24px;
  border-radius: 50px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

body.page-servicos .page-title {
  text-shadow: 
    0 4px 30px rgba(31, 111, 235, 0.6),
    0 2px 15px rgba(0, 0, 0, 0.9),
    0 1px 3px rgba(0, 0, 0, 1);
}

body.page-servicos .page-subtitle {
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.9);
  background: rgba(7, 10, 15, 0.60);
  padding: 14px 28px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

body.page-servicos .section-header {
  background: rgba(7, 10, 15, 0.75);
  padding: 48px;
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

body.page-servicos .service-block {
  background: rgba(11, 17, 26, 0.75);
  padding: 60px 40px;
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 60px;
}

body.page-servicos .header {
  background: rgba(7, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 100;
}

@media (max-width: 968px) {
  body.page-servicos .service-block {
    padding: 40px 24px;
  }
}
