/* ==========================================================================
   HIPERCATALÃO - ESTILOS DA LANDING PAGE (DESIGN LUXO & ALTO PADRÃO)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Paleta de Cores (Tema Claro & Sofisticado - Azul Safira Vibrante) */
  --primary: #0284c7;
  --primary-light: #38bdf8;
  --primary-dark: #0369a1;
  --primary-soft: #f0f9ff;
  --primary-glow: rgba(14, 165, 233, 0.25);
  
  --gold: #d97706;
  --gold-light: #fbbf24;
  --gold-soft: #fef3c7;

  --accent: #16a34a;
  --accent-hover: #15803d;
  --accent-soft: #dcfce7;
  --accent-glow: rgba(22, 163, 74, 0.25);

  /* Tons de Fundo */
  --bg-body: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-hover: #f0f9ff;
  --bg-alt: #f0f9ff;
  --bg-gradient-hero: radial-gradient(circle at 85% 15%, rgba(56, 189, 248, 0.18) 0%, transparent 50%), radial-gradient(circle at 10% 85%, rgba(245, 158, 11, 0.1) 0%, transparent 45%), linear-gradient(180deg, #f0f9ff 0%, #f8fafc 100%);
  
  /* Bordas */
  --border-light: #e2e8f0;
  --border-cyan: #bae6fd;
  --border-subtle: #edf2f7;

  /* Tipografia & Cores de Texto */
  --text-dark: #0a192f;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #ffffff;

  /* Fontes */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Transições & Sombras */
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 2px 10px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 12px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 25px 55px -12px rgba(15, 23, 42, 0.12);
  --shadow-cyan: 0 12px 35px rgba(2, 132, 199, 0.28);
  --shadow-green: 0 12px 30px rgba(22, 163, 74, 0.28);
  
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-full: 9999px;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  border: none;
  outline: none;
}

ul {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Tipografia Base */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, #0284c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.badge-cyan {
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.08) 0%, rgba(56, 189, 248, 0.15) 100%);
  color: var(--primary-dark);
  border: 1px solid var(--border-cyan);
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.08);
}

.badge-green {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.08) 0%, rgba(74, 222, 128, 0.15) 100%);
  color: #15803d;
  border: 1px solid rgba(34, 197, 94, 0.3);
  box-shadow: 0 2px 8px rgba(22, 163, 74, 0.08);
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.85rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(2, 132, 199, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(2, 132, 199, 0.38);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(22, 163, 74, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #28d366 0%, #15803d 100%);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(22, 163, 74, 0.42);
}

.btn-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(220, 39, 67, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-instagram:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 8px 22px rgba(220, 39, 67, 0.45);
}

.btn-outline {
  background: #ffffff;
  color: var(--primary-dark);
  border: 1.5px solid var(--border-cyan);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  background: var(--primary-soft);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  padding: 0.65rem 1.35rem;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
}

.nav-brand-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--primary-dark);
}

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

.nav-link {
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 0.5rem 0.25rem;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
  border-radius: var(--radius-full);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-toggle {
  display: none;
  background: transparent;
  color: var(--text-dark);
  cursor: pointer;
  padding: 0.5rem;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  padding: 130px 0 70px;
  background: var(--bg-gradient-hero);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 1;
}

.hero-glow-1 {
  width: 450px;
  height: 450px;
  background: rgba(14, 165, 233, 0.2);
  top: -100px;
  right: -50px;
}

.hero-glow-2 {
  width: 350px;
  height: 350px;
  background: rgba(34, 197, 94, 0.15);
  bottom: -50px;
  left: -50px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-badge-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.badge-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 12px #22c55e;
  display: inline-block;
  animation: pulseDot 2s infinite ease-in-out;
}

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

.hero-title {
  font-size: 3.15rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-dark);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-body);
  line-height: 1.65;
  max-width: 560px;
}

.hero-subtitle strong {
  color: var(--text-dark);
  font-weight: 700;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 0.5rem;
}

.hero-micro-trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-micro-trust svg {
  color: var(--accent);
  flex-shrink: 0;
}

.hero-rating-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
}

.hero-rating-text {
  font-size: 0.875rem;
  color: var(--text-dark);
  font-weight: 600;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.proof-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-soft);
  border: 1px solid var(--border-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.proof-text {
  display: flex;
  flex-direction: column;
}

.proof-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.proof-label {
  font-size: 0.775rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Hero Media Showcase */
.hero-media-card {
  position: relative;
  border-radius: 32px;
  background: #ffffff;
  border: 1px solid rgba(2, 132, 199, 0.25);
  padding: 0.85rem;
  box-shadow: 0 25px 65px -15px rgba(2, 132, 199, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.9);
}

.hero-media-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.floating-tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(2, 132, 199, 0.25);
  border-radius: var(--radius-full);
  color: var(--text-dark);
  font-size: 0.825rem;
  font-weight: 700;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.12);
  z-index: 5;
}

.floating-tag.tag-top {
  top: -18px;
  right: 20px;
}

.floating-tag.tag-bottom {
  bottom: 20px;
  right: 20px;
}

.floating-review-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(2, 132, 199, 0.2);
  border-radius: 16px;
  padding: 0.85rem 1.15rem;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.15);
  z-index: 6;
  max-width: 250px;
}

.floating-review-stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
  margin-bottom: 0.35rem;
}

.floating-review-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.35;
}

.floating-review-author {
  font-size: 0.725rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  display: block;
}

/* ==========================================================================
   SEÇÕES GERAIS
   ========================================================================== */
.section {
  padding: 90px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-header .badge {
  margin: 0 auto;
}

.section-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 1rem 0 0.75rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ==========================================================================
   PILARES & BENEFÍCIOS (COM IMAGENS LUXUOSAS)
   ========================================================================== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.pillar-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.pillar-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md), var(--shadow-cyan);
}

.pillar-img-box {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
  background: var(--primary-soft);
}

.pillar-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pillar-card:hover .pillar-img-box img {
  transform: scale(1.08);
}

.pillar-body {
  padding: 1.5rem 1.35rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pillar-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.65rem;
}

.pillar-desc {
  color: var(--text-body);
  font-size: 0.925rem;
  line-height: 1.6;
}

/* ==========================================================================
   SERVIÇOS
   ========================================================================== */
.services-section {
  background: var(--bg-alt);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.service-thumb {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-thumb img {
  transform: scale(1.06);
}

.service-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.service-desc {
  color: var(--text-body);
  font-size: 0.925rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.service-features {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-body);
  font-weight: 500;
}

.service-feature-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

.service-action {
  margin-top: auto;
}

/* ==========================================================================
   VÍDEO DE TRANSFORMAÇÃO COMPROVADA
   ========================================================================== */
.ba-section {
  background: #ffffff;
}

.transform-video-container {
  max-width: 420px;
  margin: 0 auto;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 60px -15px rgba(2, 132, 199, 0.28), 0 0 0 1px rgba(2, 132, 199, 0.12);
  border: 4px solid #ffffff;
  background: transparent;
}

.transform-video-card {
  width: 100%;
  aspect-ratio: 692 / 1074;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  position: relative;
  cursor: pointer;
}

.transform-video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: transparent;
}

.video-play-overlay-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(2, 132, 199, 0.9);
  color: #ffffff;
  border: 3px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 25px rgba(2, 132, 199, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.video-play-overlay-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(14, 165, 233, 0.95);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5), 0 0 35px rgba(2, 132, 199, 0.7);
}

.video-play-overlay-btn.is-playing {
  opacity: 0;
  pointer-events: none;
}

.transform-video-card:hover .video-play-overlay-btn.is-playing {
  opacity: 0.85;
  pointer-events: auto;
}

/* ==========================================================================
   PLAYGROUND DE LÍQUIDOS (DESIGN LUXUOSO & INTERATIVO)
   ========================================================================== */
.liquid-playground {
  background: #ffffff;
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  box-shadow: 0 25px 60px -15px rgba(2, 132, 199, 0.15), 0 0 0 1px rgba(2, 132, 199, 0.08);
  margin-top: 4.5rem;
}

@media (max-width: 768px) {
  .liquid-playground {
    padding: 2rem 1.5rem;
  }
}

.liquid-tabs {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.liquid-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.75rem;
  border-radius: 9999px;
  border: 1.5px solid var(--border-light);
  background: #ffffff;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.liquid-tab-btn:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  background: var(--primary-soft);
}

.liquid-tab-btn.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.35);
  transform: translateY(-2px);
}

.liquid-display-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.75rem;
  align-items: center;
  background: linear-gradient(180deg, #f8fafc 0%, #f0f7fd 100%);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid var(--border-cyan);
  box-shadow: inset 0 2px 6px rgba(255, 255, 255, 0.8), 0 10px 25px rgba(15, 23, 42, 0.05);
}

@media (max-width: 992px) {
  .liquid-display-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.75rem;
  }
}

.liquid-metrics-row {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin: 1.25rem 0;
}

.liquid-metric-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  background: #ffffff;
  border: 1px solid var(--border-cyan);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}

.liquid-metric-chip svg {
  color: var(--accent);
}

.liquid-img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
  border: 3px solid #ffffff;
  height: 300px;
  background: #0f172a;
}

.liquid-display-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.liquid-img-wrapper:hover .liquid-display-img {
  transform: scale(1.08);
}

.liquid-floating-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-cyan);
  border-radius: 9999px;
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

/* ==========================================================================
   VÍDEOS & DEMONSTRAÇÃO
   ========================================================================== */
.video-tabs-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.video-container-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  align-items: center;
  margin-bottom: 3rem;
}

.video-player-box {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000000;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 16 / 9;
}

.video-player-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.video-bullets {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.video-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.video-bullet-item svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.video-grid-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.video-grid-item video {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #000000;
}

.video-grid-content {
  padding: 1.25rem;
}

.video-grid-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.video-grid-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   PASSOS "COMO FUNCIONA" COM FOTOS REAIS
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
}

.step-card-visual {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.step-card-visual:hover {
  transform: translateY(-6px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md), var(--shadow-cyan);
}

.step-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-light);
}

.step-card-body {
  padding: 1.5rem;
  position: relative;
  text-align: left;
}

.step-badge-num {
  position: absolute;
  top: -22px;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #ffffff;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-cyan);
  border: 3px solid #ffffff;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  padding-right: 2rem;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.55;
}

.real-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

@media (max-width: 992px) {
  .real-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 600px) {
  .real-gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  background: #0f172a;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: #ffffff;
  opacity: 0.95;
  transition: var(--transition);
}

.gallery-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: #ffffff;
}

.gallery-tag {
  font-size: 0.825rem;
  color: var(--primary-light);
  font-weight: 600;
}

/* ==========================================================================
   TABELA COMPARATIVA
   ========================================================================== */
.comparison-table-wrapper {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  box-shadow: var(--shadow-md);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95rem;
}

.comparison-table th {
  background: #f8fafc;
  font-weight: 800;
  color: var(--text-dark);
}

.comparison-table th.highlight {
  background: var(--primary-soft);
  color: var(--primary-dark);
  border-left: 1px solid var(--border-cyan);
  border-right: 1px solid var(--border-cyan);
}

.comparison-table td.highlight {
  background: #f0f9ff;
  border-left: 1px solid var(--border-cyan);
  border-right: 1px solid var(--border-cyan);
  font-weight: 700;
  color: var(--primary-dark);
}

.table-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.table-icon-feature {
  color: var(--primary);
  flex-shrink: 0;
}

.table-icon-bad {
  color: #ef4444;
  flex-shrink: 0;
}

.table-icon-good {
  color: var(--accent);
  flex-shrink: 0;
}

.table-icon-warn {
  color: #f59e0b;
  flex-shrink: 0;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

/* ==========================================================================
   SIMULADOR DE ORÇAMENTO (DESIGN UNIFICADO & EXECUTIVO)
   ========================================================================== */
.quote-single-card {
  max-width: 860px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--border-cyan);
  border-radius: 28px;
  padding: 3.5rem 3rem;
  box-shadow: 0 25px 60px -15px rgba(10, 37, 64, 0.12), 0 0 0 1px rgba(10, 37, 64, 0.05);
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (max-width: 768px) {
  .quote-single-card {
    padding: 2rem 1.5rem;
    gap: 2rem;
  }
}

.quote-step-box {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.quote-step-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.quote-step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
  flex-shrink: 0;
}

.quote-step-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
}

/* Opções de Seleção de Serviço (Cards Luxo com Ícones Vetoriais) */
.service-select-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.15rem;
}

.select-card-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem 1.35rem;
  background: #ffffff;
  border: 2px solid var(--border-light);
  border-radius: 18px;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
  box-shadow: var(--shadow-sm);
  position: relative;
  min-height: 145px;
}

.select-card-btn:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(2, 132, 199, 0.15);
}

.select-card-btn.active {
  border-color: var(--primary);
  background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
  box-shadow: 0 10px 25px rgba(2, 132, 199, 0.22);
  transform: translateY(-2px);
}

.select-card-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(2, 132, 199, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  transition: var(--transition);
}

.select-card-btn:hover .select-card-icon-box,
.select-card-btn.active .select-card-icon-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #ffffff;
  transform: scale(1.05);
}

.select-card-icon-box.gold-icon {
  background: rgba(245, 158, 11, 0.12);
  color: #d97706;
}

.select-card-btn:hover .select-card-icon-box.gold-icon,
.select-card-btn.active .select-card-icon-box.gold-icon {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
}

.select-card-btn .card-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
}

.select-card-btn .card-badge {
  font-size: 0.775rem;
  color: var(--primary-dark);
  font-weight: 700;
  margin-top: 0.4rem;
  background: var(--primary-soft);
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  display: inline-block;
}

.select-card-btn .card-badge.gold-badge {
  background: rgba(245, 158, 11, 0.12);
  color: #b45309;
}

/* Opções de Estofado (Chips Luxuosos) */
.item-chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.item-chip-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  border-radius: 9999px;
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  color: var(--text-body);
  font-size: 0.925rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.item-chip-btn:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
  transform: translateY(-2px);
  background: var(--primary-soft);
}

.item-chip-btn.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-color: var(--primary);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.35);
  transform: translateY(-2px);
}

/* Inputs de Contato */
.quote-inputs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 600px) {
  .quote-inputs-grid {
    grid-template-columns: 1fr;
  }
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon svg {
  position: absolute;
  left: 1.25rem;
  color: var(--primary);
  pointer-events: none;
}

.input-with-icon .form-control {
  padding-left: 3.25rem;
  height: 54px;
  border-radius: 14px;
  border: 1.5px solid var(--border-light);
  background: #ffffff;
  font-size: 0.95rem;
  width: 100%;
}

textarea.form-control {
  min-height: 90px;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  border: 1.5px solid var(--border-light);
  background: #ffffff;
  font-size: 0.95rem;
  width: 100%;
  resize: vertical;
  line-height: 1.5;
}

.input-with-icon .form-control:focus,
textarea.form-control:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

/* Ação Final de Envio */
.quote-action-box {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.btn-quote-action {
  width: 100%;
  padding: 1.15rem 2rem;
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.quote-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.quote-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.quote-trust-item svg {
  color: var(--accent);
}

/* ==========================================================================
   DEPOIMENTOS
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

.stars-rating {
  display: flex;
  gap: 4px;
  color: #f59e0b;
  margin-bottom: 1.25rem;
}

.testimonial-text {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1.25rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.author-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-md), var(--shadow-cyan);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--primary);
  color: #ffffff;
}

.faq-answer {
  padding: 0 1.5rem;
  height: 0;
  overflow: hidden;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.65;
  transition: var(--transition);
}

.faq-item.active .faq-answer {
  height: auto;
  padding-bottom: 1.5rem;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section {
  padding: 80px 0;
  background: var(--bg-gradient-hero);
}

.cta-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  text-align: center;
  color: #ffffff;
  box-shadow: var(--shadow-lg), var(--shadow-cyan);
  position: relative;
  overflow: hidden;
}

.cta-title {
  color: #ffffff;
  font-size: 2.4rem;
  font-weight: 800;
  margin: 1.25rem 0 1rem;
}

.cta-desc {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: var(--primary-soft);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.925rem;
  margin-top: 1rem;
  line-height: 1.6;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.footer-social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: var(--transition);
  text-decoration: none;
}

.footer-social-btn.footer-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 4px 14px rgba(220, 39, 67, 0.3);
}

.footer-social-btn.footer-instagram:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 20px rgba(220, 39, 67, 0.45);
}

.footer-social-btn.footer-whatsapp {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.35);
}

.footer-social-btn.footer-whatsapp:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.5);
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: var(--text-body);
  font-size: 0.9rem;
}

.footer-link:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-body);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.footer-contact-item a {
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact-item a:hover {
  color: var(--primary);
}

.footer-contact-item svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer-creator {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.creator-link {
  display: inline-flex;
  align-items: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.creator-link:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

.creator-logo {
  width: 120px;
  max-width: 120px;
  height: auto;
  display: block;
}

/* ==========================================================================
   BOTÃO FLUTUANTE DO WHATSAPP (APENAS ÍCONE CIRCULAR)
   ========================================================================== */
.btn-icon-only {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff;
  width: 60px;
  height: 60px;
  padding: 0;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(22, 163, 74, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: var(--transition);
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 14px 35px rgba(22, 163, 74, 0.55);
}

.whatsapp-badge-pulse {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ef4444;
  border: 2px solid #ffffff;
  animation: pulseDot 1.5s infinite;
}

/* ==========================================================================
   RESPONSIVIDADE (MOBILE & TABLET)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .video-container-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
  }

  .nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid var(--border-light);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    gap: 1rem;
  }

  .hero {
    padding: 110px 0 50px;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero-media-card img {
    height: 320px;
  }

  .floating-review-card {
    position: static;
    margin-top: 1rem;
    max-width: 100%;
  }

  .floating-tag {
    position: static;
    margin-top: 0.5rem;
    display: inline-flex;
  }

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

  .quote-card {
    padding: 1.75rem;
  }

  .liquid-display-card {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    padding: 0.9rem;
    bottom: 1.25rem;
    right: 1.25rem;
  }
}
