/* assets/css/style.css */

/* ===== Base ===== */
:root{
  color-scheme: light;
  --page-bg: #FBF5EA;

  --pink:  #FFADAD;
  --peach: #FFD6A5;
  --yellow:#FDFFB6;
  --green: #CAFFBF;

  --ink: #2b2b2b;
  --muted: rgba(43,43,43,.72);
  --muted2: rgba(43,43,43,.55);
  --border: rgba(43,43,43,.10);

  --max: 980px;
  --radius: 20px;
  --shadow: 0 14px 34px rgba(0,0,0,.10);
  

  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

html {
  color-scheme: light;
}

*{ box-sizing: border-box; }
html, body{ height:100%; }
img{ max-width:100%; display:block; }

body{
  margin:0;
  font-family: var(--font);
  color: var(--ink);
  background-color: var(--page-bg);
  -webkit-font-smoothing: antialiased;
}

a{ color: inherit; }

.wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 14px 56px;
}

/* ===== TopHero faixa (header + hero), com formas leves ===== */
.topHero{
  position: relative;
  overflow: hidden;
  background-color: var(--page-bg);
}

/* formas suaves tipo template (sem imagem) */
.topHero::before,
.topHero::after{
  content:"";
  position:absolute;
  width: 680px;
  height: 680px;
  border-radius: 999px;
  opacity: .45;
  pointer-events: none;
}

.topHero::before{
  background: var(--peach);
  top: -320px;
  right: -320px;
}

.topHero::after{
  background: var(--pink);
  bottom: -360px;
  left: -360px;
}

.topHero{
  position: relative;
  overflow: hidden;
  background-color: var(--page-bg);
}

/* mantém os blobs */
.topHero::before,
.topHero::after{
  content:"";
  position:absolute;
  width: 680px;
  height: 680px;
  border-radius: 999px;
  opacity: .45;
  pointer-events: none;
}

.topHero::before{
  background: var(--peach);
  top: -320px;
  right: -320px;
}

.topHero::after{
  background: var(--pink);
  bottom: -360px;
  left: -360px;
}

/* NOVO: onda full-width no próprio topHero */
.topHero::marker{ content:""; } /* ignora (segurança) */

/* terceira forma com pseudo no wrap (full bleed usando calc) */
.topHero .wrap{
  position: relative;
  z-index: 1;
}

/* onda full width usando pseudo adicional via box-shadow hack */
.topHero .wrap::after{
  content:"";
  position:absolute;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  bottom: -12px;
  width: 120vw;         /* ultrapassa laterais */
  height: 160px;
  background: rgba(255,214,165,.35);
  border-radius: 999px;
  z-index: 0;
  pointer-events: none;
}

.topHero .wrap > *{
  position: relative;
  z-index: 1;
}


/* ===== Header ===== */
.header{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0 18px;
}

.brandLink{
  display:flex;
  align-items:center;
  gap: 12px;
  text-decoration:none;
  min-width: 240px;
}

.logoImg{
  width: 58px;
  height: 58px;
  border-radius: 18px;
  object-fit: cover;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(43,43,43,.08);
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
}

.brandText h1{
  margin:0;
  font-size: 18px;
  font-weight: 900;
}
.brandText p{
  margin: 4px 0 0;
  font-size: 12.5px;
  color: var(--muted);
}

/* menu desktop (some no mobile) */
.navDesktop{
  display:none;
  gap: 18px;
  align-items:center;
  justify-content:center;
  flex: 1;
}
.navLink{
  text-decoration:none;
  font-weight: 800;
  font-size: 13px;
  color: rgba(43,43,43,.72);
}
.navLink:hover{ text-decoration: underline; }

/* ===== Hero 2 colunas ===== */
.hero{
  display:grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 10px 0 24px;
}

.heroLeft{ padding: 8px 0; }

.heroTitle{
  margin: 14px 0 8px;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -.4px;
}

.heroText{
  margin:0;
  color: rgba(43,43,43,.72);
  font-size: 14px;
  line-height: 1.65;
}

.heroCtas{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

/* botões */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(43,43,43,.10);
  background: rgba(255,255,255,.85);
  text-decoration:none;
  font-weight: 900;
  font-size: 14px;
  box-shadow: 0 12px 26px rgba(0,0,0,.07);
  transition: transform .12s ease, filter .12s ease;
}
.btn:hover{ transform: translateY(-1px); filter:saturate(1.04); }

.btnPrimary{ background: var(--peach); }
.btnGreen{ background: var(--green); }
.btnGhost{ background: rgba(255,255,255,.85); }

.heroNote{
  margin: 14px 0 0;
  color: rgba(43,43,43,.72);
  font-size: 13px;
  line-height: 1.6;
}

/* Área visual direita */
.heroRight{
  position: relative;
  min-height: 260px;
}

.heroCard{
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(43,43,43,.10);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 14px;
  margin-top: 40px; 
}

.heroCardTop{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}

.socialFollow{
  margin-top: 18px;
}

.socialTitle{
  display:block;
  font-weight: 900;
  font-size: 14px;
  margin-bottom: 10px;
  color: rgba(43,43,43,.8);
}

.socialButtons{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}


.socialButtons .btn{
  padding: 11px 14px;
  font-size: 13.5px;
}


.pill{
  font-size: 12px;
  font-weight: 900;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(43,43,43,.10);
  background: rgba(255,255,255,.75);
}
.pill.pink{ background: rgba(255,173,173,.55); }
.pill.green{ background: rgba(202,255,191,.70); }

.heroCardMain{
  display:flex;
  gap: 12px;
  align-items:center;
  margin-top: 12px;
}

.fakeImg{
  width: 92px;
  height: 92px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,173,173,.55), transparent 45%),
    radial-gradient(circle at 70% 25%, rgba(202,255,191,.55), transparent 50%),
    radial-gradient(circle at 55% 80%, rgba(253,255,182,.55), transparent 50%),
    rgba(255,214,165,.35);
  border: 1px solid rgba(43,43,43,.08);
}

.heroCardText b{ display:block; font-size: 14px; }
.heroCardText span{ display:block; font-size: 12.5px; color: var(--muted); margin-top: 4px; }

.heroCardDesc{
  margin: 12px 0 0;
  color: rgba(43,43,43,.68);
  font-size: 13px;
  line-height: 1.55;
}

/* ===== Seção Produtos ===== */
.section{ margin-top: 18px; }

.sectionHead{
  display:flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
  padding: 0 2px;
}

.sectionHead h3{
  margin:0;
  font-size: 18px;
  font-weight: 900;
}

.sectionHead p{
  margin:0;
  color: rgba(43,43,43,.62);
  font-size: 13px;
}

.grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.card{
  border: 1px solid rgba(43,43,43,.10);
  border-radius: var(--radius);
  background: rgba(255,255,255,.88);
  overflow:hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,.08);
  transition: transform .12s ease, background .12s ease;
}

.card:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.95);
}

.thumb{
  height: 132px;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,173,173,.50), transparent 45%),
    radial-gradient(circle at 75% 25%, rgba(202,255,191,.55), transparent 48%),
    radial-gradient(circle at 55% 80%, rgba(253,255,182,.55), transparent 45%),
    rgba(255,214,165,.25);
  border-bottom: 1px solid rgba(43,43,43,.08);
}

.cardBody{ padding: 14px; }

.tagRow{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.tag{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(43,43,43,.10);
  background: rgba(255,255,255,.75);
  color: rgba(43,43,43,.70);
  font-weight: 800;
}

.tag.hot{
  background: rgba(255,173,173,.55);
  border-color: rgba(255,173,173,.65);
}

.tag.ml{
  background: rgba(255,214,165,.55);
  border-color: rgba(255,214,165,.70);
}

.tag.sp{
  background: rgba(202,255,191,.60);
  border-color: rgba(202,255,191,.75);
}

.card h4{
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 900;
}

.card p{
  margin: 0 0 12px;
  color: rgba(43,43,43,.65);
  font-size: 13.5px;
  line-height: 1.55;
}

.cardActions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btnIcon{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Ícone SEMPRE pequeno (desktop e mobile) */
.btnIcon .icon{
  width: 18px;
  height: 18px;
  min-width: 30px;
  min-height: 30px;
  flex: 0 0 18px;
  display: inline-block;
  vertical-align: middle;
  color: rgba(43,43,43,.85); /* cor do ícone */
}

/* só pra ficar mais “delicado” */
.socialButtons .btn{
  padding: 11px 14px;
}


.btnSmall{
  width: 100%;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(43,43,43,.10);
  background: rgba(255,255,255,.90);
  text-decoration:none;
  text-align:center;
  font-weight: 900;
  font-size: 14px;
  box-shadow: 0 12px 24px rgba(0,0,0,.07);
  transition: transform .12s ease, filter .12s ease, background .12s ease;
}
.btnSmall:hover{
  transform: translateY(-1px);
  filter: saturate(1.03);
  background: rgba(255,255,255,1);
}

.btnML{
  background: rgba(255,214,165,.70);
}
.btnSP{
  background: rgba(202,255,191,.75);
}

.note{
  margin-top: 14px;
  padding: 14px;
  border-radius: 16px;
  border: 1px dashed rgba(43,43,43,.18);
  color: rgba(43,43,43,.72);
  background: rgba(255,255,255,.70);
  font-size: 13px;
  line-height: 1.6;
}

/* ===== Footer full width ===== */
.footer{
  padding: 18px 14px;
  background-color: rgba(255,173,173,.55);
  color: rgba(43,43,43,.75);
  font-size: 13px;
  border-radius: 0;
  box-shadow: none;
}

.footerInner{
  max-width: var(--max);
  margin: 0 auto;
  display:flex;
  justify-content: center;
  gap: 12px;
}

.footerLinks{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

.mutedLink{
  color: rgba(43,43,43,.72);
  text-decoration: none;
  font-weight: 900;
}
.mutedLink:hover{ text-decoration: underline; }


/* =========================
   Ícones das lojas
========================= */

.storeIcon{
  width: 30px;
  height: 30px;
  margin-right: 8px;
  flex-shrink: 0;
  opacity: .9;
}

/* =========================
   Botão Mercado Livre
========================= */

.btnML{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(253, 255, 182, .85); /* amarelo pastel */
  color: #5c4b00;
  border-color: rgba(253, 255, 182, .9);
}

.btnML:hover{
  background: rgba(253, 255, 182, .95);
  filter: saturate(1.05);
}

/* =========================
   Botão Shopee
========================= */

.btnSP{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 214, 165, .85); /* pêssego pastel */
  color: #6b3a00;
  border-color: rgba(255, 214, 165, .9);
}

.btnSP:hover{
  background: rgba(255, 214, 165, .95);
  filter: saturate(1.05);
}

/* ===== Mobile UX ===== */
@media (max-width: 480px){
  .heroCtas{ flex-direction: column; }
  .btn{ width: 100%; }

  .heroCard{ padding: 12px; margin-top: 40px; }
  .fakeImg{ width:72px; height:72px; }
}

/* ===== Desktop layout ===== */
@media (min-width: 860px){
  .navDesktop{ display:flex; }

  .hero{
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    padding-bottom: 34px;
  }

  .heroTitle{ font-size: 38px; }
  .heroRight{ min-height: 340px; }

  .grid{
    grid-template-columns: repeat(3, 1fr);
  }

  .footerInner{
    flex-direction: row; 
    align-items: center;
  }
}

@media (max-width: 480px){
  .socialButtons{
    flex-direction: column;
  }
}

/* =========================
   CTA principal – destaque desktop
========================= */

/* estado padrão (desktop) */
@media (min-width: 860px){
  .btnPrimary{
    background-color: #FFD29A; /* levemente mais saturado */
    box-shadow:
      0 10px 22px rgba(0,0,0,.10),
      0 4px 0 rgba(255,173,173,.45) inset;
    transition:
      transform .18s ease,
      box-shadow .18s ease,
      filter .18s ease;
  }

  /* hover elegante */
  .btnPrimary:hover{
    transform: translateY(-2px);
    filter: saturate(1.08);
    box-shadow:
      0 18px 36px rgba(0,0,0,.14),
      0 4px 0 rgba(255,173,173,.55) inset;
  }

  /* feedback de clique */
  .btnPrimary:active{
    transform: translateY(0);
    box-shadow:
      0 10px 22px rgba(0,0,0,.10),
      0 2px 0 rgba(255,173,173,.45) inset;
  }
}
