@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Work+Sans:wght@400;500;600&display=swap');

:root{
  /* ---- PALETA DE CORES: troque aqui para mudar a loja inteira ---- */
  --bg:        #FFFFFF;   /* fundo geral, tom algodão cru */
  --paper:     #ffffff;   /* fundo dos cards */
  --ink:       #242323;   /* texto principal */
  --ink-soft:  #6B675E;   /* texto secundário */
  --sage:      #ce1a1a;   /* verde-oliva suave, cor de destaque principal */
  --sage-dark: #f3cfc0;
  --clay:      #ba584b;   /* marrom-argila, segunda cor de destaque */
  --sale:      #B6482F;   /* vermelho queimado, usado só em promoção */
  --line:      #ffffff;   /* linhas e bordas discretas */

  /* ---- TIPOGRAFIA ---- */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Work Sans', Arial, sans-serif;
}

*{
  box-sizing:border-box; 
  margin:0; 
  padding:0;
  max-width: 100%;
}

body{
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height:1.5;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}
img{
  max-width:100%; 
  display:block;
}
a{
  color:inherit; 
  text-decoration:none;
}
ul{
  list-style:none;
}
h1,h2,h3{
  font-family:var(--font-display); 
  font-weight:60; 
  letter-spacing: -0.04em;
}
.wrap{
  max-width:1180px; 
  margin:0 auto; 
  padding:0 24px;
}

/* placeholder de imagem — troque por <img> quando tiver as fotos reais */
.ph{
  position:relative;
  width:100%;
  background:
    repeating-linear-gradient(135deg, #EFE9DB, #EFE9DB 12px, #E4DCC9 12px, #E4DCC9 24px);
  border:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:var(--ink-soft);
  font-size:12px;
  letter-spacing:.03em;
  padding:12px;
}

/* ---------------- BARRA DE AVISO ---------------- */
.announce-1 {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background: #f3cfc0; /* altere para a cor desejada */
  color: #000000;
  padding: 7px 0;
}

.announce-track {
  display: inline-block;
  padding-left: 100%;
  animation: announce-scroll 25s linear infinite;
  font-weight: 100;
  font-size: 14px;
}

@keyframes announce-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}
.announce-2 {
  background:var(--sage-dark);
  font-weight: bold;
  color: #ffffff;
  text-align:center;
  font-size:13px;
  padding: 1px ;
  letter-spacing:.01em;
}
/* ---------------- CABEÇALHO ---------------- */
header { 
  background: var(--paper); 
  border-bottom: 12px solid var(--line); 
  position: sticky; top: 0; z-index: 50; 
  height: 120px; 
} 
.header-inner { 
  display: flex; 
  align-items: center; 
  padding: 27px 1px; 
  max-width: 1180px; 
  margin: 0 auto; 
  gap: 32px; 
} 

/* LOGO */ 
.logo { 
  font-family: var(--font-display); 
  font-size: 26px; 
  font-weight: 600; 
  color: var(--sage-dark); 
  white-space: nowrap; }

  /* MENU */ 
nav.main-nav {
  display: flex; 
  align-items: center; 
} 
nav.main-nav ul { 
  display: flex;
   align-items: center; 
   gap: 32px; margin: 0; padding: 0; 
   list-style: none; 
} 
nav.main-nav a { 
  font-size: 14px; 
  padding: 23px 0; 
  border-bottom: 1px solid transparent; 
  transition: .15s; 
} 
nav.main-nav a:hover {
border-color: var(--clay); 
} 

/* ÍCONES */ 
.header-icons { 
  display: flex; 
  align-items: center; 
  gap: 20px; 
  margin-left: 500px; 
  margin-right: none;
} 
.header-icon { 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  color: #222; 
  text-decoration: none; 
} 
.header-icon svg { 
  width: 22px; 
  height: 22px; 
  fill: none; 
  stroke: currentColor;
  stroke-width: 1.5; 
  stroke-linecap: round; 
  stroke-linejoin: round; 
} 
.header-icon:hover { 
  opacity: .6; 
} 
/* ========================================
   HEADER ICONS
======================================== */

.header-icons {
  display: flex;
  align-items: center;
  gap: 18px;
}


/* =====================================================
   BARRA DE PESQUISA — ESTILO PÉ DE ALGODÃO
===================================================== */

/* Área que envolve o ícone */

.search-header-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}


/* =====================================================
   ÍCONE DE PESQUISA
===================================================== */

.search-toggle {
  appearance: none;
  -webkit-appearance: none;

  border: 0;
  outline: 0;

  background: transparent;

  padding: 0;
  margin: 0;

  width: 24px;
  height: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  color: #222;
}


.search-toggle svg {
  width: 22px;
  height: 22px;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.4;

  stroke-linecap: round;
  stroke-linejoin: round;

  transition: opacity 0.2s ease;
}


.search-toggle:hover svg {
  opacity: 0.6;
}


/* =====================================================
   CONTAINER DA PESQUISA
===================================================== */

.header-search-box {

  position: absolute;

  top: calc(100% + 20px);

  right: -20px;

  width: 430px;

  padding: 0;

  background: #ffffff;

  border: 1px solid #e6e3df;

  box-shadow:
    0 4px 15px rgba(0,0,0,0.06);

  z-index: 9999;

  opacity: 0;

  visibility: hidden;

  transform: translateY(-10px);

  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;

}


/* =====================================================
   PESQUISA ABERTA
===================================================== */

.search-header-wrapper.active .header-search-box {

  opacity: 1;

  visibility: visible;

  transform: translateY(0);

}


/* =====================================================
   FORMULÁRIO
===================================================== */

.header-search-box form {

  width: 100%;

  height: 52px;

  display: flex;

  align-items: center;

  background: #ffffff;

}


/* =====================================================
   ÍCONE DENTRO DO CAMPO
===================================================== */

.header-search-box form > svg {

  width: 19px;
  height: 19px;

  flex-shrink: 0;

  margin-left: 16px;

  fill: none;

  stroke: #333;

  stroke-width: 1.4;

  stroke-linecap: round;

  stroke-linejoin: round;
}


/* =====================================================
   CAMPO DE TEXTO
===================================================== */

.header-search-box input {

  flex: 1;

  width: 100%;

  height: 52px;

  border: none;

  outline: none;

  background: solid;

  padding:  0px ;

  color: #222;

  font-family: inherit;

  font-size: 14px;

  font-weight: 400;

  letter-spacing: 0.1px;
}


.header-search-box input::placeholder {

  color: #777;

  opacity: 1;
}


/* Remove X padrão de alguns navegadores */

.header-search-box input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}


/* =====================================================
   BOTÃO BUSCAR
===================================================== */

.header-search-box form button {

  height: 52px;

  padding: 10px 70px;

  border: none;

  background: #222;

  color: #fff;

  font-family: inherit;

  font-size: 12px;

  font-weight: 500;

  letter-spacing: 0.3px;

  text-transform: uppercase;
  
  text-align: center;

  cursor: pointer;

  transition:
    background 0.2s ease;
}


.header-search-box form button:hover {

  background: #3a3a3a;

}


/* =====================================================
   MOBILE
===================================================== */

@media screen and (max-width: 749px) {

  .header-search-box {

    position: fixed;

    top: 70px;

    left: 15px;

    right: 15px;

    width: auto;

    box-shadow:
      0 5px 20px rgba(0,0,0,0.08);

  }

}


/* =====================================================
   TELAS MUITO PEQUENAS
===================================================== */

@media screen and (max-width: 420px) {

  .header-search-box form {

    height: 50px;

  }

  .header-search-box input {

    font-size: 13px;

    padding-left: 8px;

  }

  .header-search-box form button {

    padding: 0 14px;

    font-size: 11px;

  }

}



/* CONTADOR DO CARRINHO */ 
.cart-count { 
  display: inline-block; 
  background: var(--clay); 
  color: #130606; 
  font-size: 11px; 
  border-radius: 50%; 
  width: 16px; 
  height: 16px; 
  line-height: 16px; 
  text-align: center;
  margin-left: 4px; 
} 

/* MENU MOBILE */ 
.burger { 
  display: none; 
  background: none; 
  border: none; 
  font-size: 22px; 
  cursor: pointer; 
} 

@media 
(max-width: 860px) { 
.header-inner { 
  padding: 20px; 
} 
nav.main-nav { 
  position: fixed; 
  top: 0; 
  right: -280px; 
  width: 260px; 
  height: 100%; 
  background: var(--paper); 
  padding: 80px 24px 24px; 
  transition: right .25s; 
  box-shadow: -4px 0 16px rgba(0,0,0,.08); 
} 
nav.main-nav.open { 
  right: 0; 
} 
nav.main-nav ul { 
  flex-direction: column; 
  align-items: flex-start; 
  gap: 20px; 
} 
.burger { 
  display: block; 
} 
}


/* ---------------- HERO ---------------- */
.hero{
  display:block; 
  width: 100% ;
  padding: 0; 
  max-width:none; 
  margin:0;
}
.announce {
  background: #ba584b;
  font-weight: bold;
  color:#ffffff;
  text-align:center;
  font-size:13px;
  padding:px 0;
  letter-spacing:.01em;
}
.hero img {
  display: block;
  width: 100%;
  height: 680px;
}
.hero-copy h1{
  font-size:44px;
  line-height:1.08;
  margin-bottom:20px; 
 color:var(--ink);
}
.hero-copy p{
  font-size:17px; 
  color:var(--ink-soft); 
  max-width:38ch; 
  margin-bottom:28px; 
  justify-content: center; 
  text-align: center;
}
.btn{
  display:inline-block;
  background:#ba584b; color:#fdfdfd;
  padding:14px 270px; 
  border-radius:80px; 
  font-weight:500; 
  font-size:15px;
  border:none; 
  cursor:pointer; 
  transition:background .15s; 
}
.btn:hover{
  background:var(--sage-dark);
}
.btn-outline{
  background:none; 
  border:1px solid var(--ink); 
  color:var(--ink);
}
.hero .ph{aspect-ratio:4/5; border-radius:6px;}

@media (max-width:1000px){
  .hero{grid-template-columns:1fr; padding-top:36px;}
  .hero-copy h1{font-size:32px;}
}
/* =========================================================
   CARROSSEL PRINCIPAL
   ESTILO CLEAN — PÉ DE ALGODÃO
========================================================= */

.main-carousel {
  width: 100%;
  background: #fff;

  margin: 0;
  padding: 0;

  overflow: hidden;
}


/* =========================================================
   CONTAINER
========================================================= */

.carousel-wrapper {
  position: relative;

  width: 100%;

  overflow: hidden;

  background: #f5f5f5;
}


/* =========================================================
   SLIDES
========================================================= */

.carousel-slide {
  position: absolute;

  inset: 0;

  width: 100%;

  opacity: 0;

  visibility: hidden;

  transition:
    opacity .8s ease,
    visibility .8s ease;

  z-index: 1;
}


/* slide ativo */

.carousel-slide.active {
  position: relative;

  opacity: 1;

  visibility: visible;

  z-index: 2;
}


/* =========================================================
   IMAGEM
========================================================= */

.carousel-slide img {
  display: block;

  width: 100%;

  height: auto;

  min-height: 420px;

  max-height: 650px;

  object-fit: cover;

  object-position: center;
}


/* =========================================================
   SETAS
========================================================= */

.carousel-arrow {
  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  z-index: 5;

  width: 48px;
  height: 48px;

  border: none;

  border-radius: 50%;

  background: rgba(255,255,255,.94);

  color: #222;

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;

  font-family: Arial, sans-serif;

  font-size: 34px;

  font-weight: 300;

  line-height: 1;

  padding: 0;

  box-shadow:
    0 2px 12px rgba(0,0,0,.10);

  transition:
    transform .25s ease,
    background .25s ease,
    box-shadow .25s ease;
}


/* posição esquerda */

.carousel-prev {
  left: 24px;
}


/* posição direita */

.carousel-next {
  right: 24px;
}


/* hover */

.carousel-arrow:hover {
  background: #fff;

  transform:
    translateY(-50%)
    scale(1.06);

  box-shadow:
    0 4px 18px rgba(0,0,0,.16);
}


/* =========================================================
   INDICADORES
========================================================= */

.carousel-dots {
  position: absolute;

  left: 50%;
  bottom: 20px;

  transform: translateX(-50%);

  z-index: 10;

  display: flex;

  align-items: center;

  gap: 7px;
}


/* bolinha */

.carousel-dot {
  width: 7px;
  height: 7px;

  padding: 0;

  border: 0;

  border-radius: 50%;

  background: rgba(255,255,255,.65);

  cursor: pointer;

  transition:
    width .3s ease,
    background .3s ease;
}


/* bolinha ativa */

.carousel-dot.active {
  width: 22px;

  border-radius: 10px;

  background: #fff;
}


/* =========================================================
   AVISO
========================================================= */

.announce {
  width: 100%;

  padding:4px;

  background: var(--clay);

  color: #ffffff;

  text-align: center;

  font-size: 13px;

  font-weight: 50;

  letter-spacing:1px;
}


/* =========================================================
   DESKTOP GRANDE
========================================================= */

@media screen and (min-width: 1400px) {

  .carousel-slide img {
    min-height: 500px;
  }

}


/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width: 900px) {

  .carousel-slide img {
    min-height: 380px;

    object-fit: cover;
  }

  .carousel-prev {
    left: 15px;
  }

  .carousel-next {
    right: 15px;
  }

}


/* =========================================================
   CELULAR
========================================================= */

@media screen and (max-width: 749px) {

  .carousel-slide img {
    width: 100%;

    height: 500px;

    min-height: 500px;

    max-height: none;

    object-fit: cover;

    object-position: center;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;

    font-size: 28px;
  }

  .carousel-prev {
    left: 12px;
  }

  .carousel-next {
    right: 12px;
  }

  .carousel-dots {
    bottom: 15px;
  }

  .announce {
    padding: 11px 10px;

    font-size: 12px;
  }

}


/* =========================================================
   CELULAR PEQUENO
========================================================= */

@media screen and (max-width: 480px) {

  .carousel-slide img {
    height: 470px;

    min-height: 470px;
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;

    font-size: 25px;
  }

}
/* =====================================================
   HERO — RESGATE / ANIVERSÁRIO
   ===================================================== */

.hero-copy {
  position: relative;
  width: 100%;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;


  box-sizing: border-box;

  overflow: hidden;

  border-radius: 20px;

  /* Fundo elegante */
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(253, 164, 164, 0.55) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(255, 125, 125, 0.35) 0%,
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #ead8c9 0%,
      #f4e8df 45%,
      #dfc4b0 100%
    );

  color: #3c3029;
}


/* Formas decorativas */

.hero-copy::before {
  content: "";
  position: absolute;

  width: 280px;
  height: 280px;

  top: -140px;
  left: -80px;

  border-radius: 50%;

  background: rgba(255,255,255,.25);

  filter: blur(2px);
}

.hero-copy::after {
  content: "";
  position: absolute;

  width: 350px;
  height: 350px;

  right: -160px;
  bottom: -190px;

  border-radius: 50%;

  background: rgba(255,255,255,.20);
}


/* =====================================================
   CONTEÚDO
   ===================================================== */

.hero-content {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 700px;

  text-align: center;

  animation: heroFadeUp .7s ease both;
}


/* Pequeno título */

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

  padding: 8px 16px;

  margin-bottom: 18px;

  background: rgba(252, 238, 238, 0.65);

  border: 1px solid rgba(224, 24, 24, 0.8);

  border-radius: 100px;

  color: #050302;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 1.5px;
}


/* =====================================================
   TÍTULO
   ===================================================== */

.hero-content h1 {
  margin: 0 0 15px;

  color: #ba584b;

  font-family: var(--font-body, sans-serif);

  font-size: clamp(42px, 7vw, 72px);

  font-weight: 700;

  line-height: .95;

  letter-spacing: -2.5px;
}


/* =====================================================
   SUBTÍTULO
   ===================================================== */

.hero-subtitle {
  margin: 0 auto 12px;

  max-width: 600px;

  color: #4c3b31;

  font-size: clamp(19px, 3vw, 25px);

  font-weight: 600;

  line-height: 1.35;
}


/* Texto explicativo */

.hero-description {
  margin: 0 auto 28px;

  color: #725f53;

  font-size: 15px;

  line-height: 1.6;
}


/* =====================================================
   BOTÃO
   ===================================================== */

.hero-copy .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-width: 220px;
  padding: 15px 25px;
  box-sizing: border-box;
  border: 1px solid #f3cfc0;
  border-radius: 90px;
  background: var(--clay);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .2px;
  box-shadow:0 10px 25px rgba(59,46,39,.18);
  transition:
    transform .25s ease,
    background .25s ease,
    color .25s ease,
    box-shadow .25s ease;
}


/* Seta */

.hero-copy .btn span {
  font-size: 19px;
  line-height: 1;
  transition: transform .25s ease;
}


/* Hover */

.hero-copy .btn:hover {
  background: #e08989;
  color: #ffffff;
  transform: translateY(-7px);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.2);
}

.hero-copy .btn:hover span {
  transform: translateX(5px);
}


/* =====================================================
   TEXTO ABAIXO DO BOTÃO
   ===================================================== */

.hero-note {
  margin-top: 18px;

  color: #806d60;

  font-size: 12px;

  letter-spacing: .4px;
}


/* =====================================================
   ANIMAÇÃO
   ===================================================== */

@keyframes heroFadeUp {

  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 600px) {

  .hero-copy {
    min-height: 480px;

    padding: 60px 20px;
  }

  .hero-eyebrow {
    font-size: 10px;

    padding: 7px 13px;

    margin-bottom: 15px;
  }

  .hero-content h1 {
    font-size: 46px;

    letter-spacing: -1.8px;
  }

  .hero-subtitle {
    font-size: 19px;
  }

  .hero-description {
    font-size: 13px;

    line-height: 1.55;
  }

  .hero-copy .btn {
    width: 100%;
    max-width: 280px;

    padding: 14px 20px;
  }

}
/* ---------------- FAIXA DE BENEFÍCIOS ---------------- */
.benefits{
  background:var(--sage); 
  color:#503232;
}
.benefits .wrap{
  display:grid; 
  grid-template-columns:repeat(4,1fr); 
  gap:24px;
  padding:28px 24px; 
  text-align:center;
}
.benefits strong{
  display:block; 
  font-size:15px; 
  margin-bottom:4px;
}
.benefits span{
  font-size:13px; 
  opacity:.85;
}
@media (
  max-width:860px
  )
  {
  .benefits .wrap{
    grid-template-columns:1fr 1fr;
  }
}


/* ---------------- SEÇÕES DE PRODUTO ---------------- */
section.products{
  padding:10px; 
  max-width:1180px; 
  margin:0 auto;
}
.section-head{
  display:flex; 
  align-items:baseline; 
  justify-content:space-between;
  margin-bottom:36px; 
  flex-wrap:wrap; 
  gap:12px;
}
.section-head h2{
  font-size:30px;
}
.section-head a{
  font-size:14px; 
  font-weight:500; 
  color:var(--clay); 
  border-bottom:1px solid var(--clay);
}
.grid{
  display:grid; 
  grid-template-columns:repeat(4,1fr); 
  gap:28px;
  border-radius: 6px;
}
.grid.grid-3{
  grid-template-columns:repeat(3,1fr);
}
@media (max-width:960px)
{ 
  .grid, .grid.grid-3{
    grid-template-columns:repeat(2,1fr);
  } 
  }
@media (max-width:560px){ 
  .grid, .grid.grid-3{grid-template-columns:1fr;} 
}

.card{
  position:relative;
}
.card .ph{
  aspect-ratio:1/1; 
  border-radius:3px; 
  margin-bottom:10px;
}
.badge{
  position:absolute; 
  top:10px; 
  left:10px;
  background:rgb(85, 85, 85); 
  color:#fff; font-size:12px; 
  font-weight:600;
  padding:2px 9px; 
  border-radius:4px; 
  z-index:2;
}
.card h3{font-size:16px; 
  font-weight:500; 
  font-family:var(--font-body); 
  margin-bottom:6px;
}
.price-row{
  display:flex; 
  align-items:baseline; 
  gap:8px; 
  flex-wrap:wrap;

}
.price-now{
  font-size:17px; 
  font-weight:600; 
  color:var(--clay);
}
.price-old{
  font-size:13px; 
  color:var(--ink-soft); 
  text-decoration:line-through;
}
.installment{
  font-size:12.5px; 
  
  color:black; 
  font-weight: 700;
  
  margin-top:2px;
}
/* Cantos arredondados nas imagens */
img {
  border-radius: 5px;
  display: block;
}

/* Imagens dos produtos */
.card img {
  border-radius: 16px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Banner principal */
.hero img {
  border-radius: 20px;
}

/* Imagem da seção institucional */
.story .img-col img {
  border-radius: 0px;
}

/* Imagens dos botões de aplicativos */
.app-downloads img {
  border-radius: 10px;
}
.card img:hover {
  background: var(--clay);
  color: #fff;

  transform: translateY(-2px);

  box-shadow: 0 8px 20px rgba(59, 46, 39, .15);
}

.button-ver-tudo a:hover span {
  transform: translateX(4px);
}


/* =====================================================
   BOTÃO VER TUDO
   ===================================================== */

.button-ver-tudo {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 100%;

  margin-top: 35px;
}

.button-ver-tudo a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 12px;

  min-width: 150px;

  padding: 10px;

  border: 1px solid #ffffff;
  border-radius: 10px;

  background: var(--clay);

  color: #f8f8f7;

  text-decoration: none;

  font-family: var(--font-body, sans-serif);

  font-size: 15px;
  font-weight: 900;

  transition:
    background .25s ease,
    color .25s ease,
    transform .25s ease,
    box-shadow .25s ease;
}


/* Hover */
.button-ver-tudo a:hover {
  background: var(--clay);
  color: #fff;

  transform: translateY(-2px);

  box-shadow: 0 8px 20px rgba(59, 46, 39, .15);
}

.button-ver-tudo a:hover span {
  transform: translateX(4px);
}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 600px) {

  .button-ver-tudo {
    margin-top: 28px;
  }

  .button-ver-tudo a {
    width: 100%;
    max-width: 220px;

    padding: 12px 20px;

    font-size: 12px;
  }

}


/* ---------------- SEÇÃO INSTITUCIONAL ---------------- */

.story h2 {
  font-family: var(--font-body);
}


/* ================================
   CONTROLES DE TAMANHO
================================ */

/* Tamanho do título */
.story {
  --story-title-size: 32px;

  /* Tamanho do texto */
  --story-text-size: 16px;

  /* Tamanho da foto */
  --story-image-width: 100%;
}


/* ================================
   ESTRUTURA
================================ */

.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;

  padding: 72px 24px;

  max-width: 1180px;
  margin: 0 auto;

  font-family: var(--font-body);
}


/* ================================
   BOTÃO
================================ */

.story button {
  background-color: #ba584b;
  border-radius: 5px;
  padding: 15px 30px;
  border: none;
  color: white;
  font-weight: 700;
}


/* ================================
   FOTO
================================ */

.story .ph {
  aspect-ratio: 5 / 4;
  border-radius: 6px;

  width: var(--story-image-width);
  height: auto;

  display: block;
  margin: 0 auto;
}


/* ================================
   TÍTULO
================================ */

.story h2 {
  font-size: 40px;
  margin-bottom: 18px;

  text-align: center;

  max-width: 44ch;

  margin-left: auto;
  margin-right: auto;
}


/* ================================
   SUBTÍTULO / TEXTO
================================ */

.story h3 {
  font-family: var(--font-body);
  color: var(--ink-soft);

  font-size: var(--story-text-size);

  max-width: 44ch;

  margin: 0 auto 24px auto;

  text-align: center;
}


/* ================================
   CENTRALIZA OS ELEMENTOS NA COLUNA
================================ */

.story > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


/* ================================
   RESPONSIVO
================================ */

@media (max-width: 860px) {

  .story {
    grid-template-columns: 1fr;
  }

  .story .img-col {
    order: -1;
  }

}


/* ================================
   EXEMPLO PARA CELULAR
================================ */

@media (max-width: 600px) {

  .story {
    --story-title-size: 26px;
    --story-text-size: 15px;
    --story-image-width: 1--%;
  }

}

/* Botões de baixar */
  .app-downloads {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    margin-bottom:  10px;
  }

  /* Link clicável */
  .app-downloads a {
    display: block;
    line-height: 0;
    text-decoration: none;
    transition: all 0.2s ease;
  }

  /* Imagens */
  .app-downloads img {
    display: block;
    width: 150px;
    height: auto;
    max-width: 100%;
  }

  /* Efeito ao passar o mouse */
  .app-downloads a:hover {
    transform: translateY(-2px);
    opacity: 0.9;
  }

  /* Responsivo para celular */
  @media (max-width: 480px) {
    .app-downloads {
      gap: 8px;
    }

    .app-downloads img {
      width: 135px;
    }
  }


/* ---------------- RODAPÉ ---------------- */

footer {
  padding: 10px 0px 10px;
  background:#ba584b;
  border-top: 1px solid var(--line);
}

.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 30px;

  display: grid;
  grid-template-columns: 2fr 2fr 2fr;
  gap: 80px;
}

.footer-column h4 {
  margin-top: 20px;
  font-size: 17px;
  font-weight: 60;
  color: #ffffff;
  padding: 0 0 20px;
}
.footer-column h2 { 
  color: #f7f6f5; 
  text-align: right;
}

.footer-column ul {
  list-style: none;
  margin: none;
  padding:0 0 20px;
  color: #ffffff;
}

.footer-column li {
  margin-bottom: 10px;
  font-size: 15px;
  font-family: var(--font-body);
}

.footer-column a {
  color: rgb(252, 250, 250);
  text-decoration: none;
  transition: opacity .2s ease;
}

.footer-column a:hover {
  opacity: .6;
}


/* NEWSLETTER */
.newsletter h2 { font-size:17px ;
}
.newsletter {
  max-width: 360px;
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.6;
  color: white;
  font-family: var(--font-body);
}
.newsletter a {
  color: #ba584b;
}

/* CAMPO + BOTÃO */
.newsletter form {
  display: flex;
  align-items:center;
  gap: 11px;
  width: 100%;
  max-width: 420px;
}

/* INPUT */
.newsletter input {
  flex: 1;
  min-width: 0;

  padding: 12px 100px;
  text-align:center;

  border: 1px solid #ffffff;
  border-radius: 10px;
  background: transparent;

  font-family: inherit;
  font-size: 19px;
  color: #ffffff;
  box-sizing: border-box;
}

.newsletter input::placeholder {
  color: #ffffff;
  opacity: 0.8;
}

.newsletter input:focus {
  outline: none;
  border-color: #ffffff;
}

/* BOTÃO */
.newsletter .btn {
  padding: 15px 158px;
  border: 1px solid #ffffff;
  background: #ffffff;
  border-radius: 10px;
  color: #ba584b;
  font-family: inherit;
  font-size: 14px;
  cursor:pointer;
  white-space:nowrap;
  margin-top:10px;
 
}

.newsletter .btn:hover {
  opacity: 0.8;
}




/* REDES SOCIAIS */

.socials {
  max-width: 1180px;
  margin:10px auto 100px;
  padding: 25px px 100px;
  display: flex;
  align-items: center;
  justify-content:center ;
  gap: 16px;
  color:#FFFFFF
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 24px;
  height: 24px;

  color: white;
  text-decoration: none;

  transition: opacity .2s ease, transform .2s ease;
}

.social-icon svg {
  width: 21px;
  height: 21px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;

  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon:hover {
  opacity: .6;
  transform: translateY(-2px);
}
.footer-bottom { 
  padding: 0px; 
  font-size: 12px; 
  text-align: center;
  margin-top: 10px;
  color: white
}

/* ========================================
   FORMAS DE PAGAMENTO
======================================== */

.payment-methods {
  width: 100%;
  margin-top: 10px;
}


/* ========================================
   CONTAINER DAS BANDEIRAS
======================================== */

.payment-icons {
  display: flex;
  align-items: center;
  justify-content: center;

  flex-wrap: wrap;

  gap: 4px;

  margin: 0;
  padding: 0;
}


/* ========================================
   CARDS DAS BANDEIRAS
======================================== */

.payment-card {
  /* MESMO TAMANHO PARA TODOS */
  width: 45px;
  height: 29px;

  min-width: 0px;
  min-height: 29px;

  max-width: 45px;
  max-height: 29px;

  /* Alinhamento */
  display: flex;
  align-items: center;
  justify-content: center;

  /* Fundo */
  background-color: #ffffff;

  /* Borda */
  border: 0px solid #ffffff;
  border-radius: 4px;

  /* Impede que a imagem ultrapasse o card */
  overflow: hidden;

  /* Mantém o tamanho mesmo com padding/borda */
  box-sizing: border-box;

  /* Evita que o flex altere o tamanho */
  flex: 25px;

  /* Transição */
  transition: transform 0.2s ease, opacity 0.2s ease;
}


/* ========================================
   IMAGENS DAS BANDEIRAS
======================================== */

.payment-card img {
  display: block;

  width: 100%;
  height: 100%;

  max-width: 100%;
  max-height: 100%;

  object-fit: contain;

  padding: 0px;

  margin: 0px 


}


/* ========================================
   HOVER
======================================== */

.payment-card:hover {
  transform: translateY(-2px);
  opacity: 0.9;
  
}


/* ========================================
   CELULAR
======================================== */

@media screen and (max-width: 749px) {

  .payment-methods {
    margin-top: 15px;
  }

  .payment-title {
    text-align: center;
  }

  .payment-icons {
    justify-content: center;
    gap: 6px;
  }

  .payment-card {
    width: 42px;
    height: 27px;

    min-width: 42px;
    min-height: 27px;

    max-width: 42px;
    max-height: 27px;

    flex: 0 0 42px;

    border-radius: 4px;
  }

}


/* ========================================
   MOBILE - FOOTER
======================================== */

@media (max-width: 768px) {

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .newsletter form {
    flex-direction: column;
  }

  .newsletter .btn {
    width: 100%;
  }

}



/* ---------------- CARRINHO ---------------- */

.cart-overlay {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.4);
opacity: 0;
visibility: hidden;
transition: .3s ease;
z-index: 100;
}

.cart-drawer {
position: fixed;
top: 0;
right: -420px;
width: 380px;
max-width: 90%;
height: 100vh;
background: var(--paper);
z-index: 101;
padding: 30px;
box-sizing: border-box;
transition: right .3s ease;
overflow-y: auto;
}

/* ---------------- CARRINHO ABERTO ---------------- */

.cart-drawer.open {
right: 0;
}

.cart-overlay.open {
opacity: 1;
visibility: visible;
}

/* ---------------- BOTÃO FECHAR ---------------- */

.cart-close {
position: absolute;
top: 20px;
right: 20px;

border: none;
background: none;

font-size: 30px;

cursor: pointer;

color: var(--ink);
}

/* ---------------- TÍTULO ---------------- */

.cart-drawer h3 {
margin-top: 10px;
margin-bottom: 30px;
}

/* ---------------- ITENS DO CARRINHO ---------------- */

.cart-items {
width: 100%;
}

/* ---------------- ITEM ---------------- */

.cart-item {
position: relative;

width: 100%;

padding: 15px 0;

border-bottom: 1px solid var(--line);
}

/* ---------------- BOTÃO REMOVER ---------------- */

cart-remove {
  background: #ba584b;
  color: #ffffff;
  border: 1px solid #ba584b;
  border-radius: 5px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

/* ---------------- HOVER REMOVER ---------------- */

.cart-remove:hover {
background-color: #ba584b;
color: #aa2929;
border-color: #ba584b;
}

/* ---------------- TOTAL ---------------- */

.cart-total {
display: flex;
justify-content: space-between;

padding: 20px 0;

margin-top: 20px;

border-top: 1px solid var(--line);

font-weight: 600;
}

/* ---------------- BOTÃO FINALIZAR ---------------- */

.cart-checkout {
width: 100%;

padding: 15px;

border: none;

cursor: pointer;
border-radius:5px ;
}
.cart-checkout:hover {
  background: var(--clay);
  color: #fff;

  transform: translateY(-2px);

  box-shadow: 0 8px 20px rgba(59, 46, 39, .15);
}

.button-ver-tudo a:hover span {
  transform: translateX(4px);
}


/* ---------------- MOBILE ---------------- */

@media (max-width: 600px) {

.cart-drawer {
width: 90%;
right: -90%;
}

.cart-remove {
padding: 6px 10px;
font-size: 12px;
}

}
/* =========================================================
   CARROSSEL DE VÍDEOS — ESTILO PÉ DE ALGODÃO
========================================================= */

.videos-section {
  width: 100%;
  background: #ffffff;
  padding: 40px 0 52px;
  overflow: hidden;
}

/* Área principal */
.videos-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

/* =========================================================
   GRID / CARROSSEL
========================================================= */

.videos-slider {
  display: flex;
  gap: 16px;

  width: 100%;

  overflow-x: auto;
  overflow-y: hidden;

  padding: 0 20px;

  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;

  scrollbar-width: none;

  -webkit-overflow-scrolling: touch;
}

.videos-slider::-webkit-scrollbar {
  display: none;
}

/* =========================================================
   CADA VÍDEO
========================================================= */

.video-card {
  flex: 0 0 calc(25% - 12px);

  min-width: 0;

  scroll-snap-align: start;

  position: relative;
}

/* =========================================================
   ÁREA DO VÍDEO
========================================================= */

.video-wrapper {
  width: 100%;

  aspect-ratio: 9 / 12;

  position: relative;

  overflow: hidden;

  background: #f5f5f5;

  border-radius: 6px;
}

/* Vídeo */

.video-wrapper video {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  border-radius: 6px;

  background: #f5f5f5;

  transition: transform .45s ease;
}

/* Pequeno efeito igual ao comportamento de lojas modernas */

.video-card:hover video {
  transform: scale(1.015);
}


/* =========================================================
   BOTÃO PLAY
========================================================= */

.play-icon {
  position: absolute;

  left: 50%;
  top: 50%;

  width: 70px;
  height: 70px;

  transform: translate(-50%, -50%);

  pointer-events: none;

  opacity: .95;

  transition:
    transform .25s ease,
    opacity .25s ease;
}

.play-icon svg {
  width: 100%;
  height: 100%;

  display: block;
}

.video-card:hover .play-icon {
  transform:
    translate(-50%, -50%)
    scale(1.05);

  opacity: 1;
}


/* =========================================================
   SETAS
========================================================= */

.video-arrow {
  position: absolute;

  top: 50%;

  width: 50px;
  height: 50px;

  transform: translateY(-50%);

  z-index: 20;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  border: none;

  border-radius: 8px;

  background: var(--clay);

  color: #ffffff;

  cursor: pointer;

  box-shadow:
    0 2px 12px rgba(0, 0, 0, .12);

  transition:
    opacity .2s ease,
    transform .2s ease,
    box-shadow .2s ease;
}

.video-arrow span {
  font-family: Arial, sans-serif;

  font-size: 34px;

  font-weight: 300;

  line-height: 1;

  margin-top: -4px;
}

.video-arrow:hover {
  transform:
    translateY(-50%)
    scale(1.05);

  box-shadow:
    0 4px 18px rgba(0, 0, 0, .17);
}

/* esquerda */

.video-prev {
  left: 8px;
}

/* direita */

.video-next {
  right: 8px;
}


/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width: 1100px) {

  .video-card {
    flex: 0 0 calc(33.333% - 11px);
  }

}


/* =========================================================
   TABLET PEQUENO
========================================================= */

@media screen and (max-width: 749px) {

  .videos-section {
    padding-top: 30px;
    padding-bottom: 40px;
  }

  .videos-slider {
    gap: 12px;

    padding-left: 16px;
    padding-right: 16px;
  }

  .video-card {
    flex: 0 0 calc(50% - 6px);
  }

  .video-wrapper {
    border-radius: 5px;
  }

  .video-wrapper video {
    border-radius: 5px;
  }

  .play-icon {
    width: 60px;
    height: 60px;
  }

  /* No celular o usuário arrasta */
  .video-arrow {
    display: none;
  }

}


/* =========================================================
   CELULAR PEQUENO
========================================================= */

@media screen and (max-width: 480px) 
{

  .videos-slider {
    gap: 10px;

    padding-left: 14px;
    padding-right: 14px;
  }

  .video-card {
    flex: 0 0 72%;
  }

  .video-wrapper {
    aspect-ratio: 9 / 12;
  }

  .play-icon {
    width: 58px;
    height: 58px;
  }

  
}
  /* ================================
     BARRA PRINCIPAL
  ================================= */

  .benefits-bar {
    width: 100%;
    background: #ffffff;
    color: #2e2e2e;
    padding: 0 0 8px;
  }


  .benefits-bar *,
  .benefits-bar *::before,
  .benefits-bar *::after {
    box-sizing: border-box;
  }


  /* ================================
     CONTAINER
  ================================= */

  .benefits-bar__container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
  }


  /* ================================
     DESKTOP
  ================================= */

  .benefits-bar__track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    width: 100%;
  }


  /* ================================
     CARDS
  ================================= */

  .benefit-card {
    min-width: 0;
    min-height: 145px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    background: #ffffff;

    border: 1px solid #8c8c8c;
    border-radius: 12px;

    padding: 20px 18px;

    color: #2e2e2e;

    transition:
      transform .2s ease,
      box-shadow .2s ease;
  }


  .benefit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,.05);
  }


  /* ================================
     ÍCONES
  ================================= */

  .benefit-card__icon {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 11px;

    color: #2e2e2e;
  }


  .benefit-card__icon svg {
    width: 100%;
    height: 100%;
    display: block;
  }


  /* ================================
     TÍTULO
  ================================= */

  .benefit-card__title {
    font-size: 15px;
    line-height: 1.25;

    font-weight: 600;

    margin-bottom: 8px;

    color: #2e2e2e;
  }


  /* ================================
     TEXTO
  ================================= */

  .benefit-card__text {
    max-width: 260px;

    font-size: 14px;
    line-height: 1.45;

    font-weight: 400;

    color: #2e2e2e;
  }


  /* ================================
     INDICADORES
  ================================= */

  .benefits-bar__dots {
    display: none;

    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-top: 10px;
  }


  .benefit-dot {
    width: 26px;
    height: 3px;

    padding: 0;
    border: 0;
    border-radius: 999px;

    background: rgba(0,0,0,.18);

    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;

    transition: all .2s ease;
  }


  .benefit-dot.active {
    background: rgba(0,0,0,.45);
    transform: scaleX(1.05);
  }


  /* ================================
     TABLET
  ================================= */

  @media screen and (max-width: 990px) and (min-width: 750px) {

    .benefits-bar__track {
      grid-template-columns: repeat(2, 1fr);
    }

  }


  /* ================================
     CELULAR
  ================================= */

  @media screen and (max-width: 749px) {

    .benefits-bar {
      padding-bottom: 8px;
      overflow: hidden;
    }


    .benefits-bar__container {
      padding: 0 10px;
      overflow: hidden;
    }


    /* CARROSSEL */

    .benefits-bar__track {

      display: flex;

      width: 100%;

      gap: 10px;

      overflow-x: auto;
      overflow-y: hidden;

      scroll-snap-type: x mandatory;

      scroll-behavior: smooth;

      -webkit-overflow-scrolling: touch;

      scrollbar-width: none;

      padding: 2px 8px 10px;

      margin: 0 -8px;
    }


    .benefits-bar__track::-webkit-scrollbar {
      display: none;
    }


    /* CARD */

    .benefit-card {

      flex: 0 0 calc(100vw - 36px);

      width: calc(100vw - 36px);

      min-height: 180px;

      scroll-snap-align: start;

      border-radius: 12px;

      padding: 25px 20px;
    }


    .benefit-card__icon {
      width: 29px;
      height: 29px;
      margin-bottom: 12px;
    }


    .benefit-card__title {
      font-size: 15px;
      margin-bottom: 8px;
    }


    .benefit-card__text {
      font-size: 14px;
      max-width: 270px;
    }


    /* INDICADORES */

    .benefits-bar__dots {
      display: flex;
    }

  }