/* ==================== RESET ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* ==================== BASE ==================== */
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #FAF8F5;
}
/* ==================== CONTAINER ==================== */
.container {
  max-width: 480px;
  margin: 0 auto;
  padding: 24px 20px;
}
/* ==================== TIPOGRAFIA ==================== */
h1 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}
h2 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 20px;
}
h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
}
p {
  margin-bottom: 16px;
}
strong {
  font-weight: 600;
}
/* ==================== UNDERLINE ==================== */
.underline {
  text-decoration: underline;
  text-decoration-color: #FF6F00;
  text-underline-offset: 3px;
}
/* ==================== DESTAQUE LARANJA ==================== */
.destaque-laranja {
  color: #FF6F00;
  font-weight: 700;
}
/* ==================== FUNDO LARANJA ==================== */
.fundo-laranja {
  background-color: #FF6F00;
  color: #ffffff;
  padding: 2px 6px;
  border-radius: 4px;
  display: inline;
  line-height: 1.6;
}
/* ==================== SEÇÕES ==================== */
section {
  margin-bottom: 22px;
}

section:last-child {
  margin-bottom: 0;
}

section > *:last-child {
  margin-bottom: 0 !important;
}

section > p:last-child {
  margin-bottom: 0 !important;
}
/* ==================== FAIXA TOPO ==================== */
.faixa-topo {
  background-color: #1a1a1a;
  padding: 12px 20px;
  text-align: center;
}
.faixa-topo p {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0;
}
.faixa-topo .dot {
  color: #FF6F00;
}
/* ==================== TOPO ==================== */
.topo {
  text-align: center;
  margin-bottom: 32px;
}
.topo .tag {
  font-size: 14px;
  color: #666;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.topo h1 {
  font-size: 24px;
}
.topo .subheadline {
  font-size: 16px;
  color: #333;
  margin-bottom: 8px;
}

.topo .subheadline:last-child {
  margin-bottom: 0;
}
/* ==================== CARD INFO ==================== */
.card-info {
  text-align: center;
  background-color: #F5F0E8;
  padding: 6px 12px;
  border-radius: 8px;
  margin: 10px 0;
}
.card-info .horas {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}
.card-info .data {
  font-size: 14px;
  color: #666;
}
/* ==================== IMAGEM PLACEHOLDER ==================== */
.img-placeholder {
  background-color: #f0f0f0;
  border: 2px dashed #ccc;
  border-radius: 12px;
  width: 100%;
  margin: 24px 0;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #999;
  font-size: 14px;
  padding: 20px;
}
/* ==================== CARROSSEL ==================== */
.carrossel {
  width: 100%;
  margin: 32px 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  display: flex;
  gap: 12px;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
}
.carrossel::-webkit-scrollbar {
  display: none;
}
.carrossel-item {
  flex: 0 0 calc(100% - 40px);
  aspect-ratio: 4 / 5;
  background-color: #f0f0f0;
  border-radius: 12px;
  scroll-snap-align: center;
  overflow: hidden;
}
.carrossel-item:first-child {
  margin-left: 0;
}
.carrossel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* ==================== LISTA SIMPLES ==================== */
ul.lista-simples {
  list-style: none;
  margin-bottom: 16px;
}
ul.lista-simples li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
}
ul.lista-simples li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1a1a1a;
  font-weight: bold;
}
/* ==================== LISTA CHECK ==================== */
ul.lista-check {
  list-style: none;
  margin-bottom: 16px;
}
ul.lista-check li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 16px;
}
ul.lista-check li::before {
  content: "✅";
  position: absolute;
  left: 0;
}
/* ==================== LISTA BULLET OPÇÕES ==================== */
ul.lista-opcoes {
  list-style: none;
  margin-bottom: 16px;
}
ul.lista-opcoes li {
  margin-bottom: 20px;
  padding-left: 20px;
  border-left: 3px solid #e5e5e5;
}
ul.lista-opcoes li strong {
  display: block;
  margin-bottom: 4px;
}
/* ==================== CARD OFERTA ==================== */
.card-oferta {
  max-width: 500px;
  margin: 32px auto;
  padding: 40px 32px;
  background: #1a1a1a;
  border-radius: 20px;
  border: 1px solid rgba(238, 231, 215, 0.15);
  text-align: center;
}

/* Badge no topo */
.card-oferta .badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #FF6F00 0%, #FF9500 50%, #FFB800 100%);
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  margin: -40px -32px 24px;
  border-radius: 20px 20px 0 0;
}

.card-oferta .badge-tag {
  background: #1a1a1a;
  color: #EEE7D7;
  font-size: 14px;
  font-weight: 900;
  padding: 4px 8px;
  border-radius: 8px;
}

/* Título gradiente */
.card-oferta .titulo {
  font-size: clamp(28px, 7vw, 36px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 8px;
}

.card-oferta .titulo-white {
  color: #EEE7D7;
}

.card-oferta .titulo-gradient {
  background: linear-gradient(135deg, #FF6F00 0%, #FF9500 50%, #FFB800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Divisor */
.card-oferta .divider {
  height: 1px;
  background: rgba(238, 231, 215, 0.25);
  margin: 16px 32px;
}

/* Lista */
.card-oferta ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  padding: 0 16px;
}

.card-oferta ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 0;
  font-size: 16px;
  color: #EEE7D7;
}

.card-oferta ul li:last-child {
  color: #FF6F00;
  font-weight: 700;
}

.card-oferta .check {
  color: #FF6F00;
  font-weight: 700;
  font-size: 14px;
}

/* Preço */
.card-oferta .preco-label {
  font-size: 14px;
  color: rgba(238, 231, 215, 0.6);
  margin-bottom: 4px;
}

.card-oferta .preco-parcelado {
  font-size: clamp(48px, 12vw, 80px);
  font-weight: 900;
  color: #FF6F00;
  line-height: 1;
  margin-bottom: 8px;
}

.card-oferta .preco-avista {
  font-size: 14px;
  color: rgba(238, 231, 215, 0.6);
  margin-bottom: 24px;
}

.card-oferta .urgencia {
  font-size: 14px;
  color: #FF6F00;
  font-weight: 500;
  margin-top: 16px;
}
/* ==================== BOTÃO CTA ==================== */
.btn-cta {
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  padding: 18px 24px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 50%, #15803d 100%);
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 47px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.5);
  position: relative;
  overflow: hidden;
}
.btn-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}
.btn-cta:hover::before {
  left: 100%;
}
.btn-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 30px rgba(34, 197, 94, 0.7);
  filter: brightness(1.1);
}
/* ==================== ASSINATURA ==================== */
.assinatura {
  margin: 32px 0;
}
.assinatura-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.assinatura-foto {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #e0e0e0;
  overflow: hidden;
  flex-shrink: 0;
}
.assinatura-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.assinatura-info .nome {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 2px;
}
.assinatura-info .cargo {
  font-size: 14px;
  color: #666;
}
/* ==================== FAQ ACORDEÃO ==================== */
.faq-item {
  margin-bottom: 8px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
}
.faq-pergunta {
  width: 100%;
  padding: 16px;
  background-color: #fff;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-pergunta:hover {
  background-color: #f5f5f5;
}
.faq-pergunta::after {
  content: "+";
  font-size: 20px;
  font-weight: 700;
  color: #FF6F00;
  transition: transform 0.2s;
}
.faq-item.open .faq-pergunta::after {
  content: "−";
}
.faq-resposta {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-resposta-inner {
  padding: 0 16px 16px 16px;
  color: #444;
}
.faq-item.open .faq-resposta {
  max-height: 500px;
}
/* ==================== FECHAMENTO ==================== */
.fechamento {
  padding: 24px 0;
}
.fechamento .destaque {
  font-size: 18px;
  font-weight: 700;
  margin: 20px 0;
  color: #FF6F00;
}
/* ==================== RESPONSIVO TABLET+ ==================== */
@media (min-width: 768px) {
  .container {
    max-width: 640px;
    padding: 40px 32px;
  }
  body {
    font-size: 18px;
  }
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 24px;
  }
  .topo h1 {
    font-size: 34px;
  }
  .carrossel-item {
    flex: 0 0 calc(100% - 64px);
  }
}
