/* ================================
   HERO
   ================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--warm-brown) 0%, #5C4433 40%, var(--amber) 100%);
  color: var(--white);
  padding: var(--space-4xl) var(--space-xl);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(212, 168, 67, 0.15) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-logo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto var(--space-xl);
  border: 3px solid rgba(212, 168, 67, 0.5);
  box-shadow: 0 0 40px rgba(212, 168, 67, 0.3);
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: var(--space-md);
  line-height: 1.1;
}

.hero-title .highlight {
  color: var(--honey-gold);
}

.hero-tagline {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: var(--space-2xl);
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================
   ABOUT
   ================================ */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-image {
  aspect-ratio: 4/3;
  border-radius: var(--border-radius-lg);
  background: linear-gradient(135deg, var(--honey-gold-light) 0%, var(--amber) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80'%3E%3Cpath d='M40 0 L73.3 20 L73.3 60 L40 80 L6.7 60 L6.7 20 Z' fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='1'/%3E%3C/svg%3E") repeat;
  background-size: 60px;
}

.about-image-text {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  text-align: center;
  padding: var(--space-xl);
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.about-text h3 {
  font-size: 1.75rem;
  color: var(--warm-brown);
  margin-bottom: var(--space-lg);
}

.about-text p {
  color: var(--gray-dark);
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.about-feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 600;
  font-size: 0.9375rem;
}

.about-feature svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: var(--honey-gold);
}

/* ================================
   PRODUCTS
   ================================ */
.products {
  background: var(--cream);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.product-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.product-image {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-card:nth-child(1) .product-image {
  background: linear-gradient(135deg, #F0C850 0%, #D4A843 100%);
}

.product-card:nth-child(2) .product-image {
  background: linear-gradient(135deg, #F5E6C8 0%, #E8D5A8 100%);
}

.product-card:nth-child(3) .product-image {
  background: linear-gradient(135deg, #E8C96A 0%, #C67C2A 100%);
}

.product-icon {
  width: 80px;
  height: 80px;
}

.product-body {
  padding: var(--space-xl);
}

.product-name {
  font-size: 1.375rem;
  margin-bottom: var(--space-sm);
  color: var(--warm-brown);
}

.product-description {
  font-size: 0.9375rem;
  color: var(--gray-dark);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.product-card .btn-whatsapp {
  width: 100%;
}

/* ================================
   BENEFITS
   ================================ */
.benefits {
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.benefit-card {
  text-align: center;
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  transition: all var(--transition);
}

.benefit-card:hover {
  background: var(--cream);
  transform: translateY(-4px);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-lg);
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--honey-gold);
}

.benefit-card h3 {
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
  color: var(--warm-brown);
}

.benefit-card p {
  font-size: 0.9375rem;
  color: var(--gray-dark);
  line-height: 1.6;
}

/* ================================
   BLOG PREVIEW
   ================================ */
.blog-preview {
  background: var(--cream);
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.blog-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.blog-card-image {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  text-align: center;
  padding: var(--space-md);
}

.blog-card:nth-child(1) .blog-card-image {
  background: linear-gradient(135deg, #D4A843, #C67C2A);
}

.blog-card:nth-child(2) .blog-card-image {
  background: linear-gradient(135deg, #4A3728, #6B5442);
}

.blog-card:nth-child(3) .blog-card-image {
  background: linear-gradient(135deg, #C67C2A, #B8922E);
}

.blog-card-body {
  padding: var(--space-lg);
}

.blog-card-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--amber);
  margin-bottom: var(--space-sm);
}

.blog-card-title {
  font-size: 1.125rem;
  color: var(--warm-brown);
  margin-bottom: var(--space-sm);
  line-height: 1.4;
}

.blog-card-excerpt {
  font-size: 0.875rem;
  color: var(--gray-dark);
  line-height: 1.6;
}

.blog-preview-cta {
  text-align: center;
}

/* ================================
   CONTACT
   ================================ */
.contact {
  background: var(--warm-brown);
  color: var(--white);
}

.contact .section-title {
  color: var(--white);
}

.contact .section-subtitle {
  color: rgba(255, 248, 231, 0.8);
}

.contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2xl);
}

.contact-info {
  display: flex;
  gap: var(--space-3xl);
  flex-wrap: wrap;
  justify-content: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.contact-item svg {
  width: 24px;
  height: 24px;
  fill: var(--honey-gold);
  flex-shrink: 0;
}

.contact-item span {
  font-size: 1rem;
  opacity: 0.9;
}
