/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&family=Inter:wght@400;500;600&display=swap');

/* ── CSS VARIABLES (espelho exato do index.css) ── */
:root {
  --primary: #00AA00;
  --primary-foreground: #f5f5f5;
  --radius: 0.65rem;
  --background: #ffffff;
  --foreground: #1a1a1a;
  --card: #f5f5f5;
  --card-foreground: #1a1a1a;
  --secondary: #f5f5f5;
  --secondary-foreground: #1a1a1a;
  --muted: #e8f5e9;
  --muted-foreground: #666666;
  --accent: #ff8c00;
  --accent-foreground: #ffffff;
  --destructive: #ff4444;
  --border: #e0e0e0;
  --input: #ffffff;
  --ring: #00AA00;
}

/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: var(--border);
  outline-color: rgba(0, 170, 0, 0.5);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: 'Inter', sans-serif;
  line-height: 1.65;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="submit"]:not(:disabled),
[type="reset"]:not(:disabled),
a[href],
input[type="checkbox"]:not(:disabled) {
  cursor: pointer;
}

/* ── CONTAINER ── */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: 1280px;
  }
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s;
  line-height: 1;
}

.btn-primary:hover {
  box-shadow: 0 4px 14px rgba(0, 170, 0, .35);
  transform: scale(1.05);
}

.btn-primary:active {
  transform: scale(0.95);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--primary);
  padding: 10px 24px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--primary);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
  background: rgba(0, 170, 0, 0.1);
}

/* ── ANIMATIONS ── */
@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(0.85);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glow-pulse {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(0, 170, 0, 0.3);
  }

  50% {
    box-shadow: 0 0 40px rgba(0, 170, 0, 0.6);
  }
}

/* ── HEADER ── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  transition: background 0.3s, box-shadow 0.3s;
  border-bottom: 1px solid var(--border);
  padding: 8px;
}

header.scrolled {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

@media (min-width: 768px) {
  .header-inner {
    height: 64px;
  }
}

@media (min-width: 1024px) {
  .header-inner {
    height: 80px;
  }
}

/* Logo */
.logo-wrap {
  display: flex;
  align-items: center;
}

.logo-wrap img {
  width: 228px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 1.15rem;
  }
}

.logo-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .logo-brand {
    font-size: 1.15rem;
  }
}

.logo-sub {
  font-size: 0.7rem;
  color: var(--muted-foreground);
}

/* Desktop nav */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 32px;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-desktop .nav-link {
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.2s;
  padding: 0;
}

.nav-desktop .nav-link:hover {
  color: var(--primary);
}

/* Mobile menu btn */
.menu-btn {
  display: flex;
  background: none;
  border: none;
  padding: 8px;
  border-radius: 8px;
  color: var(--foreground);
  transition: background 0.15s;
}

.menu-btn:hover {
  background: var(--muted);
}

@media (min-width: 768px) {
  .menu-btn {
    display: none;
  }
}

/* Mobile drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 8px 16px 16px;
  border-top: 1px solid var(--border);
  background: #fff;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav .nav-link {
  background: none;
  border: none;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--foreground);
  padding: 10px 8px;
  border-radius: var(--radius);
  transition: background 0.15s, color 0.15s;
}

.mobile-nav .nav-link:hover {
  background: var(--muted);
  color: var(--primary);
}

/* ── HERO ── */
.hero {
  padding-top: 80px;
  padding-bottom: 48px;
  background: linear-gradient(180deg, #fff 0%, var(--muted) 100%);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    padding-top: 128px;
    padding-bottom: 80px;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding-top: 160px;
    padding-bottom: 128px;
  }
}

.hero-deco {
  position: absolute;
  top: 80px;
  right: 0;
  width: 384px;
  height: 384px;
  background: rgba(0, 170, 0, 0.05);
  border-radius: 50%;
  filter: blur(64px);
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (min-width: 1024px) {
  .hero-grid {
    gap: 48px;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0, 170, 0, 0.1);
  border-radius: 9999px;
  width: fit-content;
}

.badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

.badge span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

.hero h1 {
  font-size: clamp(1.8rem, 5vw, 3.75rem);
  line-height: 1.15;
  color: var(--foreground);
}

.hero h1 .text-primary {
  color: var(--primary);
}

.hero-desc {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero-desc {
    font-size: 1.1rem;
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 16px;
}

@media (min-width: 480px) {
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
}

.trust-badges {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 32px;
  margin-top: 8px;
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .trust-badges {
    gap: 24px;
  }
}

.trust-sep {
  width: 1px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
}

.trust-num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.trust-lbl {
  font-size: 0.7rem;
  color: var(--muted-foreground);
  margin-top: 2px;
}

/* Hero image */
.hero-img-wrap {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.hero-img-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.hero-blob1 {
  display: none;
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 160px;
  height: 160px;
  background: rgba(0, 170, 0, 0.05);
  border-radius: 50%;
  filter: blur(24px);
}

.hero-blob2 {
  display: none;
  position: absolute;
  top: -24px;
  left: -24px;
  width: 128px;
  height: 128px;
  background: rgba(255, 140, 0, 0.05);
  border-radius: 50%;
  filter: blur(32px);
}

@media (min-width: 768px) {

  .hero-blob1,
  .hero-blob2 {
    display: block;
  }
}

/* ── PRODUCT SECTIONS ── */
.product-section {
  position: relative;
  padding: 48px 0;
  overflow: hidden;
}

.product-section.alt {
  background: #fafafa;
}

@media (min-width: 768px) {
  .product-section {
    padding: 80px 0;
  }
}

@media (min-width: 1024px) {
  .product-section {
    padding: 96px 0;
  }
}

/* top glow bg */
.product-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 384px;
  height: 384px;
  background: rgba(0, 170, 0, 0.05);
  border-radius: 50%;
  filter: blur(64px);
  pointer-events: none;
  z-index: 0;
}

/* bottom divider line */
.product-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 170, 0, 0.3), transparent);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (min-width: 1024px) {
  .product-grid {
    gap: 48px;
  }
}

/* image column */
.product-img-col {
  position: relative;
  order: 2;
}

@media (min-width: 768px) {
  .product-grid.img-left .product-img-col {
    order: 1;
  }

  .product-grid.img-left .product-content-col {
    order: 2;
  }

  .product-grid.img-right .product-img-col {
    order: 2;
  }

  .product-grid.img-right .product-content-col {
    order: 1;
  }
}

.product-img-frame {
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  position: relative;
}

.product-img-frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.product-img-frame:hover img {
  transform: scale(1.05);
}

.img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.product-img-frame:hover .img-overlay {
  opacity: 1;
}

.img-blob-br {
  display: none;
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 96px;
  height: 96px;
  background: rgba(0, 170, 0, 0.1);
  border-radius: 50%;
  filter: blur(16px);
}

.img-blob-tl {
  display: none;
  position: absolute;
  top: -16px;
  left: -16px;
  width: 128px;
  height: 128px;
  background: rgba(255, 140, 0, 0.05);
  border-radius: 50%;
  filter: blur(24px);
}

@media (min-width: 768px) {

  .img-blob-br,
  .img-blob-tl {
    display: block;
  }
}

/* content column */
.product-content-col {
  order: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 768px) {
  .product-content-col {
    gap: 24px;
  }
}

.product-num-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.product-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.2;
  line-height: 1;
}

@media (min-width: 768px) {
  .product-number {
    font-size: 2.5rem;
  }
}

.product-line {
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9999px;
}

.product-title {
  font-size: clamp(1.4rem, 3vw, 2.25rem);
  line-height: 1.2;
  color: var(--foreground);
}

.product-desc {
  font-size: 0.95rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .product-desc {
    font-size: 1.05rem;
  }
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (min-width: 768px) {
  .feature-list {
    gap: 12px;
  }
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .feature-list li {
    font-size: 1rem;
  }
}

.feature-dot {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 170, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

@media (min-width: 768px) {
  .feature-dot {
    width: 24px;
    height: 24px;
  }
}

.feature-dot::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

@media (min-width: 768px) {
  .feature-dot::after {
    width: 8px;
    height: 8px;
  }
}

/* ── CONTACT SECTION ── */
.contact-section {
  padding: 48px 0;
  background: linear-gradient(180deg, #fff 0%, var(--muted) 100%);
}

@media (min-width: 768px) {
  .contact-section {
    padding: 80px 0;
  }
}

@media (min-width: 1024px) {
  .contact-section {
    padding: 128px 0;
  }
}

.contact-inner {
  max-width: 768px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .section-header {
    margin-bottom: 48px;
  }
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0, 170, 0, 0.1);
  border-radius: 9999px;
  margin-bottom: 16px;
}

.section-badge .dot2 {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.section-badge span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 3rem);
  color: var(--foreground);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .section-subtitle {
    font-size: 1.1rem;
  }
}

/* form card */
.form-card {
  background: #fff;
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 24px;
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .form-card {
    padding: 32px;
  }
}

@media (min-width: 1024px) {
  .form-card {
    padding: 48px;
  }
}

.form-block {
  margin-bottom: 28px;
}

@media (min-width: 768px) {
  .form-block {
    margin-bottom: 36px;
  }
}

.form-block-title {
  font-size: 1.1rem;
  color: var(--foreground);
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .form-block-title {
    font-size: 1.2rem;
    margin-bottom: 24px;
  }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.required {
  color: var(--accent);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  width: 100%;
  background: var(--input);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--foreground);
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(0, 170, 0, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.form-group textarea {
  resize: vertical;
  min-height: 96px;
}

.form-group.mt4 {
  margin-top: 16px;
}

/* checkbox grid */
.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 768px) {
  .checkbox-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
  }
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  padding: 0;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  accent-color: var(--primary);
  transition: border-color 0.2s;
}

.checkbox-item input[type="checkbox"]:hover {
  border-color: var(--primary);
}

.checkbox-item label {
  font-size: 0.9rem;
  font-weight: 400;
  cursor: pointer;
}

/* form actions */
.form-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
}

@media (min-width: 480px) {
  .form-actions {
    flex-direction: row;
    gap: 16px;
  }
}

/* ── TOAST ── */
.toast {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: var(--foreground);
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.3s ease;
  max-width: 360px;
  line-height: 1.4;
}

.toast.show {
  display: block;
}

.toast.success {
  background: var(--primary);
}

.toast.error {
  background: #e53935;
}

/* ── FOOTER ── */
footer {
  background: var(--foreground);
  color: var(--primary-foreground);
  padding: 32px 0;
}

@media (min-width: 768px) {
  footer {
    padding: 48px 0;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 32px;
  }
}

.footer-brand p {
  font-size: 0.8rem;
  color: rgba(245, 245, 245, 0.7);
  margin-top: 12px;
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(245, 245, 245, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.footer-divider {
  height: 1px;
  background: rgba(245, 245, 245, 0.15);
  margin: 24px 0;
}

@media (min-width: 768px) {
  .footer-divider {
    margin: 32px 0;
  }
}

.footer-copy {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(245, 245, 245, 0.7);
}

@media (min-width: 768px) {
  .footer-copy {
    font-size: 0.875rem;
  }
}

/* ── LOGO IMAGEM ── */
.logo-img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}

@media (min-width: 768px) {
  .logo-img {
    height: 42px;
  }
}

/* versão footer: logo fica sobre fundo escuro,
   aplicamos filtro para garantir boa leitura */
.logo-img-footer {
  height: 32px;
  /* logo já é verde escuro — em fundo #1a1a1a fica bem,
     brightness aumenta levemente para destacar */
  filter: brightness(1.15);
}