@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&display=swap');

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
/* Rolagem suave no site inteiro */
html {
  scroll-behavior: smooth;
}


body {
  background: #fcfcfc;
  color: #333;
}

/* ================= HEADER ================= */
.topbar {
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.topbar-container {
  max-width: 440px;
  margin: 0 auto;
  padding: 12px 16px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #ff7a1a; /* cor do tema */
}



.topbar-button {
  background: #ff7a1a;
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(255,122,26,0.3);
}

/* ================= HERO ================= */
.hero {
  padding: 24px 0 35px;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #ffeede 100%
  );
}


.hero-container {
  max-width: 440px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

.hero-image img {
  width: 210px;
  height: 210px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

/* BADGES */
.hero-badges {
  margin: 18px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}

.badge {
  background: #ffeede;
  padding: 6px 12px;
  font-size: 0.72rem;
  border-radius: 999px;
  color: #ff7a1a;
  font-weight: 600;
}

.badge-alerta {
  background: #ffeede;
  color: #ff7a1a;
}

/* TEXTOS */
.hero-text h1 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero-text h1 span {
  color: #ff7a1a;
}

.hero-text p {
  font-size: .9rem;
  margin-bottom: 8px;
  color: #555;
}

/* BOTÕES */
.btn-principal {
  display: block;
  margin-top: 18px;
  background: #ff7a1a;
  color: #fff;
  padding: 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: .9rem;
}

.btn-secundario {
  display: block;
  margin-top: 10px;
  border: 2px solid #ff7a1a;
  color: #ff7a1a;
  padding: 10px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: .85rem;
}
.cta-hero {
  display: block;
  width: 100%;
  background: #ff7a1a;
  color: #fff;
  padding: 16px 20px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 22px;
  box-shadow: 0 8px 18px rgba(255, 122, 26, 0.25);
  transition: 0.2s ease;
}

.cta-hero:hover {
  background: #ff8a34;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(255, 122, 26, 0.35);
}
/* ================== SEÇÃO APRESENTAÇÃO ================== */
.about {
  background: linear-gradient(180deg, #ffffff 0%, #fff7f0 100%);
  padding: 28px 0;
  margin-top: px;
  border-radius: 0;         /* remove o arredondado */
}


.about-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;

  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ================== DETALHES DAS EDIÇÕES ================== */
.modelos-detalhe {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* BLOCO DE CADA MODELO */
.modelo-bloco {
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 14px 18px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
}

/* TAG DO MODELO */
.tag-modelo {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.tag-miami {
  background: #ffe7cf;
  color: #ff7a1a;
}

.tag-natal {
  background: #e4f3eb;
  color: #1f6f4a;
}

/* TEXTOS */
.modelo-titulo {
  font-size: 1.2rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 8px;
}

.modelo-texto {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 8px;
}

/* CARROSSEL (agora usando translateX em vez de scroll) */
.carrossel {
  margin-top: 12px;
  overflow: hidden;              /* esconde o que passar da borda */
}

.carrossel-track {
  display: flex;
  transition: transform 0.5s ease; /* animação suave na troca */
}

.carrossel-item {
  flex: 0 0 100%;   /* cada slide ocupa 100% da largura */
  max-width: 100%;
}

.carrossel-item img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  display: block;
}
/* ================== O QUE VEM EM CADA KIT ================== */
.kit {
  background: #fcfcfc;
  padding: 28px 0 20px;
}

.kit-container {
  max-width: 440px;
  margin: 0 auto;
  padding: 0 16px;
}

.kit-title {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 16px;
}

.kit-subtitle {
  text-align: center;
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 18px;
}

.kit-subtitle strong {
  color: #ff7a1a;
}

/* LISTA DAS PEÇAS */
.kit-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.kit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border-radius: 14px;
  padding: 6px 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.03);
  border: 1px solid #ffe6cf;
}

.kit-img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
}

.kit-textos {
  display: flex;
  align-items: center;
  gap: 6px;
}

.kit-qtd {
  font-weight: 800;
  color: #ff7a1a;
  font-size: 0.9rem;
}

.kit-nome {
  font-size: 0.9rem;
  color: #444;
}

/* DESKTOP */
@media (min-width: 880px) {
  .kit-container {
    max-width: 700px;
  }

  .kit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}
.kit-small {
  text-align: center;
  font-size: 0.78rem;
  color: #777;
  margin-bottom: 10px;
}
/* ================== OFERTA / COMPRA ================== */
.ofertas {
  background: #fff7f0;  /* esse pêssego claro que você já usa */
  padding: 32px 0 40px;
  margin-top: 10px;      /* afasta um pouquinho da trust */
  border-radius: 22px 22px 0 0;  /* topo arredondado, parece um novo bloco */
}


.ofertas-container {
  max-width: 440px;
  margin: 0 auto;
  padding: 0 16px;
}

.ofertas-title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 6px;
}

.ofertas-subtitle {
  text-align: center;
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 18px;
}

.ofertas-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.oferta-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 14px 14px 18px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
  border: 1px solid #ffe2c7;
}

.oferta-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.oferta-badge-miami {
  background: #ffe7cf;
  color: #ff7a1a;
}

.oferta-badge-natal {
  background: #e4f3eb;
  color: #1f6f4a;
}

.oferta-produto {
  margin-bottom: 10px;
}

.oferta-img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  display: block;
}

.oferta-nome {
  font-size: 1.05rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 6px;
}

.oferta-resumo {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 10px;
}

/* PREÇOS */
.oferta-precos {
  background: #fff7ef;
  border-radius: 12px;
  padding: 8px 10px;
  margin-bottom: 10px;
  border: 1px dashed #ffb47a;
}

.oferta-preco-antigo {
  display: block;
  font-size: 0.8rem;
  color: #999;
  text-decoration: line-through;
}

.oferta-preco-atual {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: #ff7a1a;
}

.oferta-preco-parc {
  display: block;
  font-size: 0.8rem;
  color: #444;
}

/* LISTA */
.oferta-itens {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
  font-size: 0.8rem;
  color: #555;
}

.oferta-itens li + li {
  margin-top: 35px;
}

/* BOTÃO DE COMPRA */
.btn-comprar {
  display: block;
  width: 100%;
  text-align: center;
  background: #ff7a1a;
  color: #fff;
  padding: 12px 14px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 6px;
  box-shadow: 0 8px 18px rgba(255, 122, 26, 0.25);
  transition: 0.2s ease;
}

.btn-comprar:hover {
  background: #ff8a34;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(255, 122, 26, 0.35);
}

.oferta-aviso {
  font-size: 0.75rem;
  color: #777;
  text-align: center;
}

/* DESKTOP */
@media (min-width: 880px) {
  .ofertas-container {
    max-width: 900px;
  }

  .ofertas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
/* ================== BLOCO DE CONFIANÇA – CARROSSEL (TEMA LARANJA) ================== */
.trust {
  background: #ffffff;        /* bloco de confiança branco */
  padding: 12px 0 32px;       /* menos altura, mais compacto */
  border-bottom: 1px solid #f3f3f3;  /* linha suave separando */
}


.trust-container {
  max-width: 440px;
  margin: 0 auto;
  padding: 0 16px;
}

.trust-heading {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 14px;
}

/* slider horizontal */
.trust-slider {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.trust-slider::-webkit-scrollbar {
  display: none;
}

.trust-track {
  display: flex;
  gap: 10px;
  scroll-snap-type: x mandatory;
}

.trust-card {
  scroll-snap-align: start;
  flex: 0 0 100%;
  max-width: 100%;
  background: lch(100% 0.01 296.81);
  border-radius: 16px;
  padding: 14px 16px;

  border: 1px solid #ffd9bd; /* laranja clarinho */
  box-shadow: 0 6px 16px rgba(255, 122, 26, 0.15);
  
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #ffe7cf;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}


.trust-texts {
  display: flex;
  flex-direction: column;
}

.trust-title {
  font-size: 0.86rem;
  font-weight: 700;
  color: #222;
}

.trust-sub {
  font-size: 0.75rem;
  color: #666;
}

/* DESKTOP */
@media (min-width: 880px) {
  .trust-container {
    max-width: 900px;
  }

  .trust-track {
    gap: 18px;
  }

  .trust-card {
    flex: 0 0 23%;
    max-width: 23%;
  }
}
/* ================== DEPOIMENTOS ================== */
.reviews {
  background: #ffffff;
  padding: 32px 0 40px;
}

.reviews-container {
  max-width: 440px;
  margin: 0 auto;
  padding: 0 16px;
}

.reviews-title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 6px;
}

.reviews-subtitle {
  text-align: center;
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 18px;
}

/* slider horizontal */
.reviews-slider {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.reviews-slider::-webkit-scrollbar {
  display: none;
}

.reviews-track {
  display: flex;
  gap: 12px;
  scroll-snap-type: x mandatory;
}

.review-card {
  scroll-snap-align: center;
  flex: 0 0 100%;
  max-width: 100%;
  background: #ffffff;
  border-radius: 18px;
  padding: 14px 14px 16px;
  border: 1px solid #ffe2c7;
  box-shadow: 0 6px 16px rgba(0,0,0,0.04);
}

/* CABEÇALHO DO DEPOIMENTO */
.review-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.review-info {
  display: flex;
  flex-direction: column;
}

.review-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #222;
}

.review-tag {
  font-size: 0.72rem;
  color: #888;
}

/* ESTRELAS */
.review-stars {
  font-size: 0.9rem;
  color: #ffb400;
  margin-bottom: 8px;
}

/* TEXTO */
.review-text {
  font-size: 0.86rem;
  color: #555;
  line-height: 1.55;
  margin-bottom: 8px;
}

.review-detail {
  font-size: 0.72rem;
  color: #999;
}

/* FOTO DO PRODUTO NO DEPOIMENTO */
.review-photo {
  margin-bottom: 8px;
  margin-top: 6px;
}

.review-photo img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}


/* DESKTOP: 3 LADO A LADO */
@media (min-width: 880px) {
  .reviews-container {
    max-width: 900px;
  }

  .reviews-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .review-card {
    flex: none;
  }
}
/* ================== FAQ ================== */
.faq {
  background: #fff7f0;
  padding: 32px 0 40px;
}

.faq-container {
  max-width: 440px;
  margin: 0 auto;
  padding: 0 16px;
}

.faq-title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 6px;
}

.faq-subtitle {
  text-align: center;
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 18px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* BOTÃO DA PERGUNTA */
.faq-question {
  width: 100%;
  border: 1px solid #ff7a1a;
  background: #ffffff;
  border-radius: 14px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;

  font-size: 0.9rem;
  font-weight: 600;
  color: #222;
}

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid #ff7a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: #ff7a1a;
}

/* ESTADO ABERTO */
.faq-item.active .faq-question {
  background: #ff7a1a;
  color: #ffffff;
}

.faq-item.active .faq-icon {
  background: #ffffff;
  color: #ff7a1a;
  transform: rotate(45deg); /* vira o + em um x */
}

/* RESPOSTA (ANIMAÇÃO) */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, opacity 0.2s ease;
  opacity: 0;
  padding: 0 2px;
}

.faq-answer p {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.55;
  margin-top: 6px;
  padding: 0 2px 4px;
}

/* quando ativo */
.faq-item.active .faq-answer {
  opacity: 1;
  margin-top: 4px;
}

/* DESKTOP */
@media (min-width: 880px) {
  .faq-container {
    max-width: 700px;
  }
}
/* ================== FOOTER (LARANJA CLARINHO) ================== */
.footer {
  background: #ffe7cf; /* laranja clarinho premium */
  color: #444;
  padding: 32px 0 0px;
  border-top: 1px solid #ffcea1;
}

.footer-container {
  max-width: 440px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-logo {
  font-size: 1rem;
  font-weight: 800;
  color: #ff7a1a;
  margin-bottom: 4px;
}

.footer-text {
  font-size: 0.82rem;
  color: #5c5045;
  line-height: 1.55;
}

.footer-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ff7a1a;
  margin-bottom: 4px;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.82rem;
}

.footer-links li + li {
  margin-top: 3px;
}

.footer-links a {
  text-decoration: none;
  color: #444;
  opacity: 0.9;
}

.footer-links a:hover {
  color: #ff7a1a;
}

/* CONTATO */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.82rem;
  color: #444;
}

.footer-contact li + li {
  margin-top: 4px;
}

.footer-contact span {
  font-weight: 700;
  color: #ff7a1a;
}

/* RODAPÉ FINAL */
.footer-bottom {
  max-width: 440px;
  margin: 18px auto 0;
  padding: 12px 16px 0 16px;  /* sem padding embaixo */
  border-top: 1px solid #ffcea1;
}

.footer-legal {
  font-size: 0.72rem;
  color: #555;
  line-height: 1.4;
}

.footer-obs {
  margin-top: 4px;
}

/* DESKTOP */
@media (min-width: 880px) {
  .footer-container {
    max-width: 900px;
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
  }

  .footer-bottom {
    max-width: 900px;
  }
}
/* BLOCO LARANJA DENTRO DO FOOTER */
.footer-highlight {
  margin-top: 14px;
  background: #ff7a1a;
  padding: 16px 18px calc(16px + env(safe-area-inset-bottom));
  text-align: center;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-highlight strong {
  font-weight: 800;
}

/* garante que o footer encosta no final da página sem espaço extra */
.footer {
  padding-bottom: 0;
}

/* BOTÃO FLUTUANTE PREMIUM + PULSANTE */
.botao-flutuante {
  position: fixed;
  bottom: calc(16px + env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  background: #ff8229;
  color: #fff;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(255, 122, 26, 0.45);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.02em;
  transition: 0.25s ease;

  white-space: nowrap;  /* impede quebrar linha */
  min-width: 240px;     /* largura ideal */
  justify-content: center;

  animation: pulse 1.8s infinite ease-in-out; /* 🔥 pulsando */
}

/* ANIMAÇÃO PULSANTE */
@keyframes pulse {
  0% {
    transform: translateX(-50%) scale(1);
    box-shadow: 0 0 0 rgba(255,122,26,0.5);
  }
  50% {
    transform: translateX(-50%) scale(1.06);
    box-shadow: 0 0 18px rgba(255,122,26,0.6);
  }
  100% {
    transform: translateX(-50%) scale(1);
    box-shadow: 0 0 0 rgba(255,122,26,0.5);
  }
}
/* ===== BLOCOS DE GIFS DAS EDIÇÕES ===== */
.gif-bloco {
  max-width: 440px;
  margin: 28px auto;
  padding: 0 16px;
}

.gif-titulo {
  font-size: 1rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 10px;
  text-align: center;
}

.gif-card {
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.gif-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 20px;
}
/* CARROSSEL AUTO-SCROLL DEPOIMENTOS */
.reviews-wrapper {
  overflow-x: hidden;
  position: relative;
}

.reviews-track {
  display: flex;
  gap: 20px;
  scroll-behavior: smooth;
  transition: transform 0.4s ease;
}
/* =============== SEÇÃO GARANTIA =============== */
.garantia {
  background: #fff7f0; /* laranja bem clarinho */
  padding: 32px 0 36px;
  margin-top: 24px;
}

.garantia-container {
  max-width: 440px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

.garantia-titulo {
  font-size: 1.25rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 8px;
}

.garantia-subtitulo {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 18px;
}

.garantia-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.garantia-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 14px 14px 16px;
  text-align: left;
  box-shadow: 0 6px 16px rgba(0,0,0,0.04);
  border: 1px solid #ffe0c5;
}

.garantia-icone {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.garantia-card-titulo {
  font-size: 0.95rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 4px;
}

.garantia-card-texto {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.5;
}

.garantia-reforco {
  margin-top: 18px;
  font-size: 0.85rem;
  color: #444;
  line-height: 1.5;
}

/* desktop */
@media (min-width: 880px) {
  .garantia-grid {
    flex-direction: row;
  }
  .garantia-card {
    flex: 1;
  }
}

/* ============================================
   ANIMAÇÃO FLUTUAR DA LA BOULE (FINAL)
============================================ */

.floating {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}


