/* =====================================================================
   DESIGN TOKENS
   Paleta de cores preservada — aplicação refinada.
===================================================================== */
:root {
  --roxo:        #7B1FA2;
  --roxo-escuro: #4A0072;
  --roxo-claro:  #CE93D8;
  --branco:      #FFFFFF;
  --cinza-claro: #F7F7F8;
  --cinza-texto: #444444;
  --whatsapp:    #25D366;
  --whatsapp-hover: #1da851;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --radius:    16px;
  --radius-sm: 10px;
  --radius-xs: 6px;

  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(123, 31, 162, 0.10);
  --shadow-xl: 0 16px 48px rgba(123, 31, 162, 0.12);

  --transition:      0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --border-subtle: 1px solid rgba(0, 0, 0, 0.06);
}

/* =====================================================================
   RESET & BASE
===================================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  color: var(--cinza-texto);
  background: var(--branco);
  line-height: 1.6;
  overflow-wrap: break-word;
  word-break: break-word;
}

img {
  max-width: 100%;
  height: auto;
}

/* =====================================================================
   NAVBAR
   Glassmorphism sutil — ganha presença no scroll.
===================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  background: rgba(123, 31, 162, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: padding var(--transition), background var(--transition),
              box-shadow var(--transition);
}

.navbar--scrolled {
  padding: 10px 48px;
  background: rgba(74, 0, 114, 0.96);
  box-shadow: 0 1px 24px rgba(74, 0, 114, 0.25);
}

.navbar-logo {
  height: 42px;
  border-radius: 6px;
  transition: transform var(--transition);
}

.navbar-logo:hover {
  transform: scale(1.04);
}

.navbar-menu {
  display: flex;
  gap: 32px;
}

.navbar-menu a {
  position: relative;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: color var(--transition);
}

.navbar-menu a:hover {
  color: var(--branco);
}

.navbar-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1.5px;
  background: var(--roxo-claro);
  border-radius: 1px;
  transition: width var(--transition);
}

.navbar-menu a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  color: var(--branco);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  padding: 4px;
}

/* =====================================================================
   HERO CARROSSEL
===================================================================== */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* --- Slide base --- */
.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* --- Slide 1: conteúdo hero --- */
.slide-hero {
  background: linear-gradient(160deg, var(--roxo-escuro) 0%, var(--roxo) 50%, #9C27B0 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.slide-hero::before,
.slide-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  background: var(--branco);
  pointer-events: none;
}

.slide-hero::before {
  width: 700px;
  height: 700px;
  top: -200px;
  left: -200px;
}

.slide-hero::after {
  width: 500px;
  height: 500px;
  bottom: -150px;
  right: -150px;
}

.hero-tag {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
  display: inline-block;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.slide-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7.5vw, 96px);
  color: var(--branco);
  line-height: 0.95;
  margin-bottom: 24px;
  letter-spacing: 2px;
}

.slide-hero h1 span {
  color: var(--roxo-claro);
}

.slide-hero p {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.75);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 44px;
  font-weight: 400;
}

.scroll-hint {
  margin-top: 56px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.scroll-hint .arrow {
  width: 20px;
  height: 20px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.3);
  transform: rotate(45deg);
  animation: bounce 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%      { transform: rotate(45deg) translateY(5px); }
}

/* --- Slides de imagem --- */
.slide-image {
  display: block;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.slide-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    rgba(74, 0, 114, 0.78) 0%,
    rgba(123, 31, 162, 0.45) 50%,
    rgba(0, 0, 0, 0.40) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-image-content {
  text-align: center;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.slide-image-content h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 84px);
  color: var(--branco);
  line-height: 1.02;
  letter-spacing: 2px;
  margin: 20px 0 40px;
}

/* --- Botões de navegação (setas) --- */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--branco);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition),
              border-color var(--transition);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.06);
}

.carousel-prev { left: 24px; }
.carousel-next { right: 24px; }

/* --- Dots (indicadores com pill ativo) --- */
.carousel-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 8px;
  align-items: center;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: width var(--transition), background var(--transition);
}

.carousel-dot.active {
  width: 28px;
  background: var(--branco);
}

.carousel-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.6);
}

/* =====================================================================
   CARROSSEL DE PRODUTOS (mesmo padrão visual do hero)
===================================================================== */
.produtos-carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* =====================================================================
   BOTÃO WHATSAPP (reutilizado no hero e CTA)
===================================================================== */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: var(--branco);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition),
              background var(--transition);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
  letter-spacing: 0.2px;
  position: relative;
  overflow: hidden;
}

/* Shimmer sweep on hover */
.btn-whatsapp::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -70%;
  width: 45%;
  height: 200%;
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(20deg);
  transition: left 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.btn-whatsapp:hover::after {
  left: 130%;
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:active {
  transform: translateY(0);
}

/* =====================================================================
   SEÇÕES GENÉRICAS
===================================================================== */
section {
  padding: 120px 24px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  color: var(--roxo-escuro);
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  line-height: 1;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--roxo);
  margin: 16px auto 0;
  border-radius: 2px;
}

.section-header p {
  color: #777;
  font-size: 16px;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =====================================================================
   PRODUTOS
===================================================================== */
.produtos {
  background: var(--branco);
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.produto-card {
  background: var(--branco);
  border-radius: var(--radius);
  padding: 24px 20px 28px;
  text-align: center;
  border: var(--border-subtle);
  transition: transform var(--transition), box-shadow var(--transition),
              border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.produto-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--roxo), var(--roxo-claro));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.produto-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(123, 31, 162, 0.08);
}

.produto-card:hover::before {
  transform: scaleX(1);
}

.produto-card .icone {
  font-size: 40px;
  margin-bottom: 14px;
}

.produto-card .produto-img {
  display: block;
  height: 72px;
  width: auto;
  max-width: 100%;
  margin: 0 auto 14px;
  object-fit: contain;
}

/* --- Card com imagem de destaque --- */
.produto-card--destaque {
  padding: 16px 20px 28px;
}

.produto-img-wrap {
  background: var(--cinza-claro);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: background var(--transition);
}

.produto-card--destaque:hover .produto-img-wrap {
  background: #F0EBF4;
}

.produto-card--destaque .produto-img {
  height: 160px;
  width: auto;
  max-width: 90%;
  margin: 0;
  object-fit: contain;
  transition: transform var(--transition-slow);
}

.produto-card--destaque:hover .produto-img {
  transform: scale(1.06);
}

.produto-card h3 {
  font-family: var(--font-display);
  font-size: 21px;
  color: var(--roxo-escuro);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.produto-card p {
  font-size: 13.5px;
  color: #888;
  line-height: 1.65;
}

/* =====================================================================
   DIFERENCIAIS
===================================================================== */
.diferenciais {
  background: var(--cinza-claro);
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.diferencial-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 40px 24px;
  background: var(--branco);
  border-radius: var(--radius);
  border: var(--border-subtle);
  transition: transform var(--transition), box-shadow var(--transition);
}

.diferencial-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.diferencial-item .icone-box {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--roxo), var(--roxo-escuro));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--branco);
  flex-shrink: 0;
  transition: transform var(--transition), box-shadow var(--transition);
}

.diferencial-item:hover .icone-box {
  transform: scale(1.12) rotate(-8deg);
  box-shadow: 0 8px 24px rgba(123, 31, 162, 0.4);
}

.diferencial-item .icone-box svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--branco);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.diferencial-item h3 {
  font-weight: 700;
  font-size: 16px;
  color: var(--roxo-escuro);
  letter-spacing: 0.2px;
  text-wrap: balance;
}

.diferencial-item p {
  font-size: 14px;
  color: #888;
  line-height: 1.7;
  text-wrap: balance;
}

/* =====================================================================
   COMO FUNCIONA
===================================================================== */
.como-funciona {
  background: linear-gradient(160deg, var(--roxo-escuro) 0%, var(--roxo) 100%);
}

.como-funciona .section-header h2 {
  color: var(--branco);
}

.como-funciona .section-header p {
  color: rgba(255, 255, 255, 0.65);
}

.como-funciona .section-header h2::after {
  background: var(--roxo-claro);
}

.passos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
  position: relative;
}

/* Linha conectora entre passos */
.passos::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(16.67% + 32px);
  right: calc(16.67% + 32px);
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.passo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  transition: transform var(--transition);
}

.passo:hover {
  transform: translateY(-6px);
}

.passo .numero {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--branco);
  position: relative;
  z-index: 1;
  transition: background var(--transition), border-color var(--transition);
}

.passo:hover .numero {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.04),
              0 0 32px rgba(255, 255, 255, 0.08);
}

.passo h3 {
  font-weight: 600;
  font-size: 16px;
  color: var(--branco);
  letter-spacing: 0.2px;
}

.passo p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 240px;
}

/* =====================================================================
   QUEM SOMOS
===================================================================== */
.quem-somos {
  background: var(--branco);
}

.quem-somos-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.quem-somos-texto h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 48px);
  color: var(--roxo-escuro);
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  line-height: 1;
}

.quem-somos-texto h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--roxo);
  margin: 16px 0 0;
  border-radius: 2px;
}

.quem-somos-texto p {
  font-size: 15px;
  color: #666;
  line-height: 1.85;
  margin-top: 20px;
}

.quem-somos-texto .checklist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 15px;
  color: #555;
  font-weight: 500;
}

.quem-somos-texto .checklist-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.quem-somos-numeros {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.numero-card {
  background: var(--cinza-claro);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  border: var(--border-subtle);
  transition: transform var(--transition), box-shadow var(--transition);
}

.numero-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.numero-card .valor {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--roxo);
  line-height: 1;
  margin-bottom: 8px;
}

.numero-card .label {
  font-size: 13px;
  color: #888;
  font-weight: 500;
  letter-spacing: 0.2px;
}

/* =====================================================================
   CTA FINAL + CONTATO
===================================================================== */
.cta-final {
  background: linear-gradient(160deg, var(--roxo-escuro) 0%, var(--roxo) 60%, #9C27B0 100%);
  text-align: center;
  padding: 120px 24px;
}

.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 56px);
  color: var(--branco);
  margin-bottom: 16px;
  letter-spacing: 1.5px;
  line-height: 1;
}

.cta-final > .container > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  margin-bottom: 40px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.contato-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 80px;
  align-items: start;
  text-align: left;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 56px 48px;
}

.contato-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--roxo-claro);
  background: rgba(206, 147, 216, 0.12);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.contato-info h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  color: var(--branco);
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  line-height: 1.1;
}

.contato-info h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--roxo-claro), transparent);
  margin: 16px 0 0;
  border-radius: 2px;
}

.contato-info p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.85;
  margin-top: 24px;
  max-width: 380px;
}

.contato-canais {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.contato-canal {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contato-canal-icone {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(206, 147, 216, 0.1);
  border: 1px solid rgba(206, 147, 216, 0.15);
  border-radius: 12px;
  color: var(--roxo-claro);
}

.contato-canal strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--branco);
  letter-spacing: 0.3px;
}

.contato-canal span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

/* --- Formulário minimalista (underline) --- */
#form-contato {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-field {
  position: relative;
  margin-bottom: 36px;
}

.form-field--textarea {
  margin-bottom: 40px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--branco);
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}

.form-field input:hover,
.form-field textarea:hover {
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.form-field textarea {
  resize: none;
  height: 88px;
  line-height: 1.7;
  display: block;
}

/* Linha de foco animada */
.form-field::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--roxo-claro);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.form-field:focus-within::after {
  width: 100%;
}

/* Floating label */
.form-field label {
  position: absolute;
  top: 13px;
  left: 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.38);
  pointer-events: none;
  transition: top 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              font-size 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              color 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              letter-spacing 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-field input:focus ~ label,
.form-field input:not(:placeholder-shown) ~ label,
.form-field textarea:focus ~ label,
.form-field textarea:not(:placeholder-shown) ~ label {
  top: -16px;
  font-size: 10px;
  color: var(--roxo-claro);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

/* Botão CTA do formulário */
#form-contato button {
  align-self: flex-start;
  margin-top: 8px;
  padding: 16px 48px;
  background: var(--roxo-claro);
  color: var(--roxo-escuro);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(206, 147, 216, 0.3);
  transition: background var(--transition), box-shadow var(--transition),
              transform var(--transition);
}

#form-contato button:hover {
  background: var(--branco);
  box-shadow: 0 6px 28px rgba(206, 147, 216, 0.4);
  transform: translateY(-2px);
}

#form-contato button:active {
  transform: translateY(0);
}

/* Feedback inline de envio */
.form-feedback {
  display: none;
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-xs);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.form-feedback.visivel {
  display: block;
}

.form-feedback--sucesso {
  background: rgba(37, 211, 102, 0.12);
  color: #7ef5b0;
  border: 1px solid rgba(37, 211, 102, 0.25);
}

.form-feedback--erro {
  background: rgba(239, 83, 80, 0.12);
  color: #f48a88;
  border: 1px solid rgba(239, 83, 80, 0.25);
}

/* =====================================================================
   BOTÃO FLUTUANTE DO WHATSAPP
===================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: var(--whatsapp);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}

/* Anel pulsante — chama atenção sutilmente */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--whatsapp);
  z-index: -1;
  animation: wa-pulse 2.8s ease-out infinite;
}

@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  100% { transform: scale(1.9); opacity: 0; }
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: var(--branco);
}

/* =====================================================================
   RODAPÉ
===================================================================== */
footer {
  background: var(--roxo-escuro);
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 32px 24px;
  font-size: 13px;
  letter-spacing: 0.2px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}

.footer-endereco {
  font-style: normal;
  color: rgba(255, 255, 255, 0.6);
  text-align: left;
}

.footer-content p {
  text-align: center;
}

footer strong {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

/* =====================================================================
   ANIMAÇÕES DE ENTRADA AO ROLAR (scroll)
===================================================================== */

/* Fade + slide para cima (padrão) */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in.visivel {
  opacity: 1;
  transform: translateY(0);
}

/* Slide da esquerda */
.fade-in-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in-left.visivel {
  opacity: 1;
  transform: translateX(0);
}

/* Slide da direita */
.fade-in-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in-right.visivel {
  opacity: 1;
  transform: translateX(0);
}

/* Delay escalonado — produtos */
.produtos-grid .fade-in:nth-child(2) { transition-delay: 0.06s; }
.produtos-grid .fade-in:nth-child(3) { transition-delay: 0.12s; }
.produtos-grid .fade-in:nth-child(4) { transition-delay: 0.18s; }
.produtos-grid .fade-in:nth-child(5) { transition-delay: 0.24s; }
.produtos-grid .fade-in:nth-child(6) { transition-delay: 0.30s; }
.produtos-grid .fade-in:nth-child(7) { transition-delay: 0.36s; }
.produtos-grid .fade-in:nth-child(8) { transition-delay: 0.42s; }

/* Delay escalonado — diferenciais */
.diferenciais-grid .fade-in:nth-child(2) { transition-delay: 0.08s; }
.diferenciais-grid .fade-in:nth-child(3) { transition-delay: 0.16s; }
.diferenciais-grid .fade-in:nth-child(4) { transition-delay: 0.24s; }

/* Delay escalonado — passos */
.passos .fade-in:nth-child(2) { transition-delay: 0.12s; }
.passos .fade-in:nth-child(3) { transition-delay: 0.24s; }

/* =====================================================================
   NAVBAR — LINK ATIVO (seção em vista)
===================================================================== */
.navbar-menu a.nav-active {
  color: var(--branco);
}
.navbar-menu a.nav-active::after {
  width: 100%;
}

/* =====================================================================
   CHECKLIST — micro-slide on hover
===================================================================== */
.checklist-item {
  transition: transform var(--transition);
}
.checklist-item:hover {
  transform: translateX(5px);
}

/* =====================================================================
   ACESSIBILIDADE — respeita preferência do sistema
===================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .fade-in,
  .fade-in-left,
  .fade-in-right {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =====================================================================
   RESPONSIVIDADE
===================================================================== */

/* Tablet grande */
@media (max-width: 1024px) {
  .produtos-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .diferenciais-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quem-somos-inner {
    gap: 48px;
  }
}

/* Tablet */
@media (max-width: 768px) {
  section {
    padding: 80px 20px;
  }

  .navbar {
    padding: 12px 20px;
  }

  .navbar--scrolled {
    padding: 10px 20px;
  }

  .navbar-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(74, 0, 114, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    text-align: center;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .navbar-menu a {
    padding: 12px 0;
    display: block;
    font-size: 15px;
  }

  .navbar-menu.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  /* Carrossel mobile */
  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .carousel-prev { left: 12px; }
  .carousel-next { right: 12px; }

  .slide-hero {
    padding: 100px 20px 60px;
  }

  .slide-image-content h2 {
    font-size: clamp(32px, 9vw, 56px);
  }

  /* Produtos */
  .produtos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .produto-img-wrap {
    height: 160px;
  }

  .produto-card--destaque .produto-img {
    height: 120px;
  }

  /* Diferenciais */
  .diferenciais-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .diferencial-item {
    padding: 28px 16px;
  }

  /* Passos */
  .passos {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .passos::before {
    display: none;
  }

  /* Quem somos */
  .quem-somos-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Contato */
  .contato-box {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
    padding: 40px 24px;
  }

  .contato-info h2::after {
    margin: 16px auto 0;
  }

  .contato-info p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .contato-canais {
    display: inline-flex;
    align-items: flex-start;
    max-width: 100%;
  }

  .contato-canal {
    text-align: left;
  }

  .form-field label {
    left: 0;
    right: 0;
    text-align: left;
  }

  #form-contato button {
    align-self: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-endereco,
  .footer-content p {
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 600px) {
  section {
    padding: 64px 16px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header h2 {
    font-size: clamp(30px, 8vw, 40px);
  }

  .section-header p {
    font-size: 14px;
  }

  .produtos-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .produto-card--destaque {
    padding: 12px 12px 20px;
  }

  .produto-img-wrap {
    height: 130px;
  }

  .produto-card--destaque .produto-img {
    height: 100px;
  }

  .produto-card h3 {
    font-size: 18px;
  }

  .produto-card p {
    font-size: 12.5px;
  }

  .diferenciais-grid {
    grid-template-columns: 1fr;
  }

  .diferencial-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
    text-align: left;
    padding: 24px;
    gap: 4px 16px;
    align-items: start;
  }

  .diferencial-item .icone-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    grid-row: 1 / -1;
    align-self: center;
  }

  .diferencial-item h3,
  .diferencial-item p {
    grid-column: 2;
    word-break: normal;
    overflow-wrap: normal;
    text-wrap: pretty;
  }

  .btn-whatsapp {
    font-size: 14px;
    padding: 14px 28px;
  }

  .quem-somos-numeros {
    gap: 12px;
  }

  .numero-card {
    padding: 24px 16px;
  }

  .numero-card .valor {
    font-size: 36px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  .cta-final {
    padding: 80px 16px;
  }

  .contato-box {
    gap: 36px;
    margin-top: 56px;
    padding: 32px 20px;
  }

}

/* Small mobile */
@media (max-width: 380px) {
  .produtos-grid {
    grid-template-columns: 1fr;
  }

  .quem-somos-numeros {
    grid-template-columns: 1fr 1fr;
  }
}
