/* ========================= RESET E BASE ========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #333;
  scroll-behavior: smooth;
  font-size: 18px;
}

/* ========================= CONTAINER ========================= */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================= HEADER ========================= */
.header {
  background: #0b7d3b;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 65px;
}

.nav a {
  color: #fff;
  margin-left: 25px;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffd500;
  transition: 0.3s;
}

.nav a:hover::after {
  width: 100%;
}

.nav a.ativo {
  color: #ffd500;
}

/* ========================= HERO ========================= */
.hero {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(180deg, #ffffff, #e9f7ef);
}

.hero h1 {
  color: #0b7d3b;
  font-size: 42px;
}

.hero p {
  margin-top: 15px;
  font-size: 18px;
}

/* ========================= PRODUTOS (HOME DESTAQUE) ========================= */
.produtos-destaque {
  background: #157a3c;
  padding: 80px 0;
  color: #fff;
}

/* ========================= PRODUTOS (CATÁLOGO JS) ========================= */
.produtos {
  padding: 70px 20px;
  background: #f9f9f9;
  text-align: center;
}

.produtos h2 {
  font-size: 34px;
  color: #0b7d3b;
  margin-bottom: 50px;
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* CARD DO PRODUTO */
.produto-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.produto-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.18);
}

.produto-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  margin-bottom: 15px;
}

.produto-card h3 {
  font-size: 16px;
  color: #0b7d3b;
  margin-bottom: 18px;
  min-height: 48px;
}

/* BOTÃO COMPRAR */
.btn-comprar {
  display: inline-block;
  background: #ffd500;
  color: #000;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s;
}

.btn-comprar:hover {
  background: #e0b000;
  transform: scale(1.05);
}

/* ========================= EMPRESA ========================= */
.empresa-cards {
  padding: 80px 0;
  background: #f9f9f9;
}

.empresa-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.empresa-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  border-top: 6px solid #0b7d3b;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.empresa-card:hover {
  transform: translateY(-8px);
  border-top-color: #ffd500;
}

.empresa-card i {
  font-size: 40px;
  color: #0b7d3b;
  margin-bottom: 20px;
}

.empresa-card:hover i {
  color: #ffd500;
}

/* ========================= CONTATO / LOJAS ========================= */
.lojas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
}

.loja-card {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  border-top: 6px solid #0b7d3b;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.loja-card h2 {
  margin-bottom: 25px;
  color: #0b7d3b;
}

.info-loja p {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.info-loja i {
  color: #0b7d3b;
  min-width: 20px;
}

/* ========================= MAPAS ========================= */
.mapas-lojas {
  padding: 80px 0;
  background: #f9f9f9;
}

.mapas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mapa-card {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  border-top: 6px solid #0b7d3b;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.mapa-card h3 {
  text-align: center;
  margin-bottom: 15px;
  color: #0b7d3b;
}

.mapa-card iframe {
  border-radius: 12px;
}

/* ========================= RESPONSIVO ========================= */
@media (max-width: 900px) {
  .empresa-cards-grid,
  .lojas-grid,
  .mapas-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 32px;
  }
}

/* ========================= INTRO PRODUTOS ========================= */
.produtos-intro {
  max-width: 900px;
  margin: 0 auto 80px;
  text-align: center;
  padding: 0 20px;
}

.produtos-intro h1 {
  font-size: 38px;
  color: #0b7d3b;
  margin-bottom: 25px;
}

.produtos-descricao {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333;
}

.produtos-descricao.destaque {
  font-size: 19px;
}

.produtos-descricao strong {
  color: #0b7d3b;
  font-weight: 700;
  position: relative;
}

.produtos-descricao strong::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 4px;
  background: rgba(255, 213, 0, 0.5);
  z-index: -1;
  border-radius: 2px;
}

.btn-mercado-livre {
  display: inline-block;
  margin-top: 30px;
  background: #ffd500;
  color: #000;
  padding: 16px 36px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-mercado-livre:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.titulo-produtos {
  font-size: 32px;
  color: #0b7d3b;
  text-align: center;
  margin-bottom: 50px;
}

/* ========================= BOTÃO MERCADO LIVRE - DESTAQUE ========================= */
a.btn-mercado-livre {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffd500 !important;
  color: #000 !important;
  padding: 16px 38px;
  border-radius: 40px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.3px;
  text-decoration: none !important;
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
  transition: all 0.3s ease;
}

a.btn-mercado-livre:hover {
  background: #e0b000 !important;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}

/* ========================= HERO EMPRESA ========================= */
.hero-empresa {
  background: linear-gradient(135deg, #0b7d3b, #0f9d58);
  padding: 120px 20px 90px;
  text-align: center;
  color: #fff;
}

.hero-empresa h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-empresa p {
  font-size: 22px;
  opacity: 0.95;
}

/* ========================= CONTEÚDO EMPRESA ========================= */
.empresa {
  padding: 90px 20px;
  background: #f9f9f9;
}

.empresa-conteudo {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.empresa-conteudo p {
  font-size: 20px;
  line-height: 2.1;
  margin-bottom: 35px;
  color: #333;
}

/* DESTAQUE EM NEGRITO */
.empresa-conteudo strong {
  color: #0b7d3b;
  font-weight: 700;
}

/* ========================= CARDS EMPRESA ========================= */
.empresa-cards-destaque {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

.empresa-card-destaque {
  background: #ffffff;
  border-radius: 22px;
  padding: 45px 35px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
  border-top: 6px solid #0b7d3b;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.empresa-card-destaque:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.empresa-card-destaque h3 {
  font-size: 26px;
  margin-bottom: 22px;
  color: #0b7d3b;
}

.empresa-card-destaque p {
  font-size: 18px;
  line-height: 1.9;
  color: #444;
}

/* CARD COM DETALHE AMARELO */
.empresa-card-destaque.amarelo {
  border-top-color: #ffd500;
}

.empresa-card-destaque.amarelo h3 {
  color: #b99700;
}

/* ========================= FRASE FINAL ========================= */
.empresa-frase {
  margin-top: 90px;
  font-size: 26px;
  font-weight: 600;
  color: #0b7d3b;
}

/* ========================= RESPONSIVO ========================= */
@media (max-width: 900px) {
  .hero-empresa h1 {
    font-size: 40px;
  }

  .hero-empresa p {
    font-size: 20px;
  }

  .empresa-conteudo p {
    font-size: 18px;
  }

  .empresa-frase {
    font-size: 22px;
  }
}


.float-linktree {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 62px;
  height: 62px;
  background: #39e09b; /* Verde Linktree */
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.float-linktree:hover {
  transform: scale(1.1);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.float-linktree i {
  color: #000;
}
/* ========================= TOP BAR SOCIAL ========================= */
.top-bar {
  background: #0b0b0b;
  padding: 8px 0;
  width: 100%;
}

.top-bar-flex {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.top-social {
  display: flex;
  gap: 18px;
}

.top-social a {
  color: #ffffff;
  font-size: 14px;
  transition: color 0.3s ease, transform 0.2s ease;
}

.top-social a:hover {
  color: #ffd500;
  transform: translateY(-2px);
}
/* ========================= BOTÃO FLUTUANTE MERCADO LIVRE ========================= */
.float-mercado-livre {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 70px;
  height: 70px;
  background: #ffd500;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.float-mercado-livre img {
  width: 42px;
  height: auto;
}

.float-mercado-livre:hover {
  transform: scale(1.1);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}
/* ========================= BOTÃO FLUTUANTE INSTAGRAM ========================= */
.float-instagram {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 62px;
  height: 62px;
  background: radial-gradient(circle at 30% 107%, 
    #fdf497 0%, 
    #fdf497 5%, 
    #fd5949 45%, 
    #d6249f 60%, 
    #285AEB 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.float-instagram:hover {
  transform: scale(1.1);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.float-instagram i {
  color: #fff;
}
/* ========================= BOTÃO FLUTUANTE INSTAGRAM (IMAGEM) ========================= */
.float-instagram-img {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 62px;
  height: 62px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.float-instagram-img img {
  width: 36px;
  height: 36px;
}

.float-instagram-img:hover {
  transform: scale(1.1);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}
.logo-link {
  display: inline-flex;
  align-items: center;
}

.logo-link img {
  cursor: pointer;
  transition: transform 0.2s ease;
}

.logo-link img:hover {
  transform: scale(1.03);
}
