/* ==========================================================================
   RESINA EXTREME — CSS PROFISSIONAL MOBILE-FIRST
   Design Premium Automotivo | Zero Dependências | 100% Responsivo
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #1e293b;
  background-color: #f8fafc;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

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

svg {
  max-width: 100%;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ==========================================================================
   CONTAINER & ESTRUTURA GERAL
   ========================================================================== */
.container {
  width: 100%;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 768px) {
  .container {
    max-width: 860px;
    padding-left: 24px;
    padding-right: 24px;
  }
}

.section {
  padding-top: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid #e2e8f0;
}

@media (min-width: 768px) {
  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}

.bg-white { background-color: #ffffff; }
.bg-slate-50 { background-color: #f8fafc; }
.bg-slate-900 { background-color: #0f172a; }

/* ==========================================================================
   TOP BAR & NAVBAR
   ========================================================================== */
/* ==========================================================================
   TOP BAR & NAVBAR
   ========================================================================== */
.top-bar {
  background-color: #090d16;
  color: #ffffff;
  padding: 8px 0;
  border-bottom: 1px solid #f59e0b;
}

.top-bar.success {
  background-color: #16a34a;
  border-bottom: none;
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.35;
  gap: 8px;
}

@media (min-width: 640px) {
  .top-bar-content {
    font-size: 13px;
  }
}

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse-ring 1.8s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.site-nav {
  background-color: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 8px 0;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0f172a;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
}

.nav-brand-text {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.nav-brand-text span {
  color: #ea580c;
}

.nav-badge {
  font-size: 11px;
  font-weight: 700;
  color: #15803d;
  background-color: #dcfce7;
  border: 1px solid #bbf7d0;
  padding: 4px 8px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}

.badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #15803d;
  flex-shrink: 0;
}

.badge-text-mobile {
  display: inline;
}

.badge-text-full {
  display: none;
}

@media (min-width: 440px) {
  .site-nav {
    padding: 10px 0;
  }
  .nav-brand {
    font-size: 18px;
    gap: 6px;
  }
  .nav-brand-icon {
    font-size: 19px;
  }
  .nav-badge {
    font-size: 12px;
    padding: 5px 10px;
    gap: 5px;
  }
  .badge-text-mobile {
    display: none;
  }
  .badge-text-full {
    display: inline;
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  background-color: #ffffff;
  padding-top: 24px;
  padding-bottom: 36px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #fff7ed;
  border: 1px solid #fdba74;
  color: #c2410c;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 9999px;
  margin-bottom: 14px;
}

.hero-title {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
  color: #0f172a;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 34px;
  }
}

.hero-sub {
  font-size: 16px;
  line-height: 1.5;
  color: #475569;
  font-weight: 500;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .hero-sub {
    font-size: 18px;
  }
}

/* ==========================================================================
   VIDEO PLAYER CUSTOMIZADO & OTIMIZADO
   ========================================================================== */
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto 20px auto;
  border-radius: 16px;
  overflow: hidden;
  background-color: #000000;
  aspect-ratio: 9 / 16;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
  border: 2px solid #0f172a;
}

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

.video-play-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: opacity 0.2s ease;
}

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

.play-circle {
  width: 64px;
  height: 64px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  margin-bottom: 10px;
  transition: transform 0.15s ease;
}

.video-play-overlay:hover .play-circle {
  transform: scale(1.08);
}

.play-triangle {
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid #0f172a;
  margin-left: 4px;
}

.play-text {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  background: rgba(0, 0, 0, 0.6);
  padding: 4px 12px;
  border-radius: 9999px;
}

.audio-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 20;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.audio-hint {
  position: absolute;
  bottom: 14px;
  left: 12px;
  z-index: 15;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  pointer-events: none;
}

/* ==========================================================================
   BENEFÍCIOS RÁPIDOS & BULLETS
   ========================================================================== */
.benefit-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  text-align: left;
}

.benefit-item {
  background-color: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.benefit-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-color: #22c55e;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  margin-top: 1px;
}

.benefit-text {
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.4;
}

.benefit-text strong {
  color: #0f172a;
}

/* ==========================================================================
   BOTÕES DE AÇÃO (CTA)
   ========================================================================== */
.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  padding: 14px 20px;
  background: #16a34a;
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.4);
  letter-spacing: -0.01em;
  transition: transform 0.15s ease, background-color 0.15s ease;
  line-height: 1.25;
}

.btn-cta:hover {
  background-color: #15803d;
}

.btn-cta:active {
  transform: scale(0.98);
}

.btn-cta.orange {
  background: #ea580c;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.4);
}

.btn-cta.orange:hover {
  background-color: #c2410c;
}

.cta-subtext {
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  text-align: center;
  margin-top: 8px;
}

/* Selos sociais rápidos */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ==========================================================================
   SEÇÃO COMPARATIVO ANTES X DEPOIS
   ========================================================================== */
.section-header {
  text-align: center;
  margin-bottom: 24px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: #15803d;
  background-color: #dcfce7;
  padding: 4px 10px;
  border-radius: 9999px;
  margin-bottom: 8px;
}

.section-tag.red {
  color: #b91c1c;
  background-color: #fee2e2;
}

.section-title {
  font-size: 22px;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 28px;
  }
}

.section-desc {
  font-size: 15px;
  color: #475569;
}

.compare-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .compare-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.compare-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid #e2e8f0;
}

.compare-card.bad {
  border-left: 4px solid #ef4444;
}

.compare-card.good {
  border-left: 4px solid #22c55e;
  background-color: #f0fdf4;
}

.compare-card h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
}

.compare-card.bad h4 { color: #b91c1c; }
.compare-card.good h4 { color: #15803d; }

.compare-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.45;
}

/* ==========================================================================
   PROVA SOCIAL & DEPOIMENTOS
   ========================================================================== */
.proof-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #16a34a;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
  text-align: left;
}

.proof-quote {
  font-size: 14.5px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 6px;
}

.proof-author {
  font-size: 12.5px;
  font-weight: 700;
  color: #16a34a;
}

/* ==========================================================================
   FOTOS REAIS DE CLIENTES (WHATSAPP CAROUSEL & LIGHTBOX)
   ========================================================================== */
.gallery-section {
  margin-top: 24px;
}

.gallery-section-header {
  text-align: center;
  margin-bottom: 16px;
}

.gallery-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 18px 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gallery-carousel::-webkit-scrollbar {
  display: none;
}

.gallery-card {
  flex: 0 0 88%;
  max-width: 320px;
  scroll-snap-align: center;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px -4px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease;
  user-select: none;
  -webkit-user-select: none;
}

.gallery-card:active {
  transform: scale(0.98);
}

.gallery-card-header {
  background: #f8fafc;
  padding: 10px 12px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gallery-card-badge {
  font-size: 12px;
  font-weight: 800;
  color: #15803d;
  display: flex;
  align-items: center;
  gap: 5px;
}

.gallery-card-zoom-hint {
  font-size: 11px;
  font-weight: 700;
  color: #0284c7;
  background: #e0f2fe;
  padding: 3px 8px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.gallery-card-img-wrap {
  width: 100%;
  background: #0f172a;
  position: relative;
}

.gallery-card-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.gallery-card-quote {
  padding: 12px 14px;
  text-align: left;
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
}

.gallery-card-quote p {
  font-size: 13.5px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.4;
  margin-bottom: 4px;
}

.gallery-card-quote span {
  font-size: 12px;
  font-weight: 500;
  color: #64748b;
  display: block;
  line-height: 1.35;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
}

.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: #cbd5e1;
  transition: all 0.2s ease;
}

.gallery-dot.active {
  width: 24px;
  background: #16a34a;
}

.gallery-swipe-hint {
  font-size: 12.5px;
  font-weight: 700;
  color: #15803d;
  text-align: center;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

@media (min-width: 768px) {
  .gallery-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    overflow-x: visible;
    padding: 10px 0;
  }
  .gallery-card {
    flex: none;
    max-width: none;
  }
  .gallery-dots, .gallery-swipe-hint {
    display: none;
  }
}

/* ==========================================================================
   LIGHTBOX MODAL
   ========================================================================== */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: rgba(15, 23, 42, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

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

.lightbox-content {
  position: relative;
  max-width: 95vw;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lightbox-close {
  position: absolute;
  top: -46px;
  right: 0;
  background: #ffffff;
  color: #0f172a;
  border: none;
  font-size: 13px;
  font-weight: 800;
  padding: 7px 16px;
  border-radius: 9999px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.lightbox-hint {
  color: #94a3b8;
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
  text-align: center;
}

/* ==========================================================================
   CARDS DE PREÇO / KITS DA OFERTA (LOGZZ COD)
   ========================================================================== */
.kits-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

@media (min-width: 768px) {
  .kits-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.kit-box {
  background: #ffffff;
  border: 2px solid #cbd5e1;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.kit-box.highlight {
  border: 3px solid #ea580c;
  background-color: #fffaf5;
  box-shadow: 0 10px 25px -5px rgba(234, 88, 12, 0.15);
  order: -1;
}

@media (min-width: 768px) {
  .kit-box.highlight {
    order: 0;
    transform: scale(1.04);
  }
}

.kit-badge {
  display: inline-block;
  background: #ea580c;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  padding: 6px 14px;
  border-radius: 9999px;
  margin-bottom: 12px;
  align-self: center;
  text-transform: uppercase;
}

.kit-img {
  max-height: 180px;
  object-fit: contain;
  margin: 0 auto 12px auto;
}

.kit-name {
  font-size: 20px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 4px;
}

.kit-sub {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 12px;
}

.kit-old-price {
  font-size: 14px;
  color: #94a3b8;
  text-decoration: line-through;
}

.kit-price {
  font-size: 30px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 4px;
}

.kit-unit-price {
  font-size: 14px;
  font-weight: 800;
  color: #ea580c;
  margin-bottom: 12px;
}

.kit-features {
  list-style: none;
  font-size: 13px;
  color: #334155;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.kit-features li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.kit-features li span {
  color: #16a34a;
  font-weight: 900;
}

.kit-box .btn-cta {
  margin-top: auto;
}

/* ==========================================================================
   PROVA SOCIAL (DEPOIMENTOS & PRINTS)
   ========================================================================== */
.proof-box {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  padding: 18px;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.proof-quote {
  font-style: italic;
  font-size: 15px;
  color: #334155;
  line-height: 1.5;
  border-left: 3px solid #16a34a;
  padding-left: 12px;
  margin-bottom: 10px;
}

.proof-author {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #cbd5e1;
  aspect-ratio: 1 / 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   PASSOS DIDÁTICOS DE COMPRA COD
   ========================================================================== */
.cod-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

@media (min-width: 768px) {
  .cod-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

.cod-step-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.step-number {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background-color: #0f172a;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 15px;
}

.step-body h4 {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2px;
}

.step-body p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.4;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 16px;
  transition: border-color 0.2s ease;
}

.faq-item[open] {
  border-color: #94a3b8;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: 800;
  font-size: 15px;
  color: #0f172a;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-cross {
  font-size: 20px;
  color: #16a34a;
  transition: transform 0.2s ease;
  line-height: 1;
}

.faq-item[open] .faq-cross {
  transform: rotate(45deg);
}

.faq-answer {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #f1f5f9;
}

/* ==========================================================================
   GARANTIA & RODAPÉ
   ========================================================================== */
.guarantee-box {
  background: #f0fdf4;
  border: 2px dashed #16a34a;
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  margin-top: 24px;
}

.guarantee-box h3 {
  font-size: 18px;
  font-weight: 900;
  color: #15803d;
  margin-bottom: 6px;
}

.guarantee-box p {
  font-size: 14px;
  color: #334155;
  line-height: 1.5;
}

.footer {
  background-color: #0f172a;
  color: #94a3b8;
  padding: 32px 16px 80px 16px;
  text-align: center;
  font-size: 12px;
  line-height: 1.6;
}

.footer p {
  color: #94a3b8;
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 14px 0;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: underline;
}

/* ==========================================================================
   STICKY BAR INFERIOR (MOBILE)
   ========================================================================== */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: #ffffff;
  padding: 10px 16px;
  border-top: 1px solid #e2e8f0;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(120%);
  transition: transform 0.25s ease-out;
}

.sticky-bar.show {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .sticky-bar {
    display: none;
  }
}

/* ==========================================================================
   PÁGINA DE OBRIGADO (ESTILOS ESPECÍFICOS E ÍCONES SVG)
   ========================================================================== */
.thank-box {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  padding: 24px 18px;
  margin-top: 24px;
  margin-bottom: 24px;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.check-icon-large {
  width: 64px;
  height: 64px;
  background-color: #dcfce7;
  color: #16a34a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
}

.check-icon-large svg {
  width: 36px;
  height: 36px;
}

.whatsapp-action-box {
  background-color: #f0fdf4;
  border: 2px solid #22c55e;
  border-radius: 14px;
  padding: 18px;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: left;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 56px;
  padding: 14px 20px;
  background: #25D366;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  transition: transform 0.15s ease, background-color 0.15s ease;
  margin-top: 12px;
  animation: pulse-ring 2.5s infinite;
}

.btn-whatsapp svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
  flex-shrink: 0;
}

.btn-whatsapp:hover {
  background-color: #20bd5a;
}

.btn-whatsapp:active {
  transform: scale(0.98);
}

.warning-cod-box {
  background-color: #fefce8;
  border: 2px solid #facc15;
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 20px;
  text-align: left;
}

.warning-cod-box h3 {
  font-size: 16px;
  font-weight: 900;
  color: #854d0e;
  margin-bottom: 6px;
}

.warning-cod-box p {
  font-size: 14px;
  color: #713f12;
  line-height: 1.45;
  margin-bottom: 10px;
}

.warning-cod-box ul {
  list-style: none;
  font-size: 13px;
  color: #713f12;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.warning-cod-box ul li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.warning-cod-box ul li strong {
  color: #854d0e;
}
