@media (max-width: 768px) {
  .skills-section {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }
  .plans-grid {
    justify-items: center;
  }
  .plan-card {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 400px) {
  .container { padding: 0 0.5rem; }
  .section-title { font-size: 1.3rem; }
  .brand-name { font-size: 1.2rem; --brand-spacing: 0.12rem; }
  .brand-subtitle { font-size: 0.7rem; letter-spacing: 0.18rem; margin-bottom: 1.2rem; }
  .plan-card, .process-card { padding: 18px 8px; }
  .plan-card h3, .process-card h3 { font-size: 1rem; }
  .plan-price .amount { font-size: 2.2rem; }
  .plan-price .currency, .plan-price .cents { font-size: 1rem; }
  .plan-badge { font-size: 0.7rem; padding: 5px 12px; }
  .plan-features li { font-size: 0.85rem; padding: 7px 0; }
  .plan-button { padding: 10px; font-size: 0.95rem; }
  .whatsapp-float, .instagram-float { width: 40px; height: 40px; right: 7px; }
  .instagram-float { bottom: 50px; }
  .whatsapp-float { bottom: 7px; }
}

@media (max-width: 350px) {
  .container { padding: 0 0.2rem; }
  .section-title { font-size: 1.05rem; }
  .brand-name { font-size: 0.95rem; --brand-spacing: 0.08rem; }
  .brand-subtitle { font-size: 0.55rem; letter-spacing: 0.12rem; margin-bottom: 0.7rem; }
  .plan-card, .process-card { padding: 10px 2px; }
  .plan-card h3, .process-card h3 { font-size: 0.8rem; }
  .plan-price .amount { font-size: 1.3rem; }
  .plan-price .currency, .plan-price .cents { font-size: 0.7rem; }
  .plan-badge { font-size: 0.5rem; padding: 3px 7px; }
  .plan-features li { font-size: 0.7rem; padding: 4px 0; }
  .plan-button { padding: 7px; font-size: 0.8rem; }
  .whatsapp-float, .instagram-float { width: 30px; height: 30px; right: 2px; }
  .instagram-float { bottom: 35px; }
  .whatsapp-float { bottom: 2px; }
}
/* Logo do preloader girando para frente */
.loader-emblem img {
  animation: preloader-logo-spin 1.6s linear infinite;
}

@keyframes preloader-logo-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* Preloader Spinner (círculo girando) */
.preloader-spinner {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 6px solid rgba(0,246,255,0.18);
  border-top: 6px solid var(--primary);
  border-bottom: 6px solid #0a0a0a;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
  animation: preloader-spin 1.2s linear infinite;
  box-shadow: 0 0 32px 0 rgba(0,246,255,0.18);
}

@keyframes preloader-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.hero-content-thays {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
}

.brand-name {
  font-size: 3rem;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-shadow: 0 4px 24px rgba(0,246,255,0.18), 0 1px 2px #000;
  margin-bottom: 0.3em;
}

.brand-subtitle {
  font-size: 1.2rem;
  color: #b8c7cc;
  letter-spacing: 0.25em;
  text-shadow: 0 2px 8px #000;
  font-weight: 400;
}
/*
=========================================================
ETAPA 2 · ESTILIZAÇÃO GLOBAL DO SITE
Arquivo: /css/style.css
Finalidade: Responsável por toda a estilização visual do site, incluindo layout, cores, responsividade e efeitos visuais.

Organização:
- Tokens de cor, tipografia e efeitos globais
- Estilos do preloader
- Cabeçalho e navegação
- Seções principais (hero, sobre, serviços, clientes)
- Rodapé e botões flutuantes
- Responsividade

Cada bloco está comentado para facilitar manutenção e entendimento.
=========================================================
*/
/* ===== CONFIGURAÇÕES GERAIS ===== */
:root {
  --primary: #00f6ff;
  --primary-dark: #00b6c6;
  --primary-light: #7ffcff;
  --dark: #0a0a0a;
  --darker: #050505;
  --light: #ffffff;
  --gray: #a0a0a0;
  --gray-dark: #333333;
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: #ffffff;
}

body {
  font-family: 'Montserrat', 'Raleway', sans-serif;
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark) 90%, #ffffff 90%, #ffffff 100%);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 10px;
  background: var(--dark);
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), rgba(255, 255, 255, 0.5));
  border-radius: 5px;
  border: 2px solid var(--dark);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

/* ===== ETAPA 1 · PRÉ-LOAD ===== */
#preloader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(0, 246, 255, 0.08), transparent 55%),
    radial-gradient(circle at 80% 30%, rgba(0, 246, 255, 0.06), transparent 50%),
    var(--dark);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: opacity 0.5s ease;
}

.preloader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  perspective: 900px;
}

.loader-emblem {
  width: 190px;
  height: 190px;
  position: relative;
  filter: drop-shadow(0 0 25px rgba(0, 246, 255, 0.35));
}

.loader-emblem::after {
  content: '';
  position: absolute;
  inset: 36px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 246, 255, 0.35), transparent 60%);
  filter: blur(18px);
  animation: breathe 2.6s ease-in-out infinite;
}

.orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: orbitPulse 3.2s ease-in-out infinite;
}

.orbit::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg 215deg, rgba(255, 255, 255, 0.8) 215deg 250deg, rgba(0, 246, 255, 0.95) 250deg 285deg, transparent 285deg 360deg);
  -webkit-mask: radial-gradient(circle, transparent calc(50% - 6px), rgba(0, 0, 0, 0.9) calc(50% - 3px), transparent calc(50% - 1px));
  mask: radial-gradient(circle, transparent calc(50% - 6px), rgba(0, 0, 0, 0.9) calc(50% - 3px), transparent calc(50% - 1px));
  animation: sweep 2.7s linear infinite;
  animation-delay: var(--delay, 0s);
  opacity: 0.9;
}

.orbit-outer { --delay: 0s; }
.orbit-middle { inset: 16px; --delay: -0.8s; opacity: 0.85; }
.orbit-inner { inset: 34px; --delay: -1.4s; opacity: 0.7; }

.comet {
  position: absolute;
  inset: 14px;
  animation: cometOrbit 2.8s linear infinite;
}

.comet::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffffff;
  top: -6px;
  left: calc(50% - 6px);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 0 0 35px rgba(0, 246, 255, 0.9);
}

.comet::before {
  content: '';
  position: absolute;
  width: 70px;
  height: 2px;
  top: -1px;
  left: calc(50% - 2px);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(0, 246, 255, 0.85));
  box-shadow: 0 0 20px rgba(0, 246, 255, 0.35);
}

.comet-primary { animation-duration: 2.4s; }
.comet-secondary { inset: 32px; animation-duration: 3.8s; animation-delay: -1.1s; }

.pulse-core {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 25px rgba(0, 246, 255, 0.9), 0 0 55px rgba(0, 246, 255, 0.55);
  animation: corePulse 1.8s ease-in-out infinite;
}

.emblem-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  color: var(--primary);
  z-index: 10;
  filter: drop-shadow(0 0 10px rgba(0, 246, 255, 0.8));
  animation: iconPulse 2s ease-in-out infinite;
}

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

.loader-text h2 {
  font-size: 2.1rem;
  letter-spacing: 0.28em;
  text-transform: none;
  margin: 0;
  background: linear-gradient(120deg, #ffffff, rgba(59, 209, 202, 0.2), var(--primary), #ffffff);
  background-size: 220% auto;
  -webkit-background-clip: text;
  color: transparent;
  animation: shimmer 4s ease-in-out infinite;
}

.loader-text p {
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.4em;
  text-transform: none;
  font-size: 0.85rem;
}

/* ===== ETAPA 2 · CABEÇALHO ===== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(7, 7, 7, 0);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid rgba(59, 209, 209, 0.15);
  transition: all 0.3s ease;
  z-index: 1000;
}

.header.scrolled {
  background: rgba(7, 7, 7, 0.7);
  border-bottom-color: rgba(0, 246, 255, 0.3);
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.6);
}

.navigation {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  border-radius: 8px;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: drop-shadow(0 2px 8px rgba(59, 204, 209, 0.2));
  height: 60px;
  width: auto;
  display: block;
  margin-left: 12px;
  margin-top: 4px;
}

.logo img:hover {
  transform: scale(1.08) translateY(-2px);
  filter: drop-shadow(0 8px 20px rgba(0, 246, 255, 0.5)) brightness(1.1);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
}

.menu-toggle .bar {
  width: 28px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: 0.3s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(0, 246, 255, 0.8);
}

.menu-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active .bar:nth-child(2) { opacity: 0; }
.menu-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-menu {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin: 0;
}

.nav-menu li { position: relative; }

.nav-menu li a {
  color: #f5f5f5;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.65rem 1.1rem;
  border-radius: 10px;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu li a::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(59, 199, 209, 0.35), rgba(46, 255, 245, 0.35));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 70%;
  height: 2px;
  background: linear-gradient(90deg, #3bb3d18f, #2effff91);
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.nav-menu li a:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.nav-menu li a:hover::before { opacity: 1; }
.nav-menu li a:hover::after { transform: translateX(-50%) scaleX(1); }

.nav-menu li a.active {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(59, 199, 209, 0.2), rgba(46, 255, 255, 0.2));
  border: 1px solid rgba(59, 204, 209, 0.3);
  box-shadow: 0 4px 16px rgba(59, 204, 209, 0.3);
}

/* ===== ETAPA 3 · HERO ===== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../img/perfil.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 180px 2rem 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  text-transform: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.35), rgba(0, 10, 10, 0.38), rgba(0, 0, 0, 0.28));
  z-index: 1;
}

.hero-content-thays {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
    text-transform: none;

}

.hero-content {
  max-width: 900px;
  animation: fadeInUp 1s ease-out;
}

.brand-name {
  --brand-spacing: clamp(0.32rem, 1vw, 0.62rem);
  --brand-type-final: calc(12ch + var(--brand-spacing) * 11);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 700;
  text-transform: none;
  letter-spacing: var(--brand-spacing);
  margin-bottom: 1.2rem;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  max-width: var(--brand-type-final);
  color: transparent;
  background: linear-gradient(120deg, #ffffff 0%, #5ddfff 30%, #5ce7ff 60%, #00eeff 100%);
  -webkit-background-clip: text;
  animation: typing 2.6s steps(12, end) 0.4s forwards;
    text-transform: none;

}

.brand-subtitle {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  text-transform: none;
  letter-spacing: clamp(0.28rem, 0.7vw, 0.5rem);
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(12px);
  animation: subtitleReveal 0.8s ease-out 3s forwards;
    text-transform: none;

}

@media (prefers-reduced-motion: reduce) {
  .brand-name {
    animation: none;
    width: auto;
    max-width: none;
  }

  .brand-subtitle {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  color: var(--light);
  letter-spacing: 1px;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary);
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ===== ETAPA 4 · SOBRE ===== */
.about-section {
  padding: 100px 2rem;
  background: #ffffff;
  color: #222222;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.05);
}

.about-section .section-title { color: #181818; }

.about-content p {
  max-width: 700px;
  margin: 0 auto 1.7rem;
  font-size: 1.13rem;
  line-height: 1.85;
  text-align: center;
  color: #222222;
}

/* ===== ETAPA 5 · PROCESSO ===== */
.process-section {
  padding: 100px 2rem;
  background: var(--dark);
}

.process-intro {
  text-align: center;
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

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

.process-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 247, 255, 0.1);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 247, 255, 0.05), transparent);
  transition: left 0.6s ease;
}

.process-card:hover::before { left: 100%; }

.process-card:hover {
  border-color: var(--primary);
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 247, 255, 0.2);
}

.process-number {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), rgba(0, 247, 255, 0.7));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
}

.process-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--light);
}

.process-card p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
}

/* ===== ETAPA 6 · CONSULTORIA ===== */
.skills-section {
  padding: 100px 2rem;
  background: #ffffff;
  color: #181818;
  box-shadow: 0 -40px 80px rgba(0, 0, 0, 0.15);
}

.skills-section .section-title { color: #181818; }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.plan-card {
  background: radial-gradient(circle at 20% -20%, rgba(38, 235, 249, 0.3), #050308 55%);
  border: 2px solid rgba(38, 224, 249, 0.35);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 65px rgba(38, 235, 249, 0.25);
  transition: var(--transition);
}

.plan-card.featured {
  border-color: var(--primary-light);
  background: radial-gradient(circle at top, rgba(79, 255, 255, 0.55), rgba(5, 3, 8, 0.95) 65%);
  transform: scale(1.02);
  box-shadow: 0 30px 110px rgba(38, 224, 249, 0.45);
}

.plan-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 35px 95px rgba(38, 224, 249, 0.4);
}

.plan-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: var(--dark);
  padding: 8px 25px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
}

.plan-card h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: var(--light);
}

.plan-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  margin-bottom: 30px;
}

.plan-price .currency,
.plan-price .cents {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 600;
  margin-top: 10px;
}

.plan-price .amount {
  font-size: 4rem;
  color: var(--primary);
  font-weight: 800;
  line-height: 1;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: left;
}

.plan-features li {
  padding: 12px 0;
  color: var(--gray);
  font-size: 1rem;
  border-bottom: 1px solid rgba(0, 247, 255, 0.1);
}

.plan-features li:last-child { border-bottom: none; }

.plan-button {
  display: block;
  width: 100%;
  padding: 18px;
  background: var(--primary);
  color: var(--dark);
  font-weight: 700;
  border: none;
  border-radius: 50px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
}

.plan-button:hover {
  background: var(--light);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.5);
}

/* ===== ETAPA 7 · RESULTADOS ===== */
.portfolio-section {
  padding: 100px 2rem;
  background: var(--darker);
}

.results-intro {
  text-align: center;
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 800px;
  margin: 0 auto 3rem;
}

.results-carousel {
  position: relative;
  max-width: 600px;
  margin: 4rem auto;
  padding: 0 60px;
}

.carousel-container {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  background: rgba(0, 0, 0, 0.3);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  aspect-ratio: 9 / 16;
  display: none;
}

.carousel-slide.active { display: block; }

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.8rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: var(--transition);
  opacity: 0.5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: rgba(59, 204, 209, 0.7);
  color: #ffffff;
  opacity: 1;
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 4px 16px rgba(59, 192, 209, 0.4);
}

.carousel-prev { left: 0; }
.carousel-next { right: 0; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.dot.active {
  background: linear-gradient(135deg, #3bbbd1, #2ee0ff);
  width: 32px;
  border-radius: 6px;
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 12px rgba(59, 199, 209, 0.6);
}

/* ===== ETAPA 8 · RODAPÉ ===== */
.footer {
  background: #000000;
  padding: 40px 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.footer-logo {
  width: 80px;
  margin-bottom: 20px;
}

.footer p {
  color: #ffffff;
  font-size: 0.95rem;
}

/* ===== ETAPA 9 · CONTATOS FLUTUANTES ===== */
.whatsapp-float,
.instagram-float {
  position: fixed;
  right: 30px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.whatsapp-float {
  bottom: 30px;
  background: linear-gradient(135deg, #00fc0d, #35c54d);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float ion-icon {
  font-size: 2.5rem;
  color: var(--light);
}

.whatsapp-float:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.6);
}

.instagram-float {
  bottom: 105px;
  background: radial-gradient(circle at 30% 30%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 100%);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.instagram-float ion-icon {
  font-size: 2.2rem;
  color: #ffffff;
}

.instagram-float:hover {
  transform: scale(1.08) rotate(-6deg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

@media (max-width: 900px) {
  .navigation { padding: 0.8rem 1.5rem; }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 280px;
    background: linear-gradient(180deg, rgba(7, 7, 7, 0.9), rgba(16, 24, 32, 0.9));
    flex-direction: column;
    align-items: stretch;
    padding: 90px 20px 30px;
    gap: 0.5rem;
    box-shadow: -4px 0 32px rgba(0, 0, 0, 0.8);
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 1001;
  }

  .nav-menu.open { transform: translateX(0); }

  .nav-menu li {
    width: 100%;
    opacity: 0;
    transform: translateX(30px);
    animation: slideInMenu 0.4s ease forwards;
  }

  .nav-menu.open li:nth-child(1) { animation-delay: 0.05s; }
  .nav-menu.open li:nth-child(2) { animation-delay: 0.1s; }
  .nav-menu.open li:nth-child(3) { animation-delay: 0.15s; }
  .nav-menu.open li:nth-child(4) { animation-delay: 0.2s; }
  .nav-menu.open li:nth-child(5) { animation-delay: 0.25s; }

  .menu-toggle {
    display: flex;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #3bc7d1;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  }
}

@media (max-width: 768px) {
  .hero-section { background-attachment: scroll; }
  .brand-name { font-size: clamp(1.9rem, 9vw, 2.5rem); --brand-spacing: 0.24rem; }
  .brand-subtitle { font-size: 0.8rem; letter-spacing: 0.28rem; margin-bottom: 2.5rem; }
  .container { padding: 0 1.5rem; }
  .process-grid { grid-template-columns: 1fr; gap: 2rem; }
  .plans-grid { grid-template-columns: 1fr; }
  .results-carousel { padding: 0 50px; }
  .carousel-btn { width: 40px; height: 40px; font-size: 1.5rem; }
  .whatsapp-float,
  .instagram-float { width: 60px; height: 60px; right: 20px; }
  .instagram-float { bottom: 90px; }
  .whatsapp-float { bottom: 20px; }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.9rem; }
  .process-number { width: 60px; height: 60px; }
  .results-carousel { padding: 0 40px; }
  .whatsapp-float,
  .instagram-float { width: 55px; height: 55px; right: 15px; }
  .instagram-float { bottom: 80px; }
  .whatsapp-float { bottom: 15px; }
}

@keyframes slideInMenu {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes typing {
  0% { width: 0; }
  100% { width: var(--brand-type-final); }
}

@keyframes subtitleReveal {
  0% { opacity: 0; transform: translateY(14px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4); }
  50% {
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.6),
                0 0 0 10px rgba(37, 211, 102, 0.2),
                0 0 0 20px rgba(37, 211, 102, 0.1);
  }
  100% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4); }
}

@keyframes iconPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.9; }
}

@keyframes sweep { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes orbitPulse { 0% { transform: scale(0.98); opacity: 0.6; } 50% { transform: scale(1); opacity: 1; } 100% { transform: scale(0.98); opacity: 0.6; } }
@keyframes breathe { 0% { opacity: 0.25; transform: scale(0.85); } 60% { opacity: 0.8; transform: scale(1); } 100% { opacity: 0.25; transform: scale(0.9); } }
@keyframes corePulse { 0% { transform: scale(0.9); opacity: 0.7; } 50% { transform: scale(1.15); opacity: 1; } 100% { transform: scale(0.9); opacity: 0.7; } }
@keyframes cometOrbit { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes shimmer { 0% { background-position: 0% 50%; } 100% { background-position: 100% 50%; } }
