/* ================================================
   AQUARIANA — JULIANA REDIVO
   Landing Page CSS
   ================================================ */

/* ================================================
   DESIGN TOKENS
   ================================================ */
:root {
  /* === CORES === */
  /* Backgrounds - gradiente de profundidade (topo→fundo do site) */
  --bg-surface:     #0E1A2F;   /* topo do site - oceano noturno */
  --bg-mid:         #0C0B1D;   /* meio - profundidade */
  --bg-deep:        #141332;   /* profundo */
  --bg-abyss:       #1A1945;   /* mais profundo */
  --bg-cosmos:      #2D1B4E;   /* fundo do site - cósmico */
  --bg-card:        rgba(26, 25, 69, 0.6);  /* cards com transparência */
  --bg-card-hover:  rgba(26, 25, 69, 0.85);

  /* Acentos */
  --accent-gold:    #C9A96E;   /* CTAs, destaques, preços */
  --accent-rose:    #D4A0A0;   /* hover, acentos femininos */
  --accent-cosmic:  #7B6FBF;   /* ícones, decorativos */
  --accent-glow:    rgba(201, 169, 110, 0.15); /* glow dourado */

  /* Textos */
  --text-primary:   #F5F0E8;   /* títulos e corpo principal */
  --text-secondary: #A8A3B8;   /* subtítulos, labels */
  --text-muted:     #6B6580;   /* captions, metadata */

  /* Bordas e vidro */
  --border-glass:   rgba(168, 163, 184, 0.12);
  --border-glow:    rgba(201, 169, 110, 0.25);

  /* Gradientes */
  --gradient-hero:  linear-gradient(180deg, #0E1A2F 0%, #141332 50%, #1A1945 100%);
  --gradient-deep:  linear-gradient(180deg, #1A1945 0%, #2D1B4E 100%);
  --gradient-cta:   linear-gradient(135deg, #C9A96E 0%, #D4A0A0 100%);
  --gradient-card:  linear-gradient(180deg, rgba(26,25,69,0.4) 0%, rgba(26,25,69,0.8) 100%);

  /* === TIPOGRAFIA === */
  --font-display:   'Cormorant Garamond', Georgia, serif;
  --font-body:      'Outfit', system-ui, sans-serif;

  /* === ESPAÇAMENTO === */
  --section-padding: clamp(80px, 12vh, 160px) clamp(20px, 5vw, 120px);
  --container-max:  1200px;

  /* === ANIMAÇÃO === */
  --ease-out:       cubic-bezier(0.23, 1, 0.32, 1);
  --ease-bounce:    cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast:  0.3s;
  --duration-med:   0.6s;
  --duration-slow:  1s;

  /* === BORDAS === */
  --radius-sm:      8px;
  --radius-md:      16px;
  --radius-lg:      24px;
  --radius-xl:      32px;
}

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

/* Esconder cursor nativo APENAS em desktop */
@media (min-width: 1024px) and (hover: hover) and (pointer: fine) {
  * {
    cursor: none !important;
  }
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-surface);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
}

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

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

/* ================================================
   TIPOGRAFIA
   ================================================ */
h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.1;
  color: var(--text-primary);
  font-style: italic;
}

h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.15;
  color: var(--text-primary);
}

h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  line-height: 1.3;
  color: var(--text-secondary);
}

p, .body-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-gold);
  opacity: 0.7;
  display: block;
  margin-bottom: 0.5rem;
}

.price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--accent-gold);
}

/* ================================================
   UTILITIES
   ================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  width: 100%;
  box-sizing: border-box;
}

/* Prevenir overflow horizontal em todas as seções */
section {
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
}

/* Garantir que imagens não vazem */
img {
  max-width: 100%;
  height: auto;
}

/* Mobile: prevenir qualquer overflow */
@media (max-width: 640px) {
  * {
    max-width: 100vw;
  }

  .blurred-glow {
    opacity: 0.5; /* Reduzir glows em mobile para melhor performance */
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
}

.reveal-group {
  position: relative;
}

.reveal-item {
  opacity: 0;
  transform: translateY(40px);
}

/* ================================================
   CANVAS DE PARTÍCULAS (FIXED BACKGROUND)
   ================================================ */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
}

/* ================================================
   CURSOR CUSTOMIZADO
   ================================================ */
#custom-cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, #FFD700 0%, #FF8C42 60%, #FF6B35 100%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999; /* Aumentado para ficar acima do modal (10000) */
  box-shadow: 0 0 15px #FF6B35, 0 0 25px #FF8C42;
  opacity: 0;
  transition: opacity 0.3s ease;
}

@media (min-width: 1024px) and (hover: hover) and (pointer: fine) {
  #custom-cursor {
    opacity: 1;
  }
}

/* Partículas de fogo do cursor */
.meteor-particle {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998; /* Aumentado para ficar acima do modal */
  opacity: 0;
  transition: opacity 0.3s ease;
}

@media (min-width: 1024px) and (hover: hover) and (pointer: fine) {
  .meteor-particle {
    opacity: 1;
  }
}
input,
textarea {
  cursor: text !important;
}

/* ================================================
   ÁGUA-VIVA CONTAINER
   ================================================ */
#jellyfish-container {
  position: fixed;
  width: 200px;
  height: 200px;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
}

@media (max-width: 640px) {
  #jellyfish-container {
    width: 120px;
    height: 120px;
  }
}

/* ================================================
   BLURRED GLOWS (DECORATIVOS)
   ================================================ */
.blurred-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(100px);
}

.glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(123, 111, 191, 0.15) 0%, transparent 70%);
  top: -200px;
  right: -200px;
}

.glow-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 160, 160, 0.1) 0%, transparent 70%);
  bottom: -150px;
  left: -150px;
}

.glow-3 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.glow-4 {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(123, 111, 191, 0.08) 0%, transparent 70%);
  top: -300px;
  left: -300px;
}

.glow-5, .glow-6, .glow-7, .glow-8, .glow-9, .glow-10 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
  top: 20%;
  right: 10%;
}

/* ================================================
   MENU DE NAVEGAÇÃO
   ================================================ */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(14, 26, 47, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  transition: all 0.3s var(--ease-out);
  opacity: 0;
  transform: translateY(-100%);
}

.main-nav.visible {
  opacity: 1;
  transform: translateY(0);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1rem clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 0 15px rgba(201, 169, 110, 0.3));
  transition: transform var(--duration-fast);
}

.nav-logo:hover img {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--duration-fast);
  position: relative;
}

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

.nav-link:hover {
  color: var(--accent-gold);
}

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

.nav-cta {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-rose));
  color: var(--bg-deep);
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all var(--duration-fast);
  box-shadow: 0 4px 15px rgba(201, 169, 110, 0.2);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(201, 169, 110, 0.4);
}

/* Botão de toggle mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 10000;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--accent-gold);
  transition: all 0.3s;
  border-radius: 2px;
}

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

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

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

/* Mobile menu */
@media (max-width: 1024px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(12, 11, 29, 0.98);
    backdrop-filter: blur(30px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 80px 2rem 2rem;
    border-left: 1px solid rgba(201, 169, 110, 0.2);
    transition: right 0.4s var(--ease-out);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
  }

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

  .nav-link,
  .nav-cta {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  }

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

  .nav-cta {
    margin-top: 1rem;
    text-align: center;
    border: none;
  }
}

/* ================================================
   BOTÕES CTA
   ================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--gradient-cta);
  color: #0C0B1D;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--duration-fast) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.3);
}

.btn-primary .arrow {
  transition: transform var(--duration-fast) var(--ease-out);
}

.btn-primary:hover .arrow {
  transform: translateX(4px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--accent-gold);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.95rem;
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--duration-fast) var(--ease-out);
}

.btn-secondary:hover {
  background: rgba(201, 169, 110, 0.1);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

/* ================================================
   GLASSMORPHISM CARDS
   ================================================ */
.card-glass {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--duration-med) var(--ease-out);
}

.card-glass:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* ================================================
   WAVE DIVIDER
   ================================================ */
.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  overflow: hidden;
}

.wave-divider svg {
  width: 100%;
  height: 100%;
}

.wave-top {
  bottom: auto;
  top: -1px;
  transform: rotate(180deg);
}

/* ================================================
   SEÇÃO: SPLASH
   ================================================ */
.section-splash {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  z-index: 10;
}

.splash-content {
  text-align: center;
  z-index: 2;
}

.splash-logo {
  max-width: 200px;
  margin: 0 auto 2rem;
  filter: drop-shadow(0 0 20px rgba(201, 169, 110, 0.3));
}

.splash-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

.scroll-indicator {
  color: var(--accent-gold);
  animation: bounce 2s ease-in-out infinite;
}

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

/* ================================================
   SEÇÃO: HERO
   ================================================ */
.section-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-mid);
  padding: var(--section-padding);
  z-index: 2;
}

.section-hero .container {
  text-align: center;
}

.hero-divider {
  width: 40px;
  height: 1px;
  background: var(--accent-gold);
  margin: 2rem auto;
}

/* ================================================
   SEÇÃO: INTRODUÇÃO
   ================================================ */
.section-intro {
  position: relative;
  padding: var(--section-padding);
  background: var(--bg-deep);
  z-index: 2;
}

.intro-text {
  max-width: 700px;
  margin: 0 auto 4rem;
  text-align: center;
}

.services-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 3rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 2rem;
  cursor: pointer;
}

.service-icon {
  margin-bottom: 1.5rem;
}

.service-card h3 {
  color: var(--text-primary);
}

/* ================================================
   SEÇÃO: SERVIÇOS (MAPA NATAL, JORNADA, MANDALA)
   ================================================ */
.section-service {
  position: relative;
  padding: var(--section-padding);
  background: var(--bg-abyss);
  z-index: 2;
}

.service-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 4rem;
  align-items: center;
}

.service-content h2 {
  margin: 1rem 0 2rem;
}

.service-content p {
  margin-bottom: 1.5rem;
}

.service-content .btn-primary {
  margin-top: 2rem;
}

.service-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.service-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-placeholder {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border-radius: 50%;
  border: 1px solid var(--border-glass);
  padding: 2rem;
}

/* Mobile: visual acima do texto */
@media (max-width: 640px) {
  .service-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-visual {
    order: -1;
  }
}

/* ================================================
   SEÇÃO: TRANSIÇÃO
   ================================================ */
.section-transition {
  position: relative;
  padding: clamp(60px, 15vh, 120px) clamp(20px, 5vw, 120px);
  background: var(--bg-deep);
  z-index: 2;
}

.transition-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.transition-content p {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  line-height: 1.5;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.transition-content .highlight {
  color: var(--accent-gold);
  font-weight: 600;
  margin-top: 2rem;
}

/* ================================================
   SEÇÃO: JORNADA RECONECTA (STEPS)
   ================================================ */
.section-jornada {
  background: var(--bg-abyss);
}

.service-header {
  text-align: center;
  margin-bottom: 4rem;
}

.service-header h2 {
  margin: 1rem 0;
}

.steps-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 50px;
  top: 100px;
  width: 1px;
  height: calc(100% + 3rem);
  background: linear-gradient(180deg, var(--accent-cosmic) 0%, transparent 100%);
}

.step-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--accent-cosmic);
  opacity: 0.3;
  line-height: 1;
}

.step-content p {
  margin: 0;
}

.service-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Mobile: step ajustado */
@media (max-width: 640px) {
  .step {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }

  .step:not(:last-child)::after {
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    bottom: -3rem;
    height: 3rem;
  }

  .step-number {
    font-size: 3rem;
  }
}

/* ================================================
   SEÇÃO: MANDALA ASTRAL
   ================================================ */
.section-mandala {
  background: var(--gradient-deep);
}

.service-header-centered {
  text-align: center;
  margin-bottom: 3rem;
}

.service-header-centered h2 {
  margin: 1rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 3rem auto;
}

.feature {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
}

.feature-icon {
  font-size: 2rem;
  color: var(--accent-cosmic);
  margin-bottom: 1rem;
}

.feature p {
  margin: 0;
  color: var(--text-primary);
  font-size: 0.95rem;
}

/* ================================================
   SEÇÃO: DETALHAMENTO MANDALA
   ================================================ */
.section-mandala-detail {
  position: relative;
  padding: var(--section-padding);
  background: var(--bg-abyss);
  z-index: 2;
}

.section-mandala-detail h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.detail-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.detail-content .btn-primary {
  margin-top: 2rem;
}

/* ================================================
   SEÇÃO: SOBRE JULIANA
   ================================================ */
.section-about {
  position: relative;
  padding: var(--section-padding);
  background: var(--bg-deep);
  z-index: 2;
}

.about-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 4rem;
  align-items: center;
}

.photo-container {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
  border: 2px solid var(--border-glow);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.photo-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-bio h2 {
  margin: 1rem 0 2rem;
}

.about-bio a {
  color: var(--accent-gold);
  text-decoration: underline;
  transition: color var(--duration-fast);
}

.about-bio a:hover {
  color: var(--accent-rose);
}

/* Mobile: foto acima */
@media (max-width: 640px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-photo {
    order: -1;
  }
}

/* ================================================
   SEÇÃO: DEPOIMENTOS (CAROUSEL)
   ================================================ */
.section-testimonials {
  position: relative;
  padding: var(--section-padding);
  background: var(--bg-abyss);
  z-index: 2;
  overflow: hidden; /* Previne vazamento horizontal */
}

.section-testimonials h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 5vw, 3rem);
}

.testimonials-subtitle {
  text-align: center;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.carousel-container {
  max-width: 100%;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s var(--ease-out);
  padding: 0 1rem;
}

.carousel-item {
  flex: 0 0 auto;
  width: clamp(320px, 35vw, 450px);
  aspect-ratio: 3 / 4; /* Força proporção consistente */
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  background: var(--bg-card);
  position: relative;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cobre toda a área mantendo proporção */
  object-position: center;
  display: block;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 2.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(168, 163, 184, 0.3);
  cursor: pointer;
  transition: all var(--duration-fast);
  border: 2px solid transparent;
}

.carousel-dot:hover {
  background: rgba(201, 169, 110, 0.5);
}

.carousel-dot.active {
  background: var(--accent-gold);
  transform: scale(1.4);
  box-shadow: 0 0 12px rgba(201, 169, 110, 0.6);
}

/* Tablet */
@media (max-width: 1024px) {
  .carousel-item {
    width: clamp(300px, 45vw, 400px);
  }

  .carousel-track {
    gap: 1.5rem;
  }
}

/* Mobile: 1 item por vez, ocupa quase toda tela */
@media (max-width: 640px) {
  .carousel-item {
    width: 85vw;
    max-width: 400px;
    aspect-ratio: 3 / 4;
  }

  .carousel-track {
    gap: 1rem;
    padding: 0 0.5rem;
  }

  .section-testimonials h2 {
    margin-bottom: 1rem;
  }

  .testimonials-subtitle {
    margin-bottom: 2rem;
    padding: 0 1rem;
  }
}

/* ================================================
   SEÇÃO: PRICING
   ================================================ */
.section-pricing {
  position: relative;
  padding: var(--section-padding);
  background: var(--gradient-deep);
  z-index: 2;
}

.pricing-intro {
  text-align: center;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-pricing .section-label {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  text-align: center;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: rgba(26, 25, 69, 0.85) !important; /* Fundo MAIS VISÍVEL */
  backdrop-filter: blur(25px);
  border: 2px solid rgba(201, 169, 110, 0.4) !important; /* Borda mais forte */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 169, 110, 0.6) !important;
  box-shadow: 0 16px 48px rgba(201, 169, 110, 0.15);
  cursor: none !important; /* Forçar esconder cursor */
}

.pricing-card h3 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.pricing-card.recommended {
  transform: scale(1.05);
  border-color: var(--accent-gold) !important;
  box-shadow: 0 0 50px rgba(201, 169, 110, 0.35);
  background: rgba(26, 25, 69, 0.95) !important; /* Card destacado AINDA MAIS VISÍVEL */
}

.badge-recommended {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-cta);
  color: #0C0B1D;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(201, 169, 110, 0.4);
}

.pricing-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0.5rem 0 1.5rem;
}

.price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 4vw, 3.2rem) !important;
  color: var(--accent-gold);
  text-shadow: 0 0 20px rgba(201, 169, 110, 0.3);
  margin: 1rem 0 0.25rem;
}

.price-info {
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.7);
  margin: 0;
}

.price-installment,
.price-total {
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.6);
  margin: 0.25rem 0 1.5rem;
}

.pricing-includes {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
}

.pricing-includes li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding: 0.6rem 0;
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.pricing-includes li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-size: 0.8rem;
}

.pricing-card .btn-primary {
  margin-top: auto;
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 18px 32px;
}

/* Mobile: stack vertical */
@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.recommended {
    transform: scale(1);
  }
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  position: relative;
  background: var(--bg-cosmos);
  padding: 4rem clamp(20px, 5vw, 120px) 2rem;
  text-align: center;
  z-index: 2;
}

.footer-content {
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer-logo {
  max-width: 150px;
  margin: 0 auto 2rem;
  opacity: 0.8;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.footer-social a {
  color: var(--text-secondary);
  transition: color var(--duration-fast);
}

.footer-social a:hover {
  color: var(--accent-gold);
}

.footer-copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* ================================================
   WHATSAPP FLOATING BUTTON
   ================================================ */
#whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 20px rgba(37, 211, 102, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out);
  text-decoration: none;
}

#whatsapp-float svg {
  width: 32px;
  height: 32px;
}

#whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow:
    0 6px 30px rgba(37, 211, 102, 0.5),
    0 4px 12px rgba(0, 0, 0, 0.3);
}

#whatsapp-float::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: whatsapp-pulse 2s ease-out infinite;
}

@keyframes whatsapp-pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ================================================
   RESPONSIVIDADE GLOBAL
   ================================================ */
@media (max-width: 1024px) {
  :root {
    --section-padding: clamp(60px, 10vh, 100px) clamp(20px, 5vw, 60px);
  }
}

@media (max-width: 640px) {
  :root {
    --section-padding: 60px 20px;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  #whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  #whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* ================================================
   MODAL: FORMULÁRIO DE AGENDAMENTO
   ================================================ */

/* Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 11, 29, 0.95);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease-out), visibility 0.3s;
  overflow-y: auto;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Container */
.modal-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s var(--ease-out);
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.modal-overlay.active .modal-container {
  transform: scale(1) translateY(0);
}

/* Close Button */
.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid var(--border-glass);
  border-radius: 50%;
  color: var(--accent-gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out);
  z-index: 10;
}

.modal-close:hover {
  background: rgba(201, 169, 110, 0.2);
  transform: rotate(90deg);
}

.modal-close svg {
  width: 20px;
  height: 20px;
}

/* Content */
.modal-content {
  padding: clamp(2rem, 5vw, 3rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* Header */
.modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.modal-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0.5rem 0 1rem;
  color: var(--text-primary);
}

.modal-subtitle {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* Form */
.modal-form {
  display: block;
}

.modal-form.hidden {
  display: none;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.3px;
}

.required {
  color: var(--accent-rose);
}

/* Inputs & Select */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  background: rgba(20, 19, 50, 0.6);
  border: 1.5px solid var(--border-glass);
  border-radius: var(--radius-md);
  transition: all var(--duration-fast) var(--ease-out);
  outline: none;
}

input::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

input:focus,
select:focus {
  border-color: var(--accent-gold);
  background: rgba(20, 19, 50, 0.8);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

/* Select */
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23C9A96E' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

select option {
  background: var(--bg-deep);
  color: var(--text-primary);
  padding: 10px;
}

/* Error State */
input.error,
select.error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15);
  animation: shake 0.4s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

/* Service Details Box */
.service-details {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: var(--radius-md);
  display: none;
}

.service-details.active {
  display: block;
  animation: slideDown 0.4s var(--ease-out);
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 200px;
  }
}

.service-details h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.service-details .price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 0.25rem;
}

.service-details .installment {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.service-details p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Info Box */
.info-box {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(123, 111, 191, 0.08);
  border: 1px solid rgba(123, 111, 191, 0.2);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

.info-box svg {
  flex-shrink: 0;
  color: var(--accent-cosmic);
  margin-top: 2px;
}

.info-box p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* Submit Button */
.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--gradient-cta);
  color: #0C0B1D;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 169, 110, 0.4);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit .arrow {
  transition: transform var(--duration-fast) var(--ease-out);
}

.btn-submit:hover .arrow {
  transform: translateX(4px);
}

/* Loading State */
.btn-submit.loading {
  pointer-events: none;
  opacity: 0.7;
}

.btn-submit.loading::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Success State */
.modal-success {
  text-align: center;
  padding: 2rem 0;
}

.modal-success.hidden {
  display: none;
}

.success-icon {
  margin-bottom: 1.5rem;
  animation: scaleIn 0.6s var(--ease-bounce);
}

@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-success h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.success-message {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.success-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-whatsapp,
.btn-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--duration-fast) var(--ease-out);
  cursor: pointer;
  border: none;
  width: 100%;
}

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

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

.btn-back {
  background: transparent;
  color: var(--accent-gold);
  border: 1px solid var(--border-glow);
}

.btn-back:hover {
  background: rgba(201, 169, 110, 0.1);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(231, 76, 60, 0.95);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  z-index: 20000;
  opacity: 0;
  transition: all 0.3s var(--ease-out);
  max-width: 90vw;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Mobile Optimization */
@media (max-width: 640px) {
  .modal-overlay {
    padding: 0;
    align-items: flex-start;
  }

  .modal-container {
    max-width: 100%;
    max-height: 100vh;
    border-radius: 0;
    min-height: 100vh;
  }

  .modal-content {
    padding: 1.5rem;
    padding-top: 4rem;
  }

  .modal-close {
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
  }

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

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="date"],
  input[type="time"],
  select {
    font-size: 16px; /* Prevent zoom on iOS */
  }
}
