/* ========== HEADER ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-nav);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.header__left {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

.header__whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  text-decoration: none;
  background: #25D366;
  border-radius: 50%;
  transition: transform 0.2s, box-shadow 0.2s;
}

.header__whatsapp img {
  display: block;
}

.header__whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(25, 180, 80, 0.5);
}

/* ========== HERO (Home) ========== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  background: linear-gradient(135deg, #4A7A59 0%, #3A6347 40%, #2C4A35 100%);
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: var(--space-3xl) var(--space-lg);
}

.hero__title {
  font-size: 1.75rem;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

/* ========== HERO SPLIT (Homepage two-column) ========== */
.hero-split {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 60vh;
}

.hero-split__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-3xl) var(--space-lg);
  background: var(--color-white);
}

.hero-split__text h1 {
  font-size: 2rem;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.hero-split__text p {
  font-size: 1.05rem;
  margin-bottom: var(--space-xl);
}

.hero-split__cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.hero-split__image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-alt);
  min-height: 300px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.hero-split__image--product {
  aspect-ratio: 4 / 3;
}

.hero-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
  background: linear-gradient(135deg, #4A7A59 0%, #3A6347 100%);
  padding: var(--space-3xl) 0;
  text-align: center;
}

.page-hero__title {
  font-size: 1.75rem;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.page-hero__subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}

/* ========== STATS ========== */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.stat-card {
  text-align: center;
  padding: var(--space-xl);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.stat-card__number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  display: block;
  margin-bottom: var(--space-xs);
}

.stat-card__label {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* ========== TRUST BADGES ========== */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  padding: var(--space-md);
  background: var(--color-bg);
  border-radius: var(--radius-sm);
}

/* ========== ABOUT PAGE ========== */
.about-story {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

.about-story__image {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.about-story__image img,
.about-story__image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ========== CONTACT PAGE ========== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.contact-info__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  font-size: 1.2rem;
}

.contact-info__item h4 {
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.contact-info__item p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ========== CTA STRIP ========== */
.cta-strip {
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-3xl) 0;
  text-align: center;
}

.cta-strip h2 {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-xl);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--color-bg-dark);
  color: var(--color-text-on-dark);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer__col p,
.footer__col li {
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
  color: var(--color-text-on-dark);
  opacity: 0.85;
}

.footer__col a {
  color: var(--color-text-on-dark);
  opacity: 0.85;
  text-decoration: none;
}

.footer__col a:hover {
  color: var(--color-primary-light);
  opacity: 1;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-lg);
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* ========== FINISH DESCRIPTION ========== */
.finish-desc {
  display: flex;
  align-items: center;
}

.finish-desc__text {
  font-size: 1.05rem;
  margin-bottom: 0;
}

/* ========== LAYOUT GRIDS ========== */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

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

.features-grid--mt {
  margin-top: var(--space-xl);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
