/* ========================================
   1. Design Tokens
   ======================================== */
:root {
  --navy-dark: #0f1b33;
  --navy: #1a2d4f;
  --navy-light: #243b63;
  --blue: #2e5fa3;
  --blue-light: #38bdf8;
  --coral: #ff5a36;
  --coral-hover: #ea4824;
  --white: #ffffff;
  --off-white: #f5f7fa;
  --gray-100: #e8ecf1;
  --gray-300: #b0bac6;
  --gray-600: #5a6a7e;
  --gray-800: #2c3e50;
  --text-dark: #1a2d4f;
  --text-light: #ffffff;
  --text-muted: #5a6a7e;
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --container: 1100px;
  --section-py: 100px;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 4px 24px rgba(15, 27, 51, 0.08);
  --shadow-lg: 0 12px 40px rgba(15, 27, 51, 0.12);
  --transition: 0.3s ease;
}

/* ========================================
   2. Reset & Base
   ======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; scroll-snap-type: y mandatory; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* ========================================
   3. Typography
   ======================================== */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p { font-size: 1.0625rem; }

/* ========================================
   4. Layout
   ======================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: var(--section-py) 0; scroll-snap-align: start; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--navy); color: var(--text-light); }
.section-navy { background: linear-gradient(160deg, var(--navy-dark), var(--navy)); color: var(--text-light); }

.section-label {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-dark .section-label,
.section-navy .section-label { color: var(--blue-light); }

.section-title { margin-bottom: 20px; }
.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 48px;
}
.section-dark .section-subtitle,
.section-navy .section-subtitle { color: var(--gray-300); }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ========================================
   5. Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-cta {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255, 90, 54, 0.4);
  animation: pulse-glow 2s infinite;
}
@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(255, 90, 54, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(255, 90, 54, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 90, 54, 0); }
}
.btn-cta:hover {
  background: var(--coral-hover);
  box-shadow: 0 6px 28px rgba(217, 64, 50, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

.btn-secondary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26, 45, 79, 0.25);
}
.btn-secondary:hover {
  background: var(--navy-light);
  box-shadow: 0 6px 24px rgba(26, 45, 79, 0.35);
}



/* ========================================
   7. Hero
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  overflow: hidden;
  scroll-snap-align: start;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(46, 95, 163, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(217, 64, 50, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding-top: 0;
  padding-bottom: 60px;
}
.hero-label {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 24px;
}
.hero-title {
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 400;
}
.hero-title strong {
  font-weight: 800;
}
.hero-title em {
  font-style: normal;
  color: var(--gray-300);
}
.hero-subtitle {
  font-size: 1.125rem;
  color: var(--gray-300);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 0.75rem;
  letter-spacing: 1px;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll svg { width: 20px; height: 20px; stroke: currentColor; }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ========================================
   8. Proposta de Valor
   ======================================== */
.proposta-text {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.8;
  color: var(--text-dark);
  max-width: 720px;
  margin: 0 auto;
}
.proposta-text strong { color: var(--navy); }

/* ========================================
   Resultados Animados (Cards Coloridos)
   ======================================== */
.result-item {
  background: var(--white);
  padding: 32px 16px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid var(--gray-100);
  position: relative;
  overflow: hidden;
}
.result-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.result-number {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.result-number svg {
  width: 48px;
  height: 48px;
}

/* Card 1: Coral */
.result-item:nth-child(1) { border-top-color: var(--coral); }
.result-item:nth-child(1) .result-number { color: var(--coral); }
.result-item:nth-child(1) .result-number svg { stroke: var(--coral); }

/* Card 2: Sky Blue */
.result-item:nth-child(2) { border-top-color: var(--blue-light); }
.result-item:nth-child(2) .result-number { color: var(--blue-light); }
.result-item:nth-child(2) .result-number svg { stroke: var(--blue-light); }

/* Card 3: Blue */
.result-item:nth-child(3) { border-top-color: var(--blue); }
.result-item:nth-child(3) .result-number { color: var(--blue); }
.result-item:nth-child(3) .result-number svg { stroke: var(--blue); }

/* Card 4: Navy Light */
.result-item:nth-child(4) { border-top-color: var(--navy-light); }
.result-item:nth-child(4) .result-number { color: var(--navy-light); }
.result-item:nth-child(4) .result-number svg { stroke: var(--navy-light); }

/* Card 5: Navy */
.result-item:nth-child(5) { border-top-color: var(--navy); }
.result-item:nth-child(5) .result-number { color: var(--navy); }
.result-item:nth-child(5) .result-number svg { stroke: var(--navy); }

/* ========================================
   9. Problema
   ======================================== */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 3px solid var(--coral);
  box-shadow: var(--shadow);
}
.problem-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--coral);
  margin-top: 2px;
}
.problem-item span {
  font-size: 0.975rem;
  color: var(--gray-800);
  line-height: 1.5;
}
.problem-punchline {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}
.problem-punchline p {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--gray-600);
}
.problem-punchline .highlight {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  margin-top: 4px;
}

/* ========================================
   10. Solução
   ======================================== */
.solution-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.solution-step {
  position: relative;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  counter-increment: step;
  transition: transform var(--transition), box-shadow var(--transition);
}
.solution-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.solution-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.solution-step h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.solution-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========================================
   11. Sobre
   ======================================== */
.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: center;
}
.about-photo {
  position: relative;
  width: 280px;
  height: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy-light);
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  font-size: 0.85rem;
}
.about-photo::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--blue-light);
  border-radius: var(--radius);
  z-index: -1;
}
.about-text h2 { color: var(--white); margin-bottom: 20px; }
.about-text p {
  color: var(--gray-300);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.about-tag {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(255,255,255,0.08);
  color: var(--gray-300);
  border: 1px solid rgba(255,255,255,0.1);
}

/* ========================================
   12. Resultados
   ======================================== */
.results-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.result-item {
  text-align: center;
  padding: 32px 12px;
}
.result-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.result-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ========================================
   13. Produtos
   ======================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--navy);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  color: var(--navy);
  margin-bottom: 20px;
}
.product-card-icon svg { width: 24px; height: 24px; }
.product-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--navy);
}
.product-card .product-audience {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}
.product-card .product-meta {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-100);
}
.product-card .product-meta strong { color: var(--text-dark); }
.product-deliverables {
  margin-bottom: 24px;
  flex-grow: 1;
}
.product-deliverables li {
  font-size: 0.9rem;
  color: var(--gray-800);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}
.product-deliverables li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}
.product-card .btn-product {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--off-white);
  border: 2px solid var(--navy-light);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}
.product-card .btn-product::after {
  content: '→';
  font-size: 1.1em;
  transition: transform 0.3s ease;
}
.product-card .btn-product:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 45, 79, 0.15);
}
.product-card .btn-product:hover::after {
  transform: translateX(4px);
}

/* ========================================
   14. Cases
   ======================================== */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-card {
  padding: 32px 28px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.case-card-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue);
  margin-bottom: 12px;
}
.case-card p {
  font-size: 0.975rem;
  color: var(--gray-800);
  line-height: 1.7;
}

/* ========================================
   15. Prova Social
   ======================================== */
.social-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}
.social-logo {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-600);
  padding: 16px 28px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  white-space: nowrap;
}
.social-logo:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow);
}

/* ========================================
   16. Fechamento
   ======================================== */
.closing-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.closing-content h2 {
  color: var(--white);
  margin-bottom: 24px;
}
.closing-content p {
  color: var(--gray-300);
  margin-bottom: 40px;
  font-size: 1.1rem;
}

/* ========================================
   17. Footer
   ======================================== */
.footer {
  background: var(--navy-dark);
  color: var(--gray-300);
  padding: 48px 0 32px;
  scroll-snap-align: end;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}
.footer-brand .header-logo { margin-bottom: 8px; display: block; }
.footer-brand p { font-size: 0.875rem; color: var(--gray-600); }
.footer-contact { display: flex; gap: 40px; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}
.footer-contact-item svg {
  width: 18px; height: 18px;
  color: var(--blue-light);
  flex-shrink: 0;
}
.footer-contact-item a { color: var(--gray-300); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--white); }
.footer-copy {
  font-size: 0.8rem;
  color: var(--gray-600);
  text-align: center;
}

/* ========================================
   18. WhatsApp Float
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}
.whatsapp-float.visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}
.whatsapp-float svg { width: 28px; height: 28px; }

/* ========================================
   19. Animations
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========================================
   20. Media Queries
   ======================================== */
@media (max-width: 1024px) {
  .results-grid { grid-template-columns: repeat(3, 1fr); }
  .results-grid .result-item:nth-child(4),
  .results-grid .result-item:nth-child(5) {
    grid-column: span 1;
  }
  .solution-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-py: 64px; }
  .hero-content { padding-top: 0; }
  .problem-grid { grid-template-columns: 1fr; }
  .solution-steps { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-photo { width: 200px; height: 240px; margin: 0 auto; }
  .about-text { text-align: center; }
  .about-tags { justify-content: center; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .cases-grid { grid-template-columns: 1fr; }
  .footer-grid { flex-direction: column; align-items: center; text-align: center; }
  .footer-contact { flex-direction: column; gap: 16px; }
  .social-logos { gap: 16px; }
}

@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { width: 100%; }
  .results-grid { grid-template-columns: 1fr 1fr; }
}

/* ========================================
   21. Quiz & Product Pages
   ======================================== */

/* Quiz Form */
.quiz-container {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.quiz-progress {
  width: 100%;
  height: 6px;
  background: var(--gray-100);
  border-radius: 10px;
  margin-bottom: 30px;
  overflow: hidden;
}
.quiz-progress-bar {
  height: 100%;
  background: var(--blue);
  width: 33.33%;
  transition: width 0.4s ease;
}
.quiz-step h3 {
  font-size: 1.25rem;
  margin-bottom: 24px;
  color: var(--navy);
}
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.quiz-option {
  position: relative;
  display: block;
  cursor: pointer;
}
.quiz-option input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.option-content {
  display: block;
  padding: 16px 20px;
  background: var(--off-white);
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-800);
  transition: var(--transition);
}
.quiz-option:hover .option-content {
  border-color: var(--blue-light);
  background: var(--white);
}
.quiz-option input:checked ~ .option-content {
  border-color: var(--blue);
  background: rgba(46, 95, 163, 0.05);
  color: var(--navy);
  box-shadow: 0 4px 12px rgba(46, 95, 163, 0.1);
}

/* Product Hero */
.product-header {
  background: var(--navy-dark);
  padding: 20px 0;
  scroll-snap-align: start;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-300);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.back-link:hover { color: var(--white); }
.product-hero {
  padding: 60px 0 80px;
}
.product-icon-large {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  margin-bottom: 24px;
}

/* Product Details */
.product-details-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
}
.product-deliverables-large {
  margin-top: 24px;
}
.product-deliverables-large li {
  font-size: 1.1rem;
  color: var(--gray-800);
  padding: 12px 0 12px 32px;
  position: relative;
  border-bottom: 1px solid var(--gray-100);
}
.product-deliverables-large li:last-child {
  border-bottom: none;
}
.product-deliverables-large li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--coral);
  font-weight: 800;
  font-size: 1.2rem;
}
.product-meta-large {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--navy);
  box-shadow: var(--shadow);
}
.product-meta-large p { margin-bottom: 8px; font-size: 1rem; color: var(--gray-800); }
.product-meta-large p:last-child { margin-bottom: 0; }
.product-meta-large strong { color: var(--navy); }

/* Contact Form */
.contact-box {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.contact-box h3 { margin-bottom: 16px; color: var(--navy); }
.contact-box p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.6; }
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 8px;
}
.form-group input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  transition: border-color var(--transition);
}
.form-group input:focus {
  outline: none;
  border-color: var(--blue);
}
.w-100 { width: 100%; }

@media (max-width: 900px) {
  .product-details-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 480px) {
  .quiz-container { padding: 24px 20px; }
  .contact-box { padding: 32px 20px; }
}

/* ========================================
   22. Added Image & Utility Styles
   ======================================== */
.social-img {
  border-radius: var(--radius);
  max-width: 100%;
  box-shadow: var(--shadow-lg);
}
.quote-img {
  border-radius: var(--radius);
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.footer-logo {
  max-height: 80px;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
}
.footer-logo-sm {
  max-height: 60px;
  margin-bottom: 16px;
}
.quiz-prev {
  border-color: var(--navy) !important;
  color: var(--navy) !important;
}
.quiz-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.hero-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  text-align: center;
}
@media (min-width: 992px) {
  .hero-split {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }
}
.hero-split-image img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  object-fit: contain;
}
.quiz-error {
  color: #e74c3c;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  margin-top: 16px;
  background-color: #fdf0ed;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid #fadbd8;
}
.trilha-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.trilha-gallery img {
  border-radius: var(--radius-sm);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}

.video-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.carousel-track-container {
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.carousel-track {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  transition: transform 250ms ease-in-out;
}
.carousel-slide {
  min-width: 100%;
}
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background-color: #000;
  width: 100%;
}
.video-container iframe, .video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.carousel-button {
  position: absolute;
  top: calc(50% - 24px);
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow);
  color: var(--navy);
  transition: var(--transition);
}
.carousel-button:hover {
  background: var(--white);
  transform: scale(1.05);
}
.carousel-button--left {
  left: -24px;
}
.carousel-button--right {
  right: -24px;
}
.carousel-button.is-hidden {
  display: none;
}
.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.carousel-indicator {
  border: 0;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  background: var(--gray-400);
  cursor: pointer;
  transition: var(--transition);
}
.carousel-indicator.current-slide {
  background: var(--navy);
}
@media (max-width: 768px) {
  .carousel-button--left { left: -10px; }
  .carousel-button--right { right: -10px; }
}

/* ========================================
   18. Speed Dial Floating Menu
   ======================================== */
.speed-dial {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.speed-dial-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 8px;
}

.speed-dial.is-active .speed-dial-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.speed-dial-item {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
  text-decoration: none;
}

.speed-dial-item:hover {
  transform: scale(1.1);
}

.speed-dial-toggle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease, background 0.3s ease;
  z-index: 2;
}

.speed-dial-toggle:hover {
  background: var(--coral-hover);
  transform: scale(1.05);
}

.speed-dial.is-active .speed-dial-toggle {
  background: var(--navy-dark);
}

.speed-dial.is-active .icon-closed {
  display: none;
}

.speed-dial.is-active .icon-open {
  display: block;
}

/* ========================================
   Logo Grid
   ======================================== */
.logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem 4rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.logo-item {
  flex: 0 0 auto;
  max-width: 160px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%) contrast(1.2) opacity(0.55);
  mix-blend-mode: multiply;
  transition: all 0.3s ease;
}

.logo-item img:hover,
.logo-item img.is-colored {
  filter: grayscale(0%) contrast(1.1) opacity(1);
  transform: scale(1.05);
}

/* ========================================
   15. Mobile Accessibility & Scroll Snap Fixes
   ======================================== */
@media (max-width: 991px) {
  html {
    scroll-snap-type: none !important;
  }
  .section, .hero, .hero-text-only, .section-alt, .section-dark, .section-navy {
    scroll-snap-align: none !important;
    min-height: auto !important;
    height: auto !important;
    overflow-y: visible !important;
    padding: 60px 24px !important;
  }
  .hero-text-only {
    padding: 120px 24px 60px !important;
  }
}
