body {
  background-color: #feefd6;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}
.row {
  margin-right: 0;
  margin-left: 0;
}
.bg_dp .logo-central {
  position: absolute;
  height: 100px;
  width: 100px;
  background-image: url(../images/logo_central_topo.png);
}
.bg_dp {
  position: relative;
  width: 200vw;
  left: 50%;
  height: 460px;
  background-image: url(../images/BG_TOPO_SITE.jpg);
  background-size: inherit;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateX(-50%);
  border-radius: 0 0 50% 50%;
  overflow: hidden;
}
.maskDP {
  position: relative;
  width: 100vw;
  overflow: hidden;
  left: 50%;
  transform: translateX(-50%);
}
.logotipo_dp {
  position: absolute;
  background-image: url(../images/logo_central_topo.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 460px;
  width: 430px;
  max-width: calc(100% - 30px);
  left: 50%;
  z-index: 1;
  top: 0;
  transform: translate(-50%);
}
.banner-topo {
  height: 490px;
  padding: 0;
}
.titulo-centro {
  display: flex;
  min-height: 110px;
  background-image: url(../images/titulo_01.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.titulo-leitura {
  display: flex;
  min-height: 110px;
  background-image: url(../images/titulo_03.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
.titulo_01 {
  position: relative;
  height: 120px;
  width: 100%;
}
.cards-iniciais {
  margin-top: -40px;
  z-index: 1;
  position: relative;
}
.card-01 {
  position: relative;
  background-color: #fff9ef;
  padding: 10px;
  border-radius: 15px;
  border: solid 1px #f7c36d;
  text-align: center;
  font-size: 13px;
}
.card-01 .titulo {
  font-family: 'Janda Manatee Solid';
  text-transform: uppercase;
  color: #95490f;
}
.broche {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #f9d98a, #c87a2f 60%, #7a3f0a);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4), inset 1px 1px 3px rgba(255, 255, 220, 0.6), inset -2px -2px 4px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
  margin-bottom: 10px;
}
.section-livros {
  position: relative;
  padding: 60px 0;
  background-color: #ffe09e;
  background-image: url(../images/fundo-de-estrela-amarelo-de-desenho-plano.jpg);
  background-size: 140%;
  border-radius: 50% / 40px;
}
.section-livros .titulo-section {
  text-align: center;
  margin-top: -50px;
  background-image: url(../images/titulo_02.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 130px;
}
.carousel-livros-wrapper {
  position: relative;
  overflow: hidden;
  padding: 10px 0 20px;
}
.carousel-livros-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  cursor: grab;
}
.livro-slide {
  flex: 0 0 calc(100% / 3);
  box-sizing: border-box;
  display: flex;
  align-items: stretch;
}
.livro-card {
  background: #fff9ef;
  border: 1px solid #f7c36d;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  padding: 20px 15px 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}
.livro-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(149, 73, 15, 0.18);
}
.livro-card img {
  width: 100%;
  max-width: 220px;
  height: 330px;
  object-fit: cover;
  border-radius: 4px 10px 10px 4px;
  box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.25), 3px 3px 0 rgba(0, 0, 0, 0.1);
  margin: 0 auto 15px;
  display: block;
}
.livro-titulo {
  font-family: Janda Manatee Solid;
  font-weight: bold;
  color: #95490f;
  text-transform: uppercase;
  line-height: 1.3;
  letter-spacing: 3px;
}
.livro-desc {
  font-size: 13px;
  color: #7a5535;
  line-height: 1.5;
}
.carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}
.btn-nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #c87a2f;
  background: #fff9ef;
  color: #c87a2f;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.btn-nav:hover {
  background: #c87a2f;
  color: #fff;
}
.btn-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.carousel-dots {
  display: flex;
  gap: 8px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f7c36d;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.dot.active {
  background: #c87a2f;
  transform: scale(1.3);
}
@media (max-width: 767px) {
  .livro-slide {
    flex: 0 0 100%;
    padding: 0 10px;
    align-items: center;
    justify-content: center;
  }
  .livros-grupo {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
  }
  .livro-card {
    flex-direction: row;
    text-align: left;
    padding: 12px;
    gap: 14px;
    height: auto;
  }
  .livro-card img {
    width: 70px;
    max-width: 70px;
    height: 105px;
    flex-shrink: 0;
    margin: 0;
    box-shadow: -4px 4px 10px rgba(0, 0, 0, 0.25), 3px 3px 0 rgba(0, 0, 0, 0.12);
  }
  .livro-info {
    flex: 1;
    min-width: 0;
  }
  .livro-titulo {
    font-size: 13px;
    margin-bottom: 5px;
  }
  .livro-desc {
    font-size: 12px;
  }
}
@media (min-width: 768px) {
  .livros-grupo {
    display: contents;
  }
}
/* ==============================================================================  */
/* ==============================================================================  */
/* ==============================================================================  */
/* ==============================================================================  */
/* ============================================================================== 
/* ===== SEÇÃO PRINCIPAL ===== */
.oferta {
  background: #fff8e7;
  padding: 0px 20px 50px;
}
.oferta-container {
  max-width: 1100px;
  margin: 0 auto;
  background: #fffdf5;
  border: 2px solid #f0e0b0;
  border-radius: 24px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
}
/* Badge circular verde - canto superior direito */
.badge-livros {
  position: absolute;
  top: -30px;
  right: 5px;
  background: linear-gradient(to bottom, #8ac100 0%, #425d00 99%);
  color: white;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  z-index: 10;
  box-shadow: 0px 0px 3px #1b3f00;
  rotate: -30deg;
}
.badge-livros strong {
  font-size: 25px;
  display: block;
}
/* ===== TEXTO ESQUERDO ===== */
.oferta-texto {
  max-width: 480px;
  flex: 1;
}
.tag {
  display: inline-block;
  background: #fff3e0;
  color: #e65100;
  border: 2px solid #ffb74d;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}
.oferta-texto h2 {
  font-size: 35px;
  font-weight: 900;
  color: #3d1a00;
  line-height: 1.15;
  margin-bottom: 22px;
  font-family: 'Janda Manatee Solid';
  letter-spacing: 1px;
  text-transform: uppercase;
}
/* Bloco preço */
.preco-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.preco-bloco {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.preco-de {
  font-size: 22px;
  color: #d42f2f;
  text-decoration: line-through;
  margin-bottom: 2px;
}
.preco-label {
  font-size: 14px;
  color: #555;
  margin-bottom: 2px;
}
.preco-valor {
  font-size: 72px;
  font-weight: 900;
  color: #ff5500;
  line-height: 1;
}
.preco-valor span {
  font-size: 32px;
  vertical-align: top;
  margin-top: 14px;
  display: inline-block;
}
.preco-destaque i {
  position: absolute;
  font-size: 35px;
  color: #f03900;
}
.preco-destaque {
  border: 2px dashed #ffb74d;
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 16px;
  color: #555;
  width: fit-content;
  max-width: 302px;
  line-height: 1.5;
  text-align: center;
}
.preco-destaque strong {
  color: #e65100;
  font-weight: 700;
}
/* Alerta tempo limitado */
.tempo-limitado {
  font-size: 13px;
  color: #555;
  margin-bottom: 5px;
  text-align: center;
}
.tempo-limitado strong {
  color: #e65100;
}
/* Botão */
.btn-comprar i {
  display: none;
  position: absolute;
  font-size: 80px;
  left: 34px;
  top: 8px;
}
.btn-comprar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(180deg, #ff8c00, #e65100);
  color: white;
  border: solid 1px #e95700;
  padding: 18px 0px;
  text-shadow: 1px 3px #862a00;
  font-size: 21px;
  font-weight: 100;
  border-radius: 14px;
  width: 100%;
  line-height: 2;
  text-align: center;
  margin-bottom: 6px;
  gap: 4px;
  overflow: hidden;
  z-index: 0;
  font-family: 'Janda Manatee Solid';
  letter-spacing: 1px;
  text-transform: uppercase;
  max-width: 470px;
  left: 50%;
  transform: translateX(-50%);
}
/* Camada do hover por cima — transiciona opacity */
.btn-comprar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #ffa600, #e65100);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.25s ease, opacity 0.25s ease;
  z-index: -1;
}
.btn-comprar:hover::after {
  opacity: 1;
}
.btn-comprar:hover {
  transform: translateY(-2px), translateX(-50%);
  box-shadow: inset 1px 1px 0px 0px #ffe000, 0 8px 24px rgba(230, 104, 0, 0.55);
  left: 50%;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.btn-comprar .btn-sub {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.9;
  letter-spacing: 0;
  font-family: sans-serif;
  text-transform: uppercase;
}
/* ===== ÍCONES INFERIORES ===== */
.cards-info {
  background: #fffdf5;
  border: 1.5px solid #f0e0b0;
  border-radius: 16px;
  padding: 24px 30px;
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.card-info {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
  text-align: center;
}
.card-info-icon {
  position: relative;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 16px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-size: 20px;
  flex-shrink: 0;
  align-content: space-around;
  flex-wrap: nowrap;
  flex-direction: column-reverse;
}
.icon-green {
  background: linear-gradient(to bottom, #9ecb2d 0%, #6b9600 99%);
}
.icon-blue {
  background: linear-gradient(to bottom, #2d84cb 0%, #0b53a5 99%);
}
.icon-pink {
  background: linear-gradient(to bottom, #c62828 0%, #ac1616 99%);
}
.card-info-texto h4 {
  font-size: 13px;
  font-weight: 800;
  color: #222;
  margin-bottom: 3px;
  text-transform: uppercase;
}
.card-info-texto h4.azul {
  color: #1565c0;
}
.card-info-texto h4.rosa {
  color: #9e1616;
}
.card-info-texto p {
  font-size: 12px;
  color: #555;
  line-height: 1.5;
}
.divider-v {
  width: 1px;
  background: #e8d8b0;
  align-self: stretch;
}
/* ===== SELOS RODAPÉ ===== */
.selos {
  background: #f5f5f0;
  border: 1.5px solid #e0ddd0;
  border-radius: 16px;
  padding: 18px 30px;
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.selo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: center;
}
.selo-icon {
  font-size: 22px;
  color: #2e7d32;
}
.selo-texto h4 {
  font-size: 12px;
  font-weight: 800;
  color: #222;
  text-transform: uppercase;
}
.selo-texto p {
  font-size: 11px;
  color: #666;
}
.divider-selo {
  width: 1px;
  height: 40px;
  background: #ccc;
}
/* ===== IMAGEM DIREITA ===== */
.oferta-imagem {
  flex-shrink: 0;
  position: absolute;
  width: 440px;
  height: 420px;
  right: 0px;
  background-image: url(../images/3livrinhos.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (max-width: 980px) {
  .badge-livros {
    display: none;
  }
  .oferta-container {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
  .oferta-texto {
    max-width: 100%;
  }
  .preco-wrapper {
    justify-content: center;
  }
  .cards-info {
    flex-direction: column;
  }
  .divider-v {
    width: 100%;
    height: 1px;
  }
  .selos {
    flex-direction: column;
    align-items: flex-start;
  }
  .divider-selo {
    display: none;
  }
}
@media (max-width: 425px) {
  .oferta-imagem {
    height: 230px !important;
    margin-top: -40px !important;
    position: relative;
  }
}
@media (max-width: 980px) {
  .oferta-imagem {
    height: 430px;
    width: 100%;
    background-image: url(../images/3livrinhos_prateleira.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: -40px;
    position: relative;
  }
}
.dupla-leitura {
  background-image: url(../images/bg_starts.png);
  margin-top: -40px;
}
.form-vendas {
  background-color: #F97316;
  padding: 24px 16px;
  font-family: 'Segoe UI', Arial, sans-serif;
  box-sizing: border-box;
  background-image: url(../images/bg_form_vendas.jpg);
  background-size: 300px;
}
.form-vendas *,
.form-vendas *::before,
.form-vendas *::after {
  box-sizing: border-box;
}
.form-vendas .fv-inner {
  max-width: 1100px;
  margin: 0 auto;
  background: #FFF8ED;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
}
.form-vendas .fv-left {
  flex: 1;
  background: #FFF3DC;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.form-vendas .fv-hero-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
}
.form-vendas .fv-features {
  display: flex;
  gap: 0;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  background: #fff;
  border-radius: 16px;
  padding: 16px 12px;
}
.form-vendas .fv-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  text-align: center;
  padding: 0 8px;
}
.form-vendas .fv-feature + .fv-feature {
  border-left: 1px solid #EEE;
}
.form-vendas .fv-feature p {
  margin: 0;
  font-size: 12px;
  color: #555;
  line-height: 1.4;
}
.form-vendas .fv-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-vendas .fv-feature-icon svg {
  width: 22px;
  height: 22px;
}
.form-vendas .fv-feature-icon.pink {
  background: #F9607A;
}
.form-vendas .fv-feature-icon.blue {
  background: #3EB3D8;
}
.form-vendas .fv-feature-icon.green {
  background: #5DC45D;
}
.form-vendas .fv-right {
  flex: 1;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-vendas .fv-right h2 {
  margin: 0 0 2px;
  font-size: 28px;
  font-weight: 900;
  color: #E85D04;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
  font-family: 'Janda Manatee Solid', Arial, sans-serif;
}
.form-vendas .fv-right p.fv-subtitle {
  margin: 0 0 8px;
  font-size: 14px;
  color: #555;
}
.form-vendas .fv-field {
  position: relative;
  display: flex;
  align-items: center;
}
.form-vendas .fv-field svg {
  position: absolute;
  left: 14px;
  width: 18px;
  height: 18px;
  color: #999;
  pointer-events: none;
  flex-shrink: 0;
}
.form-vendas .fv-field input {
  width: 100%;
  padding: 12px 14px 12px 42px;
  border: 1.5px solid #E0D5C5;
  border-radius: 10px;
  background: #fff;
  font-size: 14px;
  color: #333;
  outline: none;
  transition: border-color 0.2s;
}
.form-vendas .fv-field input::placeholder {
  color: #BBB;
}
.form-vendas .fv-field input:focus {
  border-color: #F97316;
}
.form-vendas .fv-row {
  display: flex;
  gap: 12px;
}
.form-vendas .fv-row .fv-field {
  flex: 1;
}
.form-vendas .fv-btn {
  margin-top: 4px;
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(180deg, #5DC45D 0%, #3D9E3D 100%);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: filter 0.2s, transform 0.1s;
  box-shadow: 0 4px 0 #2A7A2A;
}
.form-vendas .fv-btn:hover {
  filter: brightness(1.07);
}
.form-vendas .fv-btn:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #2A7A2A;
}
.form-vendas .fv-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.form-vendas .fv-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: #777;
}
.form-vendas .fv-secure svg {
  width: 16px;
  height: 16px;
  color: #5DC45D;
}
@media (max-width: 720px) {
  .form-vendas .fv-inner {
    flex-direction: column;
    border-radius: 20px;
  }
  .form-vendas .fv-left {
    padding: 24px 20px 20px;
  }
  .form-vendas .fv-right {
    padding: 24px 20px;
    gap: 12px;
  }
  .form-vendas .fv-right h2 {
    font-size: 22px;
    text-align: center;
  }
  .form-vendas .fv-right p.fv-subtitle {
    text-align: center;
  }
}
