.quantity-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quantity-btn {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #ffffff; /* hunter-50 */
  color: #4d604d; /* hunter-600 */
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.quantity-btn:hover {
  background-color: #4d604d; /* forest-100 */
}

.quantity-input {
  width: 4rem;
  text-align: center;
  padding: 0.5rem;
  border: 2px solid #E6EDE6; /* hunter-100 */
  border-radius: 0.75rem;
  font-weight: 500;
  color: #2A412A; /* hunter-600 */
}

.variation-selector {
  margin-bottom: 1.5rem;
}

.variation-label {
  display: block;
  font-weight: 400;
  color: #2A412A; /* hunter-600 */
  margin-bottom: 0.75rem;
}

.variation-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.variation-option {
  min-width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  color: #2A412A; /* hunter-600 */
  border: 2px solid #E6EDE6; /* hunter-100 */
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.variation-option:hover, 
.variation-option.active {
  border-color: #2A412A; /* hunter-600 */
  background-color: #fff; /* hunter-50 */
}

.rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rating-stars {
  display: flex;
}

.rating-star {
  color: #FFD700;
  width: 1.25rem;
  height: 1.25rem;
}

.rating-text {
  font-size: 0.875rem;
  color: #6B8F6B; /* hunter-400 */
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: #FFFFFF;
  border-radius: 1rem;
  border: 1px solid #E6EDE6; /* hunter-100 */
  margin-bottom: 1rem;
}

.cart-item-image {
  width: 5rem;
  height: 5rem;
  border-radius: 0.75rem;
  object-fit: cover;
}

.cart-item-content {
  flex: 1;
}

.cart-item-title {
  font-weight: 500;
  color: #2A412A; /* hunter-600 */
  margin-bottom: 0.25rem;
}

.cart-item-variant {
  font-size: 0.875rem;
  color: #6B8F6B; /* hunter-400 */
  margin-bottom: 0.5rem;
}

.cart-item-price {
  font-weight: 500;
  color: #2A412A; /* hunter-600 */
}

.cart-item-remove {
  color: #FF6B6B;
  background: #4d604d;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.cart-item-remove:hover {
  color: #FF4040;
}

.cart-item-remove:hover * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px; /* Base para cálculos em rem */
}

body {
  font-family: 'Outfit', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  color: #1F301F; /* hunter-700 */
  background-color: #FFF; /* hunter-50 - fundo esverdeado claro */
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: #373737; /* forest-600 */
  transition: color 0.3s ease, border-color 0.3s ease;
}

a:hover, a:focus {
  color: #2A412A; /* hunter-600 */
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.5em;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  color: #1B6F1B; /* forest-600 */
  line-height: 1.2;
}

h1 { 
  font-size: 2.75rem; 
  letter-spacing: -0.02em;
}

h2 { 
  font-size: 2.25rem; 
  letter-spacing: -0.01em;
}

h3 { 
  font-size: 1.75rem; 
}

h4 { 
  font-size: 1.5rem; 
}

h5 { 
  font-size: 1.25rem; 
}

h6 { 
  font-size: 1.1rem;
  font-weight: 500;
}

p {
  margin-bottom: 1.2em;
  font-weight: 300;
  color: #1F301F; /* hunter-700 */
}

strong, b {
  font-weight: 600;
  color: #1B6F1B; /* forest-600 */
}

em, i {
  font-style: italic;
}

small {
  font-size: 0.85em;
}

blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 4px solid #1B6F1B; /* forest-600 */
  background-color: #FFFFFF; /* hunter-50 */
  font-style: italic;
  color: #2A412A; /* hunter-600 */
}

blockquote p:last-child {
  margin-bottom: 0;
}

/* Listas */
ul, ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

li {
  margin-bottom: 0.5rem;
}

/* Tabelas */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

table thead {
  background-color: #F4F7F4;
}

table th {
  font-weight: 600;
  color: #1B6F1B;
}

table th,
table td {
  padding: 1rem;
  border: 1px solid #E6EDE6;
  text-align: left;
  font-size: 0.9rem;
}

table tr:nth-child(even) {
  background-color: #F9FBF9;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-fluid {
  width: 100%;
  padding: 0 2rem;
}

.container-narrow {
  max-width: 800px;
}

.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3rem 0;
}

.section-lg {
  padding: 8rem 0;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 3rem; }
.mb-5 { margin-bottom: 5rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }
.mt-4 { margin-top: 3rem; }
.mt-5 { margin-top: 5rem; }

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-column {
  flex-direction: column;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: flex-end;
}

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 2rem; }
.gap-4 { gap: 3rem; }

/* Grid system simples */
.grid {
  display: grid;
}

.grid-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.grid-2 > * {
  flex: 0 0 calc(50% - 1rem);
}

.grid-3 {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.grid-3 > * {
  flex: 0 0 calc(33.333% - 1.334rem);
}

.grid-4 {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.grid-4 > * {
  flex: 0 0 calc(25% - 1.5rem);
}


header {
  background: #2A412A; /* hunter-600 - verde escuro */
  color: #FFFFFF;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .container {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-left {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.header-center {
  display: flex;
  justify-content: center;
  flex: 1;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 0 0 auto;
}

.logo {
  display: block;
  max-width: 160px;
  height: auto;
}

.logo img {
  display: block;
  max-width: 100%;
  height: auto;
}

.navbar {
  display: flex;
  gap: 2rem;
}

.navbar a {
  color: #F4F7F4;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  transition: color 0.3s, border-bottom 0.3s;
  padding-bottom: 0.25rem;
  position: relative;
  white-space: nowrap;
}

.navbar a:hover, 
.navbar a.active {
  color: #E6EDE6;
}

.navbar a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #E6EDE6;
  transition: width 0.3s ease;
}

.navbar a:hover::after,
.navbar a.active::after {
  width: 100%;
}

.search-form {
  position: relative;
  width: 200px;
}

.search-input {
  padding: 0.5rem 1rem;
  padding-right: 2.5rem;
  border-radius: 9999px;
  border: none;
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  width: 100%;
  transition: background-color 0.3s ease;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.search-input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.2);
}

.search-button {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.cart-button {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.cart-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #1B6F1B; /* forest-600 - verde médio */
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 600;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Menu mobile */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #F4F7F4;
  font-size: 1.5rem;
  cursor: pointer;
}

/* 
==============================================
HERO / BANNER
==============================================
*/
/* 
==============================================
SEÇÕES ESPECIAIS - HERO
==============================================
*/
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2rem;
  background-color: #F4F7F4; /* hunter-50 */
  color: #2A412A; /* hunter-600 */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(27, 111, 27, 0.05) 0%, rgba(42, 65, 42, 0.1) 100%);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-section .overline {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
  color: #6B8F6B; /* hunter-400 */
  margin-bottom: 1rem;
}

.hero-section h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: #1B6F1B; /* forest-600 */
  line-height: 1.1;
}

.hero-section p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Também manter a classe antiga para retrocompatibilidade */
.section-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2rem;
  background-color: #F4F7F4; /* hunter-50 */
  color: #2A412A; /* hunter-600 */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(27, 111, 27, 0.05) 0%, rgba(42, 65, 42, 0.1) 100%);
  z-index: 1;
}

.section-hero .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.section-hero .overline {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
  color: #6B8F6B; /* hunter-400 */
  margin-bottom: 1rem;
}

.section-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: #1B6F1B; /* forest-600 */
  line-height: 1.1;
}

.section-hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

/* Manchas orgânicas para background */
.organic-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  z-index: 0;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background-color: #1B6F1B; /* forest-600 */
  top: -100px;
  right: -150px;
}

.blob-2 {
  width: 300px;
  height: 300px;
  background-color: #2A412A; /* hunter-600 */
  bottom: -50px;
  left: -100px;
}

/* Para a versão Kids */
.kids-blob-1 {
  background-color: #E6E6FA; /* Lavanda */
}

.kids-blob-2 {
  background-color: #FFC0CB; /* Rosa Suave */
}

.kids-blob-3 {
  width: 200px;
  height: 200px;
  background-color: #89CFF0; /* Azul Bebê */
  bottom: 100px;
  right: 50px;
}

/* Versão com imagem de fundo */
.hero-bg-image {
  background: url("caminho/para/imagem.jpg") no-repeat center center;
  background-size: cover;
}

.hero-bg-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(27, 111, 27, 0.7) 0%, rgba(42, 65, 42, 0.4) 100%);
  z-index: 1;
}

.hero-bg-image h1,
.hero-bg-image p {
  color: #FFFFFF;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.btn-primary {
  border: none;
  background: linear-gradient(to right, #2A412A, #1B6F1B); /* hunter-600 a forest-600 */
  color: #FFFFFF;
  box-shadow: 0 6px 15px rgba(27, 111, 27, 0.25);
}

.btn-primary:hover, .btn-primary:focus {
  box-shadow: 0 8px 20px rgba(27, 111, 27, 0.35);
  transform: translateY(-3px);
  color: #FFFFFF;
}

.btn-secondary {
  border: 2px solid #2A412A; /* hunter-600 */
  background: transparent;
  color: #2A412A; /* hunter-600 */
}

.btn-secondary:hover, .btn-secondary:focus {
  background-color: #F4F7F4; /* hunter-50 */
  transform: translateY(-2px);
  color: #2A412A; /* hunter-600 */
}

.btn-text {
  background: transparent;
  color: #2A412A; /* hunter-600 */
  padding: 0.5rem;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-text:hover, .btn-text:focus {
  color: #1B6F1B; /* forest-600 */
}

.btn-text svg {
  transition: transform 0.3s ease;
}

.btn-text:hover svg {
  transform: translateX(4px);
}

.btn-icon {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2A412A; /* hunter-600 */
  color: #FFFFFF;
}

.btn-icon:hover, .btn-icon:focus {
  background-color: #1B6F1B; /* forest-600 */
}

.btn-accent {
  background-color: #FFFFFF;
  color: #1B6F1B;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.btn-accent:hover, .btn-accent:focus {
  background-color: #F4F7F4;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

/* Elementos de formulário */
.form-group {
  margin-bottom: 2rem;
}

label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 500;
  color: #2A412A; /* hunter-600 */
  font-size: 0.95rem;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="url"],
textarea,
select {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid #E6EDE6; /* hunter-100 */
  border-radius: 1.5rem;
  background-color: #FFFFFF;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: #2A412A; /* hunter-600 */
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #2A412A; /* hunter-600 */
  box-shadow: 0 0 0 3px rgba(27, 111, 27, 0.15);
}

textarea {
  min-height: 150px;
  resize: vertical;
  padding: 1.25rem;
}

::placeholder {
  color: #7DA47D; /* Cor aproximada para placeholder, como mostrado no design */
  opacity: 0.8;
}

.form-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.form-row .form-group {
  flex: 1 1 300px;
}

/* 
==============================================
CARDS E GRIDS
==============================================
*/
/* Grid de produtos */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.product-grid > * {
  flex: 0 0 calc(33.333% - 1.334rem);
}

.product-card {
  position: relative;
  background-color: #FFFFFF;
  border-radius: 1.5rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, #F4F7F4, #E8F0E8); /* hunter-50 a forest-100 */
  border-radius: 1.5rem;
  transform: rotate(-6deg);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.product-card:hover::before {
  opacity: 1;
  transform: rotate(0);
}

.product-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 1.5rem 1.5rem 0 0;
  transition: transform 0.5s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-info {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-info h3 {
  font-size: 1.25rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: #2A412A; /* hunter-600 */
  margin-bottom: 0.5rem;
}

.product-info p {
  font-size: 0.875rem;
  color: #6B8F6B; /* hunter-400 */
  margin-bottom: 1rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  display: flex;
  align-items: center;
  margin-top: auto;
  justify-content: space-between;
}

.product-price .price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2A412A; /* hunter-600 */
}

.product-price .old-price {
  font-size: 0.875rem;
  color: #999999;
  text-decoration: line-through;
  margin-left: 0.5rem;
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #2A412A; /* hunter-600 */
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  z-index: 2;
}

.product-badge.sale {
  background-color: #FF6B6B;
}

.product-badge.new {
  background-color: #1B6F1B; /* forest-600 */
}

.product-badge.category {
  left: 1rem;
  right: auto;
  background-color: #2A412A; /* hunter-600 */
}

.product-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-info h3 {
  font-size: 1.25rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: #1B6F1B;
  margin-bottom: 0.5rem;
}

.product-info p {
  font-size: 0.875rem;
  color: #6B8F6B;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.product-price {
  display: flex;
  align-items: center;
  margin-top: auto;
}

.product-price .price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1F301F;
}

.product-price .old-price {
  font-size: 0.875rem;
  color: #999999;
  text-decoration: line-through;
  margin-left: 1rem;
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #1B6F1B;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  z-index: 2;
}

.product-badge.sale {
  background-color: #FF6B6B;
}

.product-badge.new {
  background-color: #3C91E6;
}

/* Cards genéricos */
.card {
  position: relative;
  background-color: #FFFFFF;
  border-radius: 1.5rem;
  box-shadow: 0 6px 16px rgba(27, 111, 27, 0.08); /* Sombra esverdeada */
  overflow: hidden;
  transition: all 0.3s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, #ffffff, #E8F0E8); /* hunter-50 a forest-100 */
  border-radius: 1.5rem;
  transform: rotate(-6deg);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.card:hover {
  box-shadow: 0 12px 30px rgba(27, 111, 27, 0.12); /* Sombra esverdeada mais profunda */
  transform: translateY(-3px);
}

.card:hover::before {
  opacity: 1;
  transform: rotate(0);
}

.card-icon {
  width: 3rem;
  height: 3rem;
  background-color: #ffffff; /* hunter-50 */
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #2A412A; /* hunter-600 */
}

.card-header {
  padding: 1.75rem;
  background-color: #ffffff; /* hunter-50 */
  border-bottom: 1px solid #E6EDE6; /* hunter-100 */
}

.card-body {
  padding: 1.75rem;
}

.card-footer {
  padding: 1.0rem;
  border-top: 1px solid #E6EDE6; /* hunter-100 */
  background-color: #F9FBF9;
}

footer {
  background: #2A412A;
  color: #FFFFFF;
  padding: 2rem 0 2rem;
  margin-top: 2rem;
}

footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-col {
  flex: 1 1 320px;
}

.footer-col h4 {
  margin-bottom: 1.0rem;
  font-size: 1.0rem;
  font-weight: 500;
  color: #ffffff;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #6B8F6B;
}

.footer-col p,
.footer-col a {
  font-size: 0.675rem;
  color: #E6EDE6;
  margin-bottom: 0.75rem;
  display: block;
}

.footer-col a {
  transition: all 0.3s ease;
  opacity: 0.9;
}

.footer-col a:hover, 
.footer-col a:focus {
  color: #FFFFFF;
  opacity: 1;
  padding-left: 2px;
}

.footer-bottom {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.675rem;
  color: #E6EDE6;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Social links */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #FFFFFF;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #1B6F1B;
  transform: translateY(-3px);
}

.social-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-icon-facebook {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%23FFFFFF' d='M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z'%3E%3C/path%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 10px;
}

.social-icon-instagram {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23FFFFFF' d='M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z'%3E%3C/path%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px;
}

.social-icon-twitter {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23FFFFFF' d='M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z'%3E%3C/path%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px;
}

.social-icon-linkedin {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23FFFFFF' d='M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z'%3E%3C/path%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px;
}

/* 
==============================================
SEÇÕES ESPECIAIS
==============================================
*/
/* Seção de tela cheia */
.full-screen-section {
  min-height: 100vh;
  padding: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #E8F0E8;
  text-align: center;
}

/* Seção com fundo dividido */
.split-section {
  display: flex;
  flex-wrap: wrap;
  min-height: 600px;
}

.split-content {
  flex: 1 1 50%;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-image {
  flex: 1 1 50%;
  background-size: cover;
  background-position: center;
  min-height: 400px;
}

/* Seção com fundo escuro */
.dark-section {
  background-color: #2A412A;
  color: #FFFFFF;
}

.dark-section h2, 
.dark-section h3 {
  color: #ffffff;
}

/* Seção com fundo gradiente */
.gradient-section {
  background: linear-gradient(135deg, #1B6F1B 0%, #2A412A 100%);
  color: #FFFFFF;
}

.gradient-section h2, 
.gradient-section h3 {
  color: #ffffff;
}


.shadow-sm {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.shadow {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.shadow-lg {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Bordas arredondadas */
.rounded-sm {
  border-radius: 0.25rem;
}

.rounded {
  border-radius: 0.5rem;
}

.rounded-lg {
  border-radius: 1rem;
}

.rounded-full {
  border-radius: 9999px;
}

/* Alinhamento de texto */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}


.bg-primary {
  background-color: #1B6F1B; /* forest-600 - verde médio */
}

.bg-secondary {
  background-color: #2A412A; /* hunter-600 - verde escuro */
}

.bg-light {
  background-color: #fff; /* hunter-50 - verde claro */
}

.bg-lighter {
  background-color: #E8F0E8; /* forest-100 - verde muito claro */
}

.bg-white {
  background-color: #FFFFFF;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, #1B6F1B, #2A412A); /* forest-600 a hunter-600 */
}

.bg-gradient-light {
  background: linear-gradient(135deg, #fff, #E8F0E8); /* hunter-50 a forest-100 */
}

.text-primary {
  color: #1B6F1B; /* forest-600 - verde médio */
}

.text-secondary {
  color: #2A412A; /* hunter-600 - verde escuro */
}

.text-light {
  color: #fff; /* hunter-50 - verde claro */
}

.text-muted {
  color: #6B8F6B; /* hunter-400 - tom médio */
}

.border-primary {
  border-color: #1B6F1B; /* forest-600 - verde médio */
}

.border-secondary {
  border-color: #2A412A; /* hunter-600 - verde escuro */
}

.border-light {
  border-color: #E6EDE6; /* hunter-100 - borda suave */
}

/* Alertas e notificações */
.alert {
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
  background-color: #fff; /* hunter-50 */
  border-left: 4px solid #2A412A; /* hunter-600 */
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.alert-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #2A412A; /* hunter-600 */
}

.alert-content {
  color: #2A412A; /* hunter-600 */
  font-weight: 500;
}

.alert-success {
  background-color: #E8F5E9;
  border-left: 4px solid #4CAF50;
}

.alert-success .alert-icon {
  color: #2E7D32;
}

.alert-info {
  background-color: #E3F2FD;
  border-left: 4px solid #2196F3;
}

.alert-info .alert-icon {
  color: #0D47A1;
}

.alert-warning {
  background-color: #FFF3E0;
  border-left: 4px solid #FF9800;
}

.alert-warning .alert-icon {
  color: #E65100;
}

.alert-danger {
  background-color: #FFEBEE;
  border-left: 4px solid #F44336;
}

.alert-danger .alert-icon {
  color: #C62828;
}

/* Badge / Distintivo */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  background-color: #fff; /* hunter-50 */
  color: #2A412A; /* hunter-600 */
}

.badge-primary {
  background-color: #2A412A; /* hunter-600 */
  color: #FFFFFF;
}

.badge-secondary {
  background-color: #fff; /* hunter-50 */
  color: #2A412A; /* hunter-600 */
}

.badge-success {
  background-color: #1B6F1B; /* forest-600 */
  color: #FFFFFF;
}

.badge-danger {
  background-color: #FF6B6B;
  color: #FFFFFF;
}

/* Divisor */
.divider {
  width: 100%;
  height: 1px;
  background-color: #E6EDE6;
  margin: 2rem 0;
}

.divider-vertical {
  height: 100%;
  width: 1px;
  background-color: #E6EDE6;
  margin: 0 2rem;
}

/* 
==============================================
RESPONSIVIDADE
==============================================
*/
@media (max-width: 1200px) {
  html {
    font-size: 15px;
  }
  
  .container {
    max-width: 992px;
  }
}

@media (max-width: 992px) {
  html {
    font-size: 14px;
  }
  
  .container {
    max-width: 768px;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .section-hero h1 {
    font-size: 3rem;
  }
  
  .grid-3 > *, .grid-4 > * {
    flex: 0 0 calc(50% - 1rem);
  }
  
  .split-content {
    padding: 3rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  .container {
    max-width: 100%;
    padding: 0 1.5rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section-hero {
    padding: 2rem 1rem;
  }
  
  .section-hero h1 {
    font-size: 2.5rem;
  }
  
  .grid-2 > *, .grid-3 > *, .grid-4 > * {
    flex: 0 0 100%;
  }
  
  .product-grid > * {
    flex: 0 0 100%;
  }
  
  .split-section {
    flex-direction: column;
  }
  
  .split-content, .split-image {
    flex: 1 1 100%;
  }
  
  /* Header responsivo */
  header .container {
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .header-left {
    flex: 0 0 auto;
  }
  
  .header-center {
    order: 3;
    flex: 1 0 100%;
    justify-content: flex-start;
  }
  
  .header-right {
    flex: 1 0 auto;
    justify-content: flex-end;
  }
  
  /* Menu mobile */
  .menu-toggle {
    display: block;
  }
  
  .navbar {
    position: fixed;
    top: 0;
    right: -140px;
    width: 280px;
    height: 100vh;
    background-color: #2A412A;
    flex-direction: column;
    padding: 2rem 2rem;
    z-index: 999;
    transition: right 0.3s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
  }
  
  .navbar.open {
    right: 0;
  }
  
  .navbar a {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
  }
  
  .navbar a::after {
    display: none;
  }
  
  .close-menu {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #FFFFFF;
    cursor: pointer;
  }
}

@media (max-width: 480px) {
  .section-hero h1 {
    font-size: 2.25rem;
  }
  
  .section-hero p {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
}

.acoes-produto.hidden-phone .botao-comprar {
    width: auto;
    display: table;
    margin: 0 auto;
    margin-top: 0 !important;
    font-size: 16px;
    background: #739173;
    padding: 5px 30px;
    border-radius: 5PX;
    color: #ffffff !important;
    line-height: normal !important;
    border: 0px solid;
    text-transform: uppercase;
    
}

.span12.banner.tarja {
    text-align: -webkit-center;
}

.busca .botao-busca {
    position: absolute;
    right: 10px;
    background: 0 0;
    border: none;
    color: #d1ded1 !important;
    font-size: 16px;
    padding: inherit;
}

.busca .botao-busca {
    position: absolute;
    right: 5px;
    top: -6px;
    height: 70px;
}


footer {
  order: 2;

}


.listagem .listagem-item {
    height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.listagem .span3 .imagem-produto {
    width: 100%;
}