/* ==========================================
   ECO PRIME — Landing Page CSS
   Palette: Deep Navy #0D1F3C | Lime Green #7DC832 | White
   ========================================== */

/* -------- RESET & BASE -------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #0D1F3C;
  --navy-mid:  #122544;
  --navy-light:#1A3057;
  --green:     #7DC832;
  --green-dark:#5FA320;
  --green-glow:rgba(125,200,50,0.18);
  --white:     #ffffff;
  --off-white: #f5f7fa;
  --gray-100:  #eef1f6;
  --gray-200:  #dde3ee;
  --gray-500:  #8896ab;
  --gray-700:  #4a5568;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(13,31,60,0.08);
  --shadow-md: 0 8px 32px rgba(13,31,60,0.14);
  --shadow-lg: 0 20px 60px rgba(13,31,60,0.22);
  --shadow-green: 0 6px 24px rgba(125,200,50,0.30);
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
  --font-body: 'Inter', system-ui, sans-serif;
  --font-head: 'Outfit', 'Inter', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--navy);
  overflow-x: hidden;
  line-height: 1.6;
}

/* -------- SCROLLBAR -------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }

/* -------- UTILITIES -------- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-green { color: var(--green); }

.logo-svg-header {
  width: 150px;
  height: 150px;
  object-fit: contain;
  display: block;
  /* Remove excess transparent space from PNG */
  margin: -20px -20px;
  max-width: 190px;
}

/* -------- HERO STATS — alinhado à esquerda com os botões -------- */
.hero__stats {
  display: flex !important;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  backdrop-filter: blur(8px);
  width: fit-content;
  /* alinhado à esquerda — sem margin auto */
  margin-left: 0;
  margin-right: auto;
}
/* Classe antiga de centralizacao — agora ignorada (mantemos alinhamento esquerda) */
.hero__stats--center {
  margin-left: 0;
  margin-right: auto;
  justify-content: flex-start;
}

/* -------- BUTTONS -------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
  border-radius: var(--radius-xl);
  letter-spacing: 0.01em;
}
.btn--sm  { font-size: 0.85rem; padding: 10px 22px; }
.btn--md  { font-size: 0.95rem; padding: 14px 30px; }
.btn--lg  { font-size: 1rem;    padding: 16px 36px; }
.btn--xl  { font-size: 1.1rem;  padding: 18px 44px; }
.btn--full { width: 100%; justify-content: center; }

.btn--primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-green);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(125,200,50,0.45);
  filter: brightness(1.05);
}
.btn--primary:active { transform: translateY(0); }

.btn--whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
}
.btn--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.50);
}

/* -------- LOGO -------- */
.header__logo, .footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon { flex-shrink: 0; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-eco  { font-family: var(--font-head); font-size: 1.35rem; font-weight: 800; color: var(--navy); letter-spacing: -0.01em; }
.logo-prime{ font-family: var(--font-head); font-size: 1.35rem; font-weight: 800; color: var(--green); letter-spacing: -0.01em; }
.logo-sub  { font-size: 0.58rem; font-weight: 600; color: var(--gray-500); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 2px; }

/* footer logo text white */
.footer .logo-eco  { color: var(--white); }
.footer .logo-prime{ color: var(--green); }
.footer .logo-sub  { color: rgba(255,255,255,0.5); }

/* -------- SECTION HEADERS -------- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  width: fit-content;
  max-width: max-content;
  background: var(--green-glow);
  color: var(--green-dark);
  border: 1px solid rgba(125,200,50,0.3);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section-tag--dark {
  background: rgba(125,200,50,0.12);
  color: var(--green);
  border-color: rgba(125,200,50,0.25);
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-title--white { color: var(--white); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-700);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-subtitle--light { color: rgba(255,255,255,0.72); }
.section-cta { text-align: center; margin-top: 48px; }


/* ========================================
   HEADER
   ======================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.header.scrolled {
  box-shadow: var(--shadow-md);
}
.header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4px 24px;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  overflow: hidden;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  letter-spacing: 0.01em;
}
.nav-link:hover, .nav-link.active {
  color: var(--green);
  background: var(--green-glow);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 120px 0 0 0;
  background: rgba(13,31,60,0.98);
  backdrop-filter: blur(16px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform var(--transition);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.mobile-nav-link {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  padding: 10px 24px;
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.mobile-nav-link:hover { color: var(--green); }


/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--navy);
}
.hero__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  /* Ensure video element also fills correctly */
  position: absolute;
  inset: 0;
  opacity: 0.6;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(13,31,60,0.92) 0%,
    rgba(13,31,60,0.75) 40%,
    rgba(13,31,60,0.45) 70%,
    rgba(13,50,30,0.30) 100%
  );
}

/* Decorative curves (removed by user request) */
/* .hero__bg::after {
  content: '';
  position: absolute;
  bottom: -2px; left: -5%;
  width: 55%;
  height: 120px;
  background: var(--green);
  border-radius: 0 80px 0 0;
  opacity: 0.12;
} */

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 80px 0 100px;
  max-width: 720px;
  animation: slideInLeft 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(125,200,50,0.15);
  border: 1px solid rgba(125,200,50,0.35);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: 0.6; }
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.hero__title .text-green {
  background: linear-gradient(90deg, var(--green), #a8e040);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 38px;
  max-width: 580px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  backdrop-filter: blur(8px);
  width: fit-content;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}
.stat-number {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.18);
}

.hero__wave-bottom {
  display: none;
}
.hero__wave-bottom svg { display: none; }


/* ========================================
   CREDIBILITY STRIP (CARDS DE DIFERENCIAIS)
   ======================================== */
.credibility {
  position: relative;
  background: linear-gradient(180deg, #fbfdf9 0%, #f4fbf0 100%);
  padding: 68px 0 32px;
  overflow: hidden;
  z-index: 2;
}
.credibility__blob,
.produtos__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.7;
}
.credibility__blob--1 {
  width: 380px;
  height: 380px;
  top: -80px;
  left: -100px;
  background: radial-gradient(circle, rgba(125,200,50,0.16) 0%, rgba(125,200,50,0) 70%);
}
.credibility__blob--2 {
  width: 340px;
  height: 340px;
  bottom: -60px;
  right: -80px;
  background: radial-gradient(circle, rgba(125,200,50,0.12) 0%, rgba(125,200,50,0) 70%);
}
.credibility__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}
.cred-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 22px;
  padding: 34px 22px 28px;
  text-align: center;
  box-shadow: 0 16px 36px -10px rgba(13, 31, 60, 0.07),
              0 2px 6px rgba(13, 31, 60, 0.03);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cred-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 52px -12px rgba(125, 200, 50, 0.24),
              0 0 0 1px rgba(125, 200, 50, 0.35);
  background: #ffffff;
}
.cred-icon {
  width: 66px;
  height: 66px;
  background: rgba(125, 200, 50, 0.12);
  border: 2px solid rgba(125, 200, 50, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: #62a320;
  transition: all 0.35s ease;
  box-shadow: 0 6px 16px -4px rgba(125, 200, 50, 0.18);
}
.cred-icon svg {
  transition: stroke 0.3s ease;
}
.cred-card:hover .cred-icon {
  background: var(--green);
  border-color: var(--green);
  color: #ffffff;
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 10px 22px -3px rgba(125, 200, 50, 0.38);
}
.cred-title {
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 8px;
  line-height: 1.3;
}
.cred-desc {
  font-size: 0.86rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}


/* ========================================
   PRODUTOS (PORTFÓLIO)
   ======================================== */
.produtos {
  position: relative;
  background: linear-gradient(180deg, #f4fbf0 0%, #ffffff 35%, #f7fcf5 100%);
  padding: 36px 0 90px;
  overflow: hidden;
  z-index: 2;
}
.produtos__blob--1 {
  width: 440px;
  height: 440px;
  top: 8%;
  right: -120px;
  background: radial-gradient(circle, rgba(125,200,50,0.15) 0%, rgba(125,200,50,0) 70%);
}
.produtos__blob--2 {
  width: 420px;
  height: 420px;
  bottom: 8%;
  left: -100px;
  background: radial-gradient(circle, rgba(125,200,50,0.12) 0%, rgba(125,200,50,0) 70%);
}
.section-tag--pill {
  display: inline-flex;
  align-items: center;
  background: rgba(125, 200, 50, 0.14);
  color: #498218;
  border: 1px solid rgba(125, 200, 50, 0.32);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 999px;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(125, 200, 50, 0.10);
}
.section-title--dark {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 10px;
}
.produtos .section-subtitle {
  font-size: 1.05rem;
  color: #64748b;
  max-width: 580px;
  margin: 0 auto;
}
.produtos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  position: relative;
  z-index: 2;
  margin-top: 48px;
}
.produto-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 36px -10px rgba(13, 31, 60, 0.08),
              0 2px 6px rgba(13, 31, 60, 0.03);
  border: 1px solid rgba(13, 31, 60, 0.06);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}
.produto-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 58px -14px rgba(125, 200, 50, 0.22),
              0 0 0 1px rgba(125, 200, 50, 0.35);
}
.produto-card__img-wrap {
  position: relative;
  height: 220px;
  background: var(--gray-100);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.produto-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.produto-card:hover .produto-card__img-wrap img {
  transform: scale(1.06);
}
.produto-card__ribbon {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, #7DC832 0%, #5ba415 100%);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 6px 6px 6px 1px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  box-shadow: 0 4px 14px rgba(125, 200, 50, 0.38);
  z-index: 3;
}
.produto-card__zoom-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 12px rgba(13, 31, 60, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 3;
}
.produto-card__zoom-btn:hover {
  background: var(--green);
  color: #ffffff;
  border-color: var(--green);
  transform: scale(1.12);
  box-shadow: 0 6px 18px rgba(125, 200, 50, 0.4);
}
.produto-card__body {
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: left;
  background: #ffffff;
}
.produto-card__title {
  font-family: var(--font-head);
  font-size: 1.04rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.35;
  margin-bottom: 10px;
  text-align: left;
}
.produto-card__desc {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  text-align: left;
  flex: 1;
}


/* ========================================
   DIFERENCIAIS
   ======================================== */
.diferenciais {
  background: var(--navy);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.diferenciais__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.diferenciais__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.diferenciais__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,31,60,0.93) 0%,
    rgba(13,31,60,0.84) 50%,
    rgba(13,31,60,0.93) 100%
  );
}
.diferenciais__content {
  position: relative;
  z-index: 2;
}
.diferenciais::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(125,200,50,0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}
.diferenciais::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(125,200,50,0.10) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}
.diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.dif-card {
  background: rgba(13, 31, 60, 0.70);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}
.dif-card:hover {
  background: rgba(125,200,50,0.15);
  border-color: rgba(125,200,50,0.35);
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.45);
}
.dif-icon {
  width: 64px; height: 64px;
  background: rgba(125,200,50,0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: all var(--transition);
}
.dif-card:hover .dif-icon {
  background: rgba(125,200,50,0.20);
  transform: rotate(-5deg) scale(1.1);
}
.dif-card h3 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}
.dif-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}


/* ========================================
   MERCADOS
   ======================================== */
.mercados {
  background: var(--white);
  padding: 96px 0;
}
.mercados__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.mercado-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 20px 20px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
  transition: all var(--transition);
  cursor: default;
}
.mercado-item:hover {
  background: var(--green-glow);
  border-color: rgba(125,200,50,0.30);
  transform: translateX(4px);
  color: var(--navy);
}
.mercado-icon {
  width: 48px; height: 48px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.mercado-item:hover .mercado-icon {
  background: white;
  transform: scale(1.1);
}

.credibility-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border: 1px solid rgba(125,200,50,0.25);
  border-radius: var(--radius-lg);
  padding: 24px 40px;
  text-align: center;
}
.cq-icon { flex-shrink: 0; }
.credibility-quote p {
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 500;
}
.credibility-quote strong { color: var(--green); }


/* ========================================
   CTA WHATSAPP
   ======================================== */
.cta-whatsapp {
  background: var(--navy);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.cta-whatsapp__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.cta-whatsapp__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
}
.cta-whatsapp__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,31,60,0.80) 0%,
    rgba(13,31,60,0.55) 50%,
    rgba(13,31,60,0.80) 100%
  );
}
.cta-whatsapp__content-wrap {
  position: relative;
  z-index: 2;
}
.cta-whatsapp__content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.cta-wa-icon {
  width: 110px; height: 110px;
  background: rgba(37,211,102,0.15);
  border: 2px solid rgba(37,211,102,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.cta-wa-text { flex: 1; min-width: 260px; }
.cta-wa-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 10px;
}
.cta-wa-text p { color: rgba(255,255,255,0.65); font-size: 1rem; }


/* ========================================
   FORMULÁRIO
   ======================================== */
.formulario {
  position: relative;
  background: linear-gradient(180deg, #f4fbf0 0%, #ffffff 35%, #f7fcf5 100%);
  padding: 96px 0;
  overflow: hidden;
  z-index: 2;
}
.formulario__blob--1 {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.7;
  width: 440px;
  height: 440px;
  top: 8%;
  right: -120px;
  background: radial-gradient(circle, rgba(125,200,50,0.15) 0%, rgba(125,200,50,0) 70%);
}
.formulario__blob--2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.7;
  width: 420px;
  height: 420px;
  bottom: 8%;
  left: -100px;
  background: radial-gradient(circle, rgba(125,200,50,0.12) 0%, rgba(125,200,50,0) 70%);
}
.formulario .container {
  position: relative;
  z-index: 2;
}
.formulario__wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.formulario__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.formulario__info > p {
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 1rem;
}
.formulario__img-wrap {
  width: 100%;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.formulario__product-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 16px 32px rgba(13,31,60,0.10));
  transition: transform 0.4s ease;
}
.formulario__img-wrap:hover .formulario__product-img {
  transform: scale(1.02);
}
.form-contact-list { display: flex; flex-direction: column; gap: 18px; }
.form-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.fci-icon {
  width: 44px; height: 44px;
  background: var(--green-glow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fci-label { display: block; font-size: 0.75rem; color: var(--gray-500); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.fci-value { display: block; font-size: 0.95rem; font-weight: 700; color: var(--navy); }

.formulario__form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 0.85rem; font-weight: 600; color: var(--navy); }

.form-input, .form-select, .form-textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--navy);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray-500); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(125,200,50,0.15);
}
.form-select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%237DC832' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-textarea { resize: vertical; min-height: 110px; }

.form-privacy {
  font-size: 0.78rem;
  color: var(--gray-500);
  text-align: center;
  margin-top: -8px;
}

/* Form success */
.form-success {
  text-align: center;
  padding: 48px 24px;
}
.success-icon {
  margin: 0 auto 20px;
  width: 80px; height: 80px;
  background: rgba(125,200,50,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-success h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.form-success p { color: var(--gray-700); }


/* ========================================
   FOOTER
   ======================================== */
.footer { background: var(--navy); color: var(--white); }
.footer__top { padding: 72px 0 48px; }

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer__logo {
  display: inline-flex;
  align-items: flex-start;
  margin: 0 0 4px 0;
  padding: 0;
  line-height: 1;
}
.logo-svg-footer {
  width: 150px;
  height: 150px;
  object-fit: contain;
  display: block;
}
.footer__contact-social {
  list-style: none;
  margin-top: 4px;
}
.footer__contact-social .social-link {
  display: inline-flex;
}
.social-link--instagram {
  display: flex;
  align-items: center;
  gap: 12px;
  width: auto !important;
  height: auto !important;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.2) !important;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}
.social-link--instagram svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.social-link--instagram:hover {
  background: rgba(225, 48, 108, 0.15) !important;
  border-color: #e1306c !important;
  color: #e1306c;
  transform: translateY(-2px);
}
.footer__desc {
  color: rgba(255,255,255,0.92);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 20px 0;
}
.footer__social { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--green);
  border-color: var(--green);
  color: white;
  transform: translateY(-2px);
}

.footer__col-title {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-top: 0;
  line-height: 1.2;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.88rem;
  transition: all var(--transition);
}
.footer__links a:hover { color: var(--green); padding-left: 4px; }

.footer__contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  line-height: 1.45;
}
.footer__contact li svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.footer__institucional {
  margin-top: 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer__bottom p {
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
}


/* ========================================
   PRODUCT CARD — Badge ghost (alinhamento)
   ======================================== */
/* Badge invisível para manter alinhamento vertical igual ao card com badge real */
.produto-card__badge--ghost {
  background: transparent !important;
  box-shadow: none !important;
  color: transparent !important;
  pointer-events: none;
  user-select: none;
}

/* Garante que todos os títulos ocupem a mesma altura mínima (2 linhas) */
.produto-card__title {
  min-height: 2.8em;
}


/* ========================================
   FORM SUCCESS — Botão WhatsApp minimalista
   ======================================== */
.btn-wa-success {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1.5px solid #25D366;
  color: #128C7E;
  background: rgba(37,211,102,0.06);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
}
.btn-wa-success:hover {
  background: #25D366;
  border-color: #25D366;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.30);
}

/* ========================================
   FLOATING WHATSAPP
   ======================================== */
.float-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: all var(--transition);
  text-decoration: none;
}
.float-whatsapp:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(37,211,102,0.65);
}
.float-wa-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: wa-pulse 2.5s ease-out infinite;
  opacity: 0;
}
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.55); opacity: 0; }
}


/* ========================================
   ANIMATIONS — Scroll reveal
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }


/* ========================================
   PRODUCT LIGHTBOX MODAL
   ======================================== */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 24px;
}
.product-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.product-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 31, 60, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.product-modal__content {
  position: relative;
  z-index: 2;
  background: #ffffff;
  border-radius: 26px;
  padding: 32px 28px 24px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-modal.active .product-modal__content {
  transform: scale(1);
}
.product-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(13, 31, 60, 0.08);
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: #1e293b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.product-modal__close:hover {
  background: var(--green);
  color: #ffffff;
}
.product-modal__img {
  width: 100%;
  max-height: 380px;
  object-fit: contain;
  border-radius: 16px;
  margin-bottom: 16px;
  background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
  padding: 16px;
}
.product-modal__title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .credibility__grid { grid-template-columns: repeat(2, 1fr); }
  .produtos__grid    { grid-template-columns: repeat(2, 1fr); }
  .diferenciais__grid{ grid-template-columns: repeat(2, 1fr); }
  .mercados__grid    { grid-template-columns: repeat(2, 1fr); }
  .footer__grid      { grid-template-columns: 1fr 1fr; gap: 32px; }
  .formulario__wrapper { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .header__nav { display: none; }
  .hamburger   { display: flex; }

  .hero__content { padding: 60px 24px 40px; }
  .hero__actions { flex-direction: column; }
  .hero__stats   { flex-direction: column; gap: 16px; width: 100%; }
  .stat-divider  { width: 80%; height: 1px; }

  .credibility__grid  { grid-template-columns: 1fr 1fr; }
  .credibility { padding: 40px 0 40px; }
  .credibility__grid { margin-top: 0; }

  .produtos__grid    { grid-template-columns: 1fr; }
  .diferenciais__grid{ grid-template-columns: 1fr 1fr; }
  .mercados__grid    { grid-template-columns: 1fr 1fr; }
  .footer__grid      { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer__brand     { align-items: center; }
  .footer__logo      { justify-content: center; }
  .footer__links     { align-items: center; }
  .footer__contact li { justify-content: center; }
  .form-row          { grid-template-columns: 1fr; }
  .cta-whatsapp__content { flex-direction: column; }
  .credibility-quote { flex-direction: column; text-align: center; padding: 24px; }
}

@media (max-width: 480px) {
  .credibility__grid  { grid-template-columns: 1fr; }
  .diferenciais__grid { grid-template-columns: 1fr; }
  .mercados__grid     { grid-template-columns: 1fr; }
  .hero__stats        { padding: 16px 20px; }
  .stat-item          { padding: 0 14px; }
  .formulario__form-wrap { padding: 24px; }
  .btn--xl { font-size: 0.95rem; padding: 16px 28px; }
}

