/*
Theme Name: Lumos
Theme URI: https://agencialumos.com.br
Author: Lumos Marketing Digital
Author URI: https://agencialumos.com.br
Description: Tema WordPress da Lumos — Estratégias e Soluções para Sua Empresa.
Version: 1.0
Text Domain: lumos
*/

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

:root {
  --purple-deep: #3d1a6e;
  --purple-mid:  #4b1f8a;
  --purple-card: #3e1c5c;
  --gold:        #c9a84c;
  --gold-light:  #e8c97a;
  --cream:       #f5f0e8;
  --white:       #ffffff;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--purple-deep);
  color: var(--white);
  overflow-x: hidden;
}

/* ============================================
   CANVAS DE PARTÍCULAS (cursor)
============================================ */
#particle-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 8000;
  opacity: 0;
  transition: opacity 0.4s ease;
}
#particle-canvas.ready {
  opacity: 1;
}

/* ============================================
   NAVEGAÇÃO FIXA
============================================ */
nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(860px, calc(100% - 40px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px 10px 14px;
  background: rgba(245, 240, 232, 0.18);
  border: 1px solid rgba(245, 240, 232, 0.25);
  border-radius: 60px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 9000;
  transition: background 0.3s, box-shadow 0.3s;
}
nav.scrolled {
  background: rgba(45, 14, 90, 0.88);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.nav-logo span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.05em;
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-links a:hover {
  color: var(--gold-light);
}
.nav-links a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 8999;
  background: rgba(35, 8, 72, 0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
.mobile-menu a:hover {
  color: var(--gold);
}

/* ============================================
   STICKY STACK (slides)
============================================ */
.stack-wrapper {
  position: relative;
}

.slide {
  position: sticky;
  top: 0;
  height: 100dvh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.slide-servicos {
  height: 90dvh;
}

#inicio {
  background:
    radial-gradient(circle at 78% 28%, rgba(232, 201, 122, 0.10) 0%, transparent 45%),
    radial-gradient(ellipse 75% 65% at 80% 40%, var(--purple-mid) 0%, var(--purple-deep) 65%);
  background-size: 140% 140%, 100% 100%;
  animation: heroBgDrift 18s ease-in-out infinite alternate;
}
@keyframes heroBgDrift {
  0%   { background-position: 0% 0%, 0 0; }
  100% { background-position: 100% 60%, 0 0; }
}

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

/* Eyebrow — badge dourado chamativo acima do título */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 20px;
  margin-bottom: 26px;
  border: 1px solid rgba(201, 168, 76, 0.5);
  border-radius: 60px;
  background: rgba(201, 168, 76, 0.08);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  animation: eyebrowFade 0.8s ease both, eyebrowGlow 3s ease-in-out infinite;
}
.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}
@keyframes eyebrowFade {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes eyebrowGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(201,168,76,0); }
  50%      { box-shadow: 0 0 18px rgba(201,168,76,0.25); }
}

.hero-title {
  font-family: var(--font-display);
  /* Maior e mais presente */
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  cursor: default;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin: 9px 1px 9px 1px;
  text-transform: uppercase;
  margin-bottom: 80px;
  position: relative;
  animation: titleRise 0.9s 0.15s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes titleRise {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-line-break {
  display: block;
}

.hero-title-inner {
  position: relative;
  display: inline-block;
  color: var(--cream);
  /* Leve sombra para dar profundidade ao texto sobre o fundo */
  text-shadow: 0 4px 30px rgba(0,0,0,0.25);
}
.hero-title-inner::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-transform: inherit;
  white-space: pre-wrap;
  transition: color 0.4s ease;
}

.accent-dot {
  color: var(--gold);
  display: inline-block;
  animation: dotBlink 2.4s ease-in-out infinite;
}
@keyframes dotBlink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

/* CTA — mais robusto, com brilho deslizante no hover */
.hero-cta {
  position: relative;
  display: inline-block;
  padding: 19px 58px;
  background: var(--gold);
  border: none;
  border-radius: 60px;
  color: var(--purple-deep);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
  transition: background 0.25s, box-shadow 0.25s, transform 0.25s;
  cursor: pointer;
  animation: ctaFade 0.9s 0.4s ease both;
}
@keyframes ctaFade {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-cta span {
  position: relative;
  z-index: 1;
}
.hero-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.hero-cta:hover {
  background: var(--gold-light);
  box-shadow: 0 10px 44px rgba(201, 168, 76, 0.55);
  transform: translateY(-3px);
}
.hero-cta:hover::before {
  left: 140%;
}

.hero-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 44px;
  animation: ctaFade 0.9s 0.6s ease both;
}
.hero-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.2px solid rgba(52, 3, 80, 0.3);
  color: var(--purple-card);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.hero-social a:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.12);
  color: #311c52;
  transform: translateY(-3px);
}
.hero-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.contatos-social {
  position: absolute;
  left: -360px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 44px;
  animation: ctaFade 0.9s 0.6s ease both;
}
.contatos-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.2px solid rgba(220, 191, 236, 0.3);
  color: var(--cream);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.contatos-social a:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.12);
  color: #dfcdfc;
  transform: translateY(-3px);
}
.contatos-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@media (max-width: 700px) {
  #inicio { animation: none; } /* economiza performance em mobile */
}

/* ============================================
   SLIDE 2 — SOCIAL MEDIA (serviços)
============================================ */
#servicos {
  background: #e9e5ef;
  align-items: center;
  justify-content: center;
}

.servicos-scene {
  width: 100%;
  max-width: 1160px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.servicos-left {
  position: relative;
  flex: 0 0 auto;
  padding-right: clamp(340px, 40vw, 520px);
}

.insta-card {
  width: clamp(360px, 40vw, 520px);
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 6px 12px 20px rgba(0, 0, 0, 0.18);
  position: relative;
  z-index: 1;
  overflow: visible;
}

.insta-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #fff;
  border-bottom: 0.5px solid #eee;
  border-radius: 14px 14px 0 0;
}
.insta-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.insta-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--purple-card);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.insta-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.insta-username {
  font-size: 14px;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.01em;
}
.insta-follow-btn {
  background: #5b2d82;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  border: none;
  border-radius: 5px;
  padding: 6px 20px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.03em;
}
.insta-follow-btn:hover {
  background: #3b1958;
  transition: 0.3s;
}

.insta-image-area {
  background: #f5f0e8;
  height: clamp(280px, 32vw, 420px);
  width: 100%;
  position: relative;
  overflow: visible;
}

.insta-phone-img {
  position: absolute;
  left: -15%;
  bottom: 11.1%;
  height: clamp(340px, 38vw, 500px);
  width: auto;
  z-index: 10;
  pointer-events: none;
}

.insta-purple-float {
  position: absolute;
  top: 45%;
  transform: translateY(-17%);
  left: calc(100% - 210px);
  width: clamp(420px, 48vw, 640px);
  background: #3e1c5c;
  border-radius: 22px;
  padding: 32px 36px 32px 90px;
  z-index: 5;
  box-shadow: 8px 8px 28px rgba(0, 0, 0, 0.25);
}
.insta-purple-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
  margin-left: 70px;
}
.insta-purple-title .dot-yellow {
  color: #d4c90a;
}
.insta-service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.insta-service-list li {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.01em;
  margin-left: 90px;
}

.insta-footer {
  padding: 10px 16px 12px;
  background: #fff;
  border-top: 0.5px solid #eee;
  border-radius: 0 0 14px 14px;
}
.insta-footer-username {
  font-size: 12px;
  font-weight: 700;
  color: #111;
}
.insta-footer-text {
  font-size: 12px;
  color: #666;
  margin-top: 2px;
  line-height: 1.4;
}

/* ============================================
   SLIDE 3 — MARKETPLACE
============================================ */
#marketplace {
  background: #ede9f3;
  align-items: center;
  justify-content: center;
}

.market-scene {
  width: 100%;
  max-width: 1160px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.market-card {
  width: 100%;
  max-width: 1000px;
  background: #3e1c5c;
  border-radius: 32px;
  padding: clamp(36px, 5vw, 64px) clamp(40px, 6vw, 72px);
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 60px);
  box-shadow: 8px 12px 40px rgba(0, 0, 0, 0.22);
  position: relative;
  overflow: hidden;
}

.market-text {
  flex: 1;
  min-width: 0;
}

.market-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  margin-bottom: clamp(18px, 2.5vw, 28px);
}
.market-title .dot-gold {
  color: var(--gold);
}

.market-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.market-list li {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.5vw, 1.2rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.01em;
}

.market-img-wrap {
  flex: 0 0 auto;
  width: clamp(650px, 36%, 440px);
  margin-top: 1.4%;
  display: flex;
  align-items: flex-end;
  position: absolute;
  left: 33%;
  justify-content: center;
}
.market-img-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(4px 8px 20px rgba(0, 0, 0, 0.3));
}

.market-logo {
  position: absolute;
  top: 20px;
  right: 60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
}
.market-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   ATENDIMENTO STRIP (vídeo + avião)
============================================ */
.atendimento-strip {
  position: relative;
  width: 100%;
  height: 150px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a0a2e;
}

.atendimento-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.atendimento-video-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  background: #2a1a4a;
}

.atendimento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(61, 26, 110, 0.78) 0%, rgba(75, 31, 138, 0.65) 100%);
  z-index: 2;
}

.atendimento-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 900px;
  padding: 0 6vw;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

/* Wrapper interno: dá ao avião e ao texto o MESMO sistema de coordenadas,
   evitando o descompasso entre a largura da faixa e a largura real do texto */
.atendimento-inner {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.atendimento-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 2.6vw, 1.7rem);
  cursor: default;
  font-weight: 400;
  color: var(--cream);
  text-align: center;
  white-space: nowrap;
  position: relative;
  clip-path: inset(0 100% 0 0);
}

/* Avião posicionado relativo ao MESMO wrapper do texto (.atendimento-inner),
   então "left" em px corresponde exatamente à régua do texto */
.atendimento-plane {
  position: absolute;
  top: 50%;
  left: 0;
  width: clamp(28px, 4vw, 44px);
  height: auto;
  transform: translate(-50%, -50%) rotate(90deg);
  z-index: 4;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
  pointer-events: none;
}
.atendimento-plane svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: var(--cream);
}

.atendimento-particles {
  position: absolute;
  top: -40px;
  left: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 80px);
  z-index: 3;
  pointer-events: none;
}

/* ============================================
   SEÇÃO SOBRE
   Vídeo de fundo (Digitamento.mp4) + overlay roxo,
   logo Lumos-3, texto editorial e contadores animados.
============================================ */
.sobre-section {
  position: relative;
  padding: clamp(70px, 10vw, 130px) 6vw;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.sobre-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.sobre-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(26,10,46,0.92) 0%, rgba(61,26,110,0.88) 55%, rgba(75,31,138,0.86) 100%);
  z-index: 1;
}

.sobre-container {
  position: relative;
  z-index: 2;
  max-width: 880px;
  width: 100%;
  text-align: center;
}

.sobre-logo {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(28px, 4vw, 44px);
}
.sobre-logo img {
  width: clamp(180px, 22vw, 260px);
  height: auto;
}

.sobre-lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.4;
  max-width: 700px;
  margin: 0 auto clamp(24px, 3vw, 36px);
}
.sobre-highlight {
  color: var(--gold-light);
  font-style: normal;
}

.sobre-body {
  font-size: clamp(0.92rem, 1.3vw, 1.05rem);
  font-weight: 300;
  color: rgba(245,240,232,0.82);
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto clamp(40px, 5vw, 60px);
}

/* Contadores de estatísticas */
.sobre-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 56px);
  margin-bottom: clamp(40px, 5vw, 60px);
  flex-wrap: wrap;
}
.sobre-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
}
.sobre-stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.sobre-stat-label {
  margin-top: 8px;
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(245,240,232,0.65);
  letter-spacing: 0.03em;
  line-height: 1.4;
  text-transform: uppercase;
}
.sobre-stat-divider {
  width: 1px;
  height: 56px;
  background: rgba(201,168,76,0.3);
}

.sobre-closing {
  font-size: clamp(0.92rem, 1.3vw, 1.05rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(245,240,232,0.75);
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto clamp(32px, 4vw, 44px);
}

.sobre-cta {
  display: inline-block;
  padding: 15px 40px;
  background: transparent;
  border: 1.5px solid var(--gold);
  border-radius: 60px;
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
}
.sobre-cta:hover {
  background: var(--gold);
  color: var(--purple-deep);
  box-shadow: 0 0 30px rgba(201,168,76,0.45);
}



.hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55%; /* aumentado para acomodar mais camadas */
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.wave {
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 120%;
  height: 100%;
  animation: waterWave 8s ease-in-out infinite alternate;
}

.wave1 {
  animation-duration: 6s;
  opacity: 0.7;
}
.wave2 {
  animation-duration: 9s;
  opacity: 0.5;
  bottom: -8%;
}
.wave3 {
  animation-duration: 12s;
  opacity: 0.35;
  bottom: -16%;
}
.wave4 {
  animation-duration: 15s;
  opacity: 0.25;
  bottom: -24%;
}
.wave5 {
  animation-duration: 18s;
  opacity: 0.15;
  bottom: -32%;
}

@keyframes waterWave {
  0% {
    transform: translateX(-5%) scaleY(1);
  }
  100% {
    transform: translateX(5%) scaleY(1.1);
  }
}


@media (max-width: 700px) {
  .sobre-stats { gap: 24px; }
  .sobre-stat-divider { display: none; }
  .sobre-lead { font-size: 1.3rem; }
}

/* ============================================
   MODAL DE ORÇAMENTO
============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background: var(--cream);
  color: #1a0a2e;
  max-width: 560px;
  width: 100%;
  border-radius: 28px;
  padding: 36px 32px 40px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.96);
  transition: transform 0.3s ease;
}
.modal-overlay.open .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: #4a3a5e;
  transition: color 0.2s;
}
.modal-close:hover {
  color: var(--purple-deep);
}

.modal-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--purple-deep);
  letter-spacing: 0.02em;
}

.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #2d1a4a;
  margin-bottom: 4px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #d6cee0;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: #fff;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--purple-mid);
}
.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.file-hint {
  display: block;
  font-size: 0.7rem;
  color: #777;
  margin-top: 4px;
}

.btn-submit {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--purple-deep);
  border: none;
  border-radius: 60px;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, box-shadow 0.25s;
  margin-top: 8px;
}
.btn-submit:hover {
  background: var(--purple-mid);
  box-shadow: 0 4px 20px rgba(61, 26, 110, 0.4);
}

/* ============================================
   FOOTER
============================================ */
footer {
  padding: 32px 7vw;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  background: var(--purple-deep);
}
footer p {
  font-size: 0.78rem;
  color: rgba(245, 240, 232, 0.4);
  letter-spacing: 0.06em;
}

/* ============================================
   SCROLL REVEAL
============================================ */
.reveal {
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}


/* ============================================
   SEÇÃO DE AVALIAÇÕES
============================================ */
.reviews-section {
    z-index: 20;
    background: #ffffff00;
    padding: 80px 0;
}

.reviews-container {
    margin: 0 auto;
    background: linear-gradient(to right, #faf7ff, #b8a1d8);
    position: relative;
    height: 80.8dvh;
    z-index: 21;
}

.reviews-title {
  text-align: center;
  font-size: 38px;
  color: var(--purple-card);
  margin-bottom: 40px;
}

.elfsight-app-572686d3-8c5e-40f8-a796-f943252bea1e {
    position: relative;
    z-index: 21;
}

.reviews-cta {
    background: var(--gold);
    border: --gold 1px solid;
    padding: 12px 44px;
    color: var(--cream);
    font-family: var(--font-body);
    text-decoration: none;
    border-radius: 18px;
    font-weight: bold;
    transition-duration: 0.7s;
  display: table;
  margin: 30px auto 0;
}

.reviews-cta:hover {
    background-color: #ffffff00;
    color: var(--purple-card);
    transition-duration: 0.7s;
    border: #0d0520 1px solid;
    border-radius: 18px;
}


/* ============================================
   SEÇÃO DESTAQUE (Logo + Chamada + Redes)
============================================ */
.destaque-section {
  position: relative;
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple-mid) 100%);
  padding: 80px 6vw 100px;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.destaque-container {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.destaque-logo {
  text-align: center;
}
.destaque-logo img {
  width: 100%;
  max-width: 280px;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
}

.destaque-texto {
  text-align: center;
}
.destaque-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.destaque-cta {
  display: inline-block;
  padding: 16px 48px;
  background: var(--gold);
  border: none;
  border-radius: 60px;
  color: var(--purple-deep);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s, box-shadow 0.25s, transform 0.25s;
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
}
.destaque-cta:hover {
  background: var(--gold-light);
  box-shadow: 0 10px 44px rgba(201, 168, 76, 0.55);
  transform: translateY(-3px);
}

.destaque-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 10px;
}
.destaque-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.2px solid rgba(220, 191, 236, 0.4);
  color: var(--cream);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.destaque-social a:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.12);
  color: #dfcdfc;
  transform: translateY(-3px);
}
.destaque-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
@media (max-width: 700px) {
  .destaque-section {
    padding: 60px 5vw 80px;
    min-height: auto;
  }
  .destaque-logo img {
    max-width: 200px;
  }
  .destaque-title {
    font-size: 1.6rem;
  }
}

/* Grupo de telefone com seletor de país */
.phone-group {
  display: flex;
  gap: 8px;
  align-items: center;
}
.phone-group select {
  flex: 0 0 auto;
  width: auto;
  min-width: 80px;
  padding: 10px 6px;
  border: 1.5px solid #d6cee0;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: #fff;
  cursor: pointer;
}
.phone-group input {
  flex: 1;
}


/* ============================================
   RESPONSIVIDADE GERAL
============================================ */
@media (max-width: 900px) {
  .servicos-left {
    padding-right: 0;
  }
  .servicos-scene {
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: 460px;
  }
  .insta-purple-float {
    position: static;
    transform: none;
    width: 100%;
    border-radius: 0 0 14px 14px;
    box-shadow: none;
    padding: 24px 20px;
  }
  .insta-purple-title {
    padding-left: 0;
    font-size: 1.8rem;
    margin-left: 0;
  }
  .insta-service-list li {
    padding-left: 0;
    font-size: 0.95rem;
    margin-left: 0;
  }
  .insta-card {
    width: 100%;
    max-width: 380px;
    border-radius: 14px 14px 0 0;
  }
  .insta-image-area {
    height: 220px;
  }
  .insta-phone-img {
    height: 54%;
    top: -2%;
    left: -32px;
  }

  .market-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .market-img-wrap {
    width: clamp(160px, 55%, 300px);
  }
  .market-img-wrap {
    display: none;
  }
  .market-logo {
    display: none;
  }
  .hero-social a {
    color: var(--cream);
    border: var(--cream);
  }

  .hero-waves {
    height: 40%;
  }
}

@media (max-width: 700px) {
  nav {
    top: 12px;
    padding: 10px 16px;
  }
  .nav-links {
    display: none;
    font-size: 1px;
  }
  .hamburger {
    display: flex;
  }
  .hero-line-break {
    display: none;
  }
  .market-card {
    padding: 28px 20px;
    border-radius: 20px;
  }
  .market-title {
    font-size: 2rem;
  }
  footer {
    justify-content: center;
    text-align: center;
  }
  .modal-content {
    padding: 28px 20px;
  }
  .modal-title {
    font-size: 1.6rem;
  }
}