/* =========================
   PALETA & TOKENS
========================= */
:root{
  --brand-green: #6ba38e;         /* verde principal (logo) */
  --brand-pink:  #fb6775;         /* rosa principal (logo) */

  /* Derivados para contraste/acessibilidade */
  --green-dark:  #406e5d;         /* nav/rodapé/hover mais escuro */
  --green-darker:#2f5c4e;         /* bordas/detalhes escuros */
  --mint-50:     #eaf5f1;         /* fundo suave (hero/cards) */

  --text:        #222;
  --text-muted:  #555;
  --white:       #fff;
  --border:      #d6e5de;

  --shadow-s:    0 2px 6px rgba(0,0,0,.10);
  --shadow-m:    0 4px 12px rgba(0,0,0,.12);
}

/* =========================
   BASE GLOBAL
========================= */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
}
a { color: inherit; }
.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }

/* =========================
   NAV COM LOGO
========================= */
nav {
  background-color: var(--white);
  border-bottom: 3px solid var(--green-dark);
  position: sticky; top: 0; z-index: 1000;
  padding: 10px 0;
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 16px;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 16px;
}
nav a.logo {
  justify-self: start; display: inline-flex; align-items: center;
  padding: 0; border-bottom: none !important;
}
nav a.logo img { height: 80px; width: auto; display: block; }

nav .links { justify-self: center; display: flex; align-items: center; gap: 20px; }
nav .links a{
  color: var(--green-dark); font-weight: bold; text-decoration: none;
  padding: 5px 10px;
  transition: color .3s ease, border-bottom .3s ease;
}
nav .links a:hover{
  color: var(--brand-pink);
  border-bottom: 2px solid var(--brand-pink);
}
.nav-right{ justify-self: end; }

@media (max-width: 768px){
  .nav-inner{ grid-template-columns: auto 1fr auto; }
  nav .links{ gap: 10px; flex-wrap: wrap; justify-content: center; }
  nav a.logo img{ height: 34px; }
}


/* === navi slider === */ 

.slider{
  overflow: hidden;
}

/* === FIM navi slider === */ 


/* =========================
   HOME / HERO (index - sem carrossel)
========================= */
.hero {
  background: linear-gradient(to right, var(--mint-50), #dff1ea);
  padding: 60px 20px;
}
.hero-content{
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1000px; margin: 0 auto; gap: 30px; flex-wrap: wrap;
}
.hero-image{ flex: 1 1 320px; display: flex; justify-content: center; align-items: flex-end; }

/* avatar redondo (caso use) */
.hero-image img{
  width: 200px; height: 200px; object-fit: cover;
  border-radius: 50%; border: 4px solid var(--green-darker);
}

/* corpo inteiro com fundo transparente (PNG) */
.hero-image img.hero-full{
  width: clamp(280px, 34vw, 560px);
  max-height: min(70vh, 760px);
  height: auto; object-fit: contain;
  border-radius: 0; border: 0; display: block;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.15));
}

.hero-text{ flex: 2; text-align: left; align-self: flex-end; }
.hero-text h2{
  font-size: 2.5rem; font-weight: bold; color: var(--brand-pink);
  margin-bottom: 15px;
}
.hero-text p{ font-size: 1.2rem; color: #333; }

@media (max-width: 768px){
  .hero-content{ flex-direction: column; text-align: center; }
  .hero-text{ text-align: center; }
  .hero-image img.hero-full{ width: min(82vw, 520px); max-height: 56vh; }
}

/* =========================
   CARDS DE ARTIGOS (home)
========================= */
.articles{
  display: flex; flex-wrap: wrap; gap: 20px; justify-content: center;
  padding: 40px 20px;
}
.article-card{
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: 20px; width: 300px;
  box-shadow: var(--shadow-s);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column; justify-content: space-between;
}
.article-card:hover{ transform: translateY(-5px); box-shadow: var(--shadow-m); }
.article-card h3{ color: var(--green-dark); margin-bottom: 10px; }
.article-card p{ font-size: .95rem; color: var(--text-muted); }

/* =========================
   CONTATO
========================= */
.contato{
  max-width: 600px; margin: 40px auto; padding: 20px;
  background: #f5f8f7; border: 1px solid var(--border);
  border-radius: 10px; box-shadow: var(--shadow-s); text-align: center;
}
.contato h2{ color: var(--green-dark); margin-bottom: 20px; }
.contato form{ display: flex; flex-direction: column; gap: 15px; }
.contato input, .contato textarea{
  padding: 10px; border: 1px solid #ccc; border-radius: 6px; font-size: 1rem;
}
.contato button{
  padding: 12px; border: none; border-radius: 6px;
  background-color: var(--brand-green); color: var(--white);
  font-size: 1rem; font-weight: bold; cursor: pointer;
  transition: background-color .3s ease, transform .05s ease;
}
.contato button:hover{ background-color: var(--green-dark); }
.contato button:active{ transform: translateY(1px); }

/* ícones sociais */
.redes{ margin-top: 20px; display: flex; justify-content: center; gap: 15px; }
.redes a{
  display: flex; align-items: center; justify-content: center;
  width: 50px; height: 50px; border-radius: 50%;
  background: #e7f3ee; border: 2px solid var(--green-darker);
  transition: .3s;
}
.redes a:hover{ background: var(--brand-green); }
.redes svg{ width: 24px; height: 24px; fill: var(--green-darker); transition: .3s; }
.redes a:hover svg{ fill: var(--brand-pink); }

/* =========================
   PRODUTOS (loja)
========================= */
.produtos{
  display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; padding: 40px;
}
.produto{
  background: var(--white); border-radius: 12px; box-shadow: var(--shadow-s);
  padding: 20px; width: 280px; text-align: center; transition: transform .2s ease;
}
.produto:hover{ transform: translateY(-5px); }
.produto img{ max-width: 100%; border-radius: 8px; }
.produto h3{ color: var(--green-dark); margin: 15px 0 10px; }
.produto p{ font-size: .95rem; color: #444; margin-bottom: 10px; }
.produto .preco{ display: block; font-weight: bold; font-size: 1.2rem; margin-bottom: 15px; color: var(--brand-green); }
.produto a{
  display: inline-block; padding: 10px 15px; background: var(--green-dark);
  color: var(--white); text-decoration: none; border-radius: 6px; transition: .3s;
}
.produto a:hover{ background: var(--brand-pink); }

/* =========================
   LISTA DE ARTIGOS
========================= */
.categorias{
  display: flex; justify-content: center; flex-wrap: wrap; gap: 15px;
  margin: 30px auto; max-width: 1000px;
}
.categorias a{
  padding: 10px 20px; border-radius: 25px; background-color: #e7f3ee;
  color: var(--green-darker); font-weight: bold; text-decoration: none;
  border: 2px solid var(--green-darker);
  transition: background-color .3s ease, color .3s ease, border-color .3s ease;
}
.categorias a:hover{ background-color: var(--green-dark); color: var(--white); border-color: var(--green-dark); }

.grid-artigos{
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px; max-width: 1000px; margin: 40px auto; padding: 0 20px;
}
.card{
  background-color: var(--white); border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow-s); transition: transform .3s ease;
  text-decoration: none; color: inherit;
}
.card:hover{ transform: translateY(-5px); }
.card img{ width: 100%; height: 180px; object-fit: cover; }
.card-body{ padding: 15px; }
.card-body h3{ font-size: 1.3rem; color: var(--green-dark); margin-bottom: 10px; }
.card-body p{ font-size: 1rem; color: var(--text-muted); line-height: 1.5; }

/* =========================
   SOBRE
========================= */
.sobre{
  max-width: 1000px; margin: 60px auto; padding: 20px;
  display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
}
.sobre img{
  width: 350px; height: auto; border-radius: 12px; object-fit: cover;
  border: 4px solid var(--green-darker);
}
.sobre-texto{ flex: 1; }
.sobre-texto h2{ font-size: 2rem; color: var(--green-dark); margin-bottom: 15px; }
.sobre-texto p{ font-size: 1.1rem; line-height: 1.6; color: #333; }

@media (max-width: 768px){
  .sobre{ flex-direction: column; text-align: center; }
  .sobre img{ width: 250px; }
}

/* =========================
   ARTIGO INDIVIDUAL
========================= */
.artigo{ max-width: 900px; margin: 40px auto; padding: 20px; }
.artigo h1{ font-size: 2.2rem; color: var(--green-dark); margin-bottom: 20px; text-align: center; }
.artigo img{
  width: 100%; max-height: 400px; object-fit: cover; border-radius: 12px; margin-bottom: 20px;
}
.artigo p{ font-size: 1.1rem; line-height: 1.7; color: #333; margin-bottom: 20px; text-align: justify; }
.artigo h2{ font-size: 1.5rem; color: var(--brand-green); margin-top: 30px; margin-bottom: 15px; }

/* voltar */
.voltar{ display: block; text-align: center; margin: 30px auto; }
.voltar a{
  display: inline-block; padding: 12px 25px; background-color: var(--brand-green);
  color: var(--white); text-decoration: none; border-radius: 8px;
  font-weight: bold; transition: background-color .3s ease;
}
.voltar a:hover{ background-color: var(--green-dark); }

/*======= botão page venda =======*/
.btn-cta{
  display:inline-block;
  padding:15px 25px;
  background:var(--brand-green);
  color:#fff;
  font-size:1.2rem;
  border-radius:8px;
  font-weight:bold;
  text-decoration:none;
  transition:.3s;
}
.btn-cta:hover{ background:var(--brand-pink); }

/* =========================
   RODAPÉ
========================= */
footer{
  text-align: center; padding: 20px;
  background-color: var(--green-dark); color: var(--white); margin-top: 40px;
}

/* =========================
   CARROSSEL — FLEXBOX + IMAGEM SEPARADA
========================= */
.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0;
}

/* Corrige comportamento do Slick Carousel */
.carousel,
.slick-list,
.slick-track,
.slick-slide {
  height: 100%;
  min-height: 80vh !important;
}

/* ======== BANNER BASE ======== */
.banner-flex {
  display: flex;
  align-items: flex-end; /* cola texto e imagem na base */
  justify-content: space-between;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 80vh;
  min-height: 80vh;
  padding: 0 clamp(40px, 6vw, 80px);
  color: #fff;
  overflow: hidden;
  position: relative;
}

/* ======== BLOCO DE TEXTO ======== */
.banner-text {
  flex: 1;
  max-width: 520px;
  margin-bottom: clamp(40px, 6vh, 80px);
  z-index: 2;
}

.banner-text h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.banner-text p {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.4;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.btn-cta {
  display: inline-block;
  background-color: var(--brand-pink);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.btn-cta:hover {
  background-color: var(--brand-green);
}


/* ======== IMAGEM ======== */
/* ======== BANNER PRINCIPAL (Flexbox corrigido) ======== */
.banner-flex {
  display: flex;
  align-items: flex-end;            /* mantém base alinhada */
  justify-content: space-between;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 80vh;                 /* altura mínima */
  height: auto;                     /* deixa crescer conforme o conteúdo */
  padding: 0 clamp(40px, 6vw, 80px);
  color: #fff;
  overflow: visible;                /* permite imagem ultrapassar um pouco */
  position: relative;
}

/* ======== BLOCO DE TEXTO ======== */
.banner-text {
  flex: 1;
  max-width: 520px;
  margin-bottom: clamp(40px, 6vh, 80px);
  z-index: 2;
}

/* ======== IMAGEM ======== */
.banner-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: auto;
  overflow: visible;
}

.banner-image img {
  max-height: 85vh;                 /* controla o limite vertical */
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: bottom right;
  display: block;
  transform: translateY(5px);       /* encosta visualmente na base */
}


/* ======== RESPONSIVO ======== */
@media (max-width: 900px) {
  .banner-flex,
  .banner-flex.invertido {
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    height: auto !important;
    min-height: auto;
    padding: 40px 20px;
  }

  .banner-text {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .banner-image {
    justify-content: center;
    align-items: flex-end;
  }

  .banner-image img {
    width: 80%;
    height: auto;
    max-width: 100%;
    object-position: center bottom;
  }
}

/* ======== LIMPEZA DE CÓDIGOS ANTIGOS ======== */
.carousel .slide,
.carousel .slide::after,
.carousel .slide img.hero-full {
  all: unset;
}

.carousel .slide::after {
  background: none !important;
}




