:root {
  --semente-cta: #ff8a1e;
  --semente-text: #ffffff;
  --semente-text-soft: rgba(255, 255, 255, 0.92);
}

[data-semente-premiada],
.semente-premiada {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  min-height: 100vh;
  isolation: isolate;
  color: var(--semente-text);
  font-family: var(--font-body, "Montserrat", Arial, sans-serif);
  /* Fallbacks usando assets do tema */
  --sp-bg: url('../assets/semente-premiada/bg-desktop.jpg');
  --sp-bg-mobile: var(--sp-bg);
  --sp-logo: url('../assets/semente-premiada/logo-seis-pés.svg');
  background-image: var(--sp-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.semente-premiada__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.68) 40%,
    rgba(0, 0, 0, 0.58) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.semente-premiada__inner {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
  padding: 64px 48px;
  display: grid;
  grid-template-columns: 420px 1fr;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 2;
  min-height: 100vh;
}

.semente-premiada__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.semente-premiada__logo img {
  display: block;
  max-width: 360px;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.45));
  background-image: var(--sp-logo);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.semente-premiada__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  color: var(--semente-text);
}

.semente-premiada__title {
  margin: 0;
  font-size: clamp(36px, 4vw, 64px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 800;
  color: var(--color-bg) !important;
}

.semente-premiada__subtitle {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--semente-text-soft);
  max-width: 620px;
}

.semente-premiada__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  height: 52px;
  padding: 0 30px;
  border-radius: 999px;
  border: 2px solid var(--semente-cta);
  color: var(--semente-cta);
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease;
}

.semente-premiada__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
  background: rgba(255, 138, 30, 0.15);
  color: #ffd4a4;
}

@media (max-width: 1024px) {
  .semente-premiada__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 48px 28px;
  }

  .semente-premiada__content {
    align-items: center;
    text-align: center;
  }

  .semente-premiada__subtitle {
    max-width: 540px;
  }
}

@media (max-width: 640px) {
  .semente-premiada {
    background-image: var(--sp-bg-mobile, var(--sp-bg));
  }

  .semente-premiada__inner {
    padding: 32px 20px;
    min-height: 90vh;
  }

  .semente-premiada__logo img {
    max-width: 180px;
  }

  .semente-premiada__title {
    font-size: 32px;
  }

  .semente-premiada__subtitle {
    font-size: 15px;
  }
}
