/* ══════════════════════════════════════════════════════════
   VIVENS DIAS – CSS Principal
   Identidade Visual: Roxo Premium / Cinza / Branco
   ══════════════════════════════════════════════════════════ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Cores Primárias */
  --purple-900:  #1a0533;
  --purple-800:  #2d0a5c;
  --purple-700:  #4a1272;
  --purple-600:  #6b1f9e;
  --purple-500:  #8b2fc9;
  --purple-400:  #a855f7;
  --purple-300:  #c084fc;
  --purple-200:  #e9d5ff;
  --purple-100:  #f5f0ff;
  --purple-50:   #faf7ff;

  /* Neutros */
  --gray-900: #0f0f14;
  --gray-800: #1a1a26;
  --gray-700: #2d2d42;
  --gray-600: #4a4a68;
  --gray-500: #6b6b8a;
  --gray-400: #9898b5;
  --gray-300: #c2c2d6;
  --gray-200: #e4e4f0;
  --gray-100: #f2f2f8;
  --gray-50:  #fafafa;

  --white: #ffffff;
  --black: #0a0a0f;

  /* Gradientes */
  --gradient-hero:   linear-gradient(135deg, #0f0616 0%, #1c0840 35%, #2d1060 65%, #1a0533 100%);
  --gradient-purple: linear-gradient(135deg, var(--purple-700), var(--purple-500));
  --gradient-subtle: linear-gradient(180deg, var(--purple-50) 0%, var(--white) 100%);
  --gradient-dark:   linear-gradient(135deg, var(--purple-900), var(--purple-800));

  /* Tipografia */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-brand:   'Montserrat', sans-serif;

  /* Sombras */
  --shadow-sm:  0 1px 3px rgba(107, 31, 158, 0.08);
  --shadow-md:  0 4px 20px rgba(107, 31, 158, 0.12);
  --shadow-lg:  0 10px 40px rgba(107, 31, 158, 0.18);
  --shadow-xl:  0 20px 60px rgba(107, 31, 158, 0.25);
  --shadow-glow: 0 0 40px rgba(139, 47, 201, 0.4);

  /* Transições */
  --transition-fast:   0.2s ease;
  --transition-normal: 0.35s ease;
  --transition-slow:   0.6s ease;

  /* Layout */
  --container-max: 1200px;
  --nav-height: 76px;
  --section-py: 100px;
  --border-radius: 16px;
  --border-radius-lg: 24px;
}

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

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--gray-900);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

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

ul { list-style: none; }

/* ── Container ────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section Utilities ────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-family: var(--font-brand);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple-600);
  background: var(--purple-100);
  border: 1px solid var(--purple-200);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.section-tag.light {
  color: var(--purple-200);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-title.light { color: var(--white); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

.section-subtitle.light { color: rgba(255,255,255,0.75); }

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

.hide-sm { display: inline; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-brand);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 30px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: var(--transition-fast);
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--gradient-purple);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(107, 31, 158, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(107, 31, 158, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(6px);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-nav {
  background: var(--gradient-purple);
  color: var(--white);
  padding: 10px 22px;
  font-size: 0.82rem;
  box-shadow: 0 2px 12px rgba(107, 31, 158, 0.3);
}

.btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(107, 31, 158, 0.5);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  font-family: var(--font-brand);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  margin-top: 12px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: all var(--transition-normal);
}

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

/* WhatsApp button dentro da seção de contato – proporcional e alinhado */
.btn-whatsapp-contact {
  align-self: flex-start;
  width: auto;
  max-width: 220px;
  margin-top: 20px;
  justify-content: center;
}

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

/* ══════════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  background: rgba(10, 5, 25, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(139, 47, 201, 0.2);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.5));
}

.logo-text {
  font-family: var(--font-brand);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-family: var(--font-brand);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.8);
  padding: 8px 14px;
  border-radius: 8px;
  position: relative;
  transition: all var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--purple-400);
  border-radius: 2px;
  transition: width var(--transition-normal);
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: 20px;
}

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

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

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

/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(107, 31, 158, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(74, 18, 114, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 10%, rgba(168, 85, 247, 0.15) 0%, transparent 50%);
}

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

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.15);
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: var(--purple-300);
  font-family: var(--font-brand);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple-400);
  box-shadow: 0 0 8px var(--purple-400);
  animation: pulseDot 2s infinite;
}

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

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 20px;
}

.title-brand {
  display: block;
  background: linear-gradient(135deg, #ffffff 0%, #e9d5ff 40%, #c084fc 70%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(168, 85, 247, 0.5));
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
  line-height: 1.6;
}

.hero-subtitle em {
  font-style: italic;
  color: var(--purple-300);
}

.hero-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  line-height: 1.8;
}

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

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

.hero-logo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-img {
  width: min(420px, 90%);
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 40px rgba(139, 47, 201, 0.6));
  animation: heroFloat 6s ease-in-out infinite;
}

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

.logo-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 47, 201, 0.35), transparent 70%);
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50%       { transform: scale(1.15); opacity: 1; }
}

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.5);
  font-size: 1.1rem;
  animation: scrollBounce 2s ease-in-out infinite;
  transition: color var(--transition-fast);
}

.hero-scroll:hover { color: var(--purple-300); }

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

/* ══════════════════════════════════════════════════════════
   SOBRE
   ══════════════════════════════════════════════════════════ */
.sobre {
  padding: var(--section-py) 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.sobre::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--purple-100) 0%, transparent 70%);
  pointer-events: none;
}

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

.sobre-visual {
  position: relative;
}

.sobre-card-img {
  background: var(--gradient-dark);
  border-radius: var(--border-radius-lg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(168, 85, 247, 0.2);
}

.sobre-card-img::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(139, 47, 201, 0.15);
}

.sobre-icon-big {
  font-size: 4rem;
  color: var(--purple-400);
  margin-bottom: 40px;
  filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.5));
}

.sobre-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: var(--font-brand);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-brand);
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

.sobre-accent-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--purple-300);
  opacity: 0.2;
  pointer-events: none;
}

.sobre-accent-circle.c1 {
  width: 120px;
  height: 120px;
  top: -30px;
  left: -30px;
}

.sobre-accent-circle.c2 {
  width: 80px;
  height: 80px;
  bottom: -20px;
  right: -20px;
  border-color: var(--purple-500);
}

.sobre-content .section-title {
  margin-bottom: 28px;
}

.sobre-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.sobre-paragraphs p {
  color: var(--gray-600);
  font-size: 0.97rem;
  line-height: 1.8;
}

/* ══════════════════════════════════════════════════════════
   ESPECIALIDADES
   ══════════════════════════════════════════════════════════ */
.especialidades {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  position: relative;
}

.especialidades::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(139, 47, 201, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(107, 31, 158, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.esp-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
  cursor: default;
}

.esp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

.esp-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--purple-50) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.esp-card:hover {
  border-color: var(--purple-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.esp-card:hover::before { transform: scaleX(1); }
.esp-card:hover::after  { opacity: 1; }

.card-icon-wrap {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--purple-100);
  border: 1px solid var(--purple-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--purple-600);
  transition: all var(--transition-normal);
}

.esp-card:hover .card-icon {
  background: var(--gradient-purple);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(107, 31, 158, 0.35);
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.card-line {
  height: 1px;
  background: linear-gradient(90deg, var(--purple-200), transparent);
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════════════════════════
   DIFERENCIAIS
   ══════════════════════════════════════════════════════════ */
.diferenciais {
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.diferenciais-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-dark);
  z-index: 0;
}

.diferenciais-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 20%, rgba(139, 47, 201, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 10% 80%, rgba(74, 18, 114, 0.3) 0%, transparent 60%);
}

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

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

.dif-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--border-radius);
  padding: 28px 24px;
  transition: all var(--transition-normal);
  backdrop-filter: blur(4px);
}

.dif-item:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(168, 85, 247, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.dif-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--purple-300);
  transition: all var(--transition-normal);
}

.dif-item:hover .dif-icon {
  background: rgba(168, 85, 247, 0.3);
  color: var(--purple-200);
}

.dif-content h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.dif-content p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════
   EM BREVE
   ══════════════════════════════════════════════════════════ */
.em-breve {
  padding: var(--section-py) 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.em-breve::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--purple-100) 0%, transparent 65%);
  pointer-events: none;
}

.breve-wrapper {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 740px;
  margin: 0 auto;
}

.breve-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gradient-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  margin: 0 auto 24px;
  box-shadow: 0 4px 24px rgba(107, 31, 158, 0.4);
  animation: iconSpin 10s linear infinite;
}

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

.breve-text {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 48px;
}

/* Countdown */
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 90px;
}

.count-num {
  font-family: var(--font-brand);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  background: var(--gradient-dark);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 12px;
  padding: 16px 20px;
  line-height: 1;
  min-width: 80px;
  text-align: center;
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.1);
}

.count-label {
  font-family: var(--font-brand);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.countdown-sep {
  font-family: var(--font-brand);
  font-size: 2rem;
  font-weight: 700;
  color: var(--purple-400);
  padding-bottom: 28px;
}

/* Notify Form */
.notify-form {
  max-width: 480px;
  margin: 0 auto;
}

.notify-label {
  font-size: 0.87rem;
  color: var(--gray-500);
  margin-bottom: 14px;
  font-family: var(--font-brand);
}

.form-inline {
  display: flex;
  gap: 10px;
}

.form-input {
  flex: 1;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray-800);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 50px;
  padding: 12px 20px;
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-input:focus {
  border-color: var(--purple-400);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.12);
}

.form-success {
  margin-top: 14px;
  color: #22c55e;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ══════════════════════════════════════════════════════════
   CONTATO
   ══════════════════════════════════════════════════════════ */
.contato {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

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

.contato-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: all var(--transition-fast);
}

.contact-item:first-child { border-top: 1px solid var(--gray-100); }

.contact-item:hover {
  padding-left: 8px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: var(--purple-100);
  border: 1px solid var(--purple-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--purple-600);
  transition: all var(--transition-normal);
}

.contact-item:hover .contact-icon {
  background: var(--gradient-purple);
  color: var(--white);
  border-color: transparent;
}

.whatsapp-icon { background: rgba(37, 211, 102, 0.1); border-color: rgba(37, 211, 102, 0.25); color: #25d366; }
.instagram-icon { background: rgba(228, 64, 95, 0.1); border-color: rgba(228, 64, 95, 0.25); color: #e4405f; }

.contact-data {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-label {
  font-family: var(--font-brand);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.contact-value {
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--gray-800);
  transition: color var(--transition-fast);
}

a.contact-value:hover { color: var(--purple-600); }

/* Contact Form */
.contato-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 28px;
}

.form-group {
  position: relative;
  margin-bottom: 18px;
}

.form-group label {
  display: none;
}

.input-field {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--gray-800);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  padding: 14px 18px;
  outline: none;
  transition: all var(--transition-fast);
  resize: none;
}

.input-field::placeholder { color: var(--gray-400); }

.input-field:focus {
  background: var(--white);
  border-color: var(--purple-400);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.textarea-field {
  min-height: 100px;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.footer {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-600), transparent);
}

.footer-top {
  padding: 72px 0 56px;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.4));
}

.footer-name {
  font-family: var(--font-brand);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--white);
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.footer-tagline em { color: var(--purple-300); }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  transition: all var(--transition-normal);
}

.social-link:hover {
  background: var(--purple-700);
  border-color: var(--purple-500);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-brand);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

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

.footer-list a,
.footer-list li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-list a:hover { color: var(--purple-300); }

.footer-contact-list li { gap: 10px; }

.footer-contact-list i {
  color: var(--purple-500);
  font-size: 0.85rem;
  width: 16px;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
}

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

.copyright,
.rdrtech {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

.rdr-link {
  color: var(--purple-400);
  transition: color var(--transition-fast);
}

.rdr-link:hover { color: var(--purple-300); }

/* ══════════════════════════════════════════════════════════
   FLOATING ELEMENTS
   ══════════════════════════════════════════════════════════ */

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: all var(--transition-normal);
  animation: floatBounce 3s ease-in-out infinite;
}

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

.whatsapp-float:hover .float-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes floatBounce {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45); }
  50%       { box-shadow: 0 6px 30px rgba(37, 211, 102, 0.65); }
}

.float-tooltip {
  position: absolute;
  right: 68px;
  white-space: nowrap;
  background: var(--gray-900);
  color: var(--white);
  font-family: var(--font-brand);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 8px;
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--transition-normal);
  pointer-events: none;
}

.float-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--gray-900);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 900;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(107, 31, 158, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: var(--white);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition-normal);
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--purple-600);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --section-py: 80px; }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 130px;
  }

  .hero-visual { display: none; }

  .hero-actions {
    justify-content: center;
  }

  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

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

@media (max-width: 768px) {
  :root { --section-py: 64px; }

  .hide-sm { display: none; }

  .nav-links,
  .btn-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(10, 5, 25, 0.97);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
    animation: slideDown 0.3s ease;
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .nav-links.open .nav-link {
    padding: 14px 16px;
    font-size: 0.95rem;
    border-radius: 10px;
  }

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

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

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

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .countdown {
    gap: 4px;
  }

  .countdown-item { min-width: 70px; }
  .count-num { font-size: 1.8rem; padding: 12px 14px; min-width: 60px; }
  .countdown-sep { font-size: 1.5rem; }

  .form-inline {
    flex-direction: column;
  }

  .form-inline .btn {
    justify-content: center;
  }

  .sobre-stats {
    gap: 16px;
  }

  .stat-num { font-size: 1.4rem; }

  .contato-form-wrap {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn { justify-content: center; }

  .whatsapp-float { bottom: 20px; right: 20px; }
  .back-to-top { bottom: 88px; right: 20px; }
}

/* ── AOS Custom Overrides ─────────────────────────────────── */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* ── Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--purple-400);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--purple-600);
}

/* ── Selection ────────────────────────────────────────────── */
::selection {
  background: var(--purple-300);
  color: var(--purple-900);
}

/* ── Extras: CRM, Map link, Form note ────────────────────── */
.contact-crm {
  font-family: var(--font-brand);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--purple-500);
  margin-top: 2px;
}

.map-link {
  color: var(--gray-800);
  transition: color var(--transition-fast);
}

.map-link:hover {
  color: var(--purple-600);
}

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 10px;
}

/* Footer copyright com CRM */
.copyright {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
}
