:root {
  --bg: #0b1511;
  --surface: #11221b;
  --surface-strong: #172d24;
  --ink: #ffffff;
  --text: #c5d4cd;
  --muted: #8fa69c;
  --line: rgba(255, 255, 255, 0.08);
  --forest: #17352d;
  --forest-soft: #23473c;
  --gold: #cfa86e;
  --gold-soft: #ebd0a7;
  --gold-glow: rgba(207, 168, 110, 0.25);
  --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.4);
  --shadow-strong: 0 24px 80px rgba(0, 0, 0, 0.6);
  --radius-xl: 30px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --transition: 350ms cubic-bezier(0.16, 1, 0.3, 1);
  --glass: rgba(17, 34, 27, 0.7);
  --glass-border: rgba(255, 255, 255, 0.06);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--bg);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--surface-strong);
  border-radius: 4px;
  border: 1px solid var(--line);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

body {
  color: var(--text);
  background-color: var(--bg);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(207, 168, 110, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(35, 71, 60, 0.15) 0%, transparent 50%);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
}

button {
  cursor: pointer;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* --- HEADER PREMIUM --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(18px, 5vw, 64px);
  background: rgba(11, 21, 17, 0.4);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(0px);
  transition: background var(--transition), backdrop-filter var(--transition), border-color var(--transition), padding var(--transition);
}

.site-header.scrolled {
  padding: 12px clamp(18px, 5vw, 64px);
  background: rgba(11, 21, 17, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(23, 53, 45, 0.4);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  transition: transform var(--transition), border-color var(--transition);
}

.brand:hover {
  transform: scale(1.02);
  border-color: var(--gold);
}

.brand img {
  width: 136px;
  height: auto;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  transition: border-color var(--transition);
}

.menu-toggle:hover {
  border-color: var(--gold);
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--ink);
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle.is-open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  position: relative;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 6px 0;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* --- BUTTONS SYSTEM --- */
.header-cta,
.button,
.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 99px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all var(--transition);
}

.header-cta,
.button.primary,
.footer-cta {
  color: #0b1511;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  box-shadow: 0 8px 24px rgba(207, 168, 110, 0.2);
}

.header-cta:hover,
.button.primary:hover,
.footer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(207, 168, 110, 0.35);
  filter: brightness(1.08);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.button.tertiary {
  color: var(--gold);
  background: rgba(207, 168, 110, 0.06);
  border-color: rgba(207, 168, 110, 0.2);
}

.button.tertiary:hover {
  color: #0b1511;
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* --- HERO SECTION WITH VIDEO CAPA --- */
.hero {
  position: relative;
  padding: 150px clamp(18px, 6vw, 76px) 100px;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0 clamp(12px, 3vw, 24px) 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-strong);
}

/* Cinematic Video overlay */
.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(11, 21, 17, 0.95) 30%, rgba(23, 53, 45, 0.75) 70%, rgba(11, 21, 17, 0.95) 100%),
    radial-gradient(circle at 80% 20%, rgba(207, 168, 110, 0.15) 0%, transparent 60%);
  z-index: 2;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0.45;
}

/* Ambient Floating Orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
  z-index: 3;
  opacity: 0.4;
  mix-blend-mode: screen;
}

.hero-orb-left {
  top: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  animation: floatOrb 18s ease-in-out infinite alternate;
}

.hero-orb-right {
  bottom: 10%;
  right: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--forest-soft) 0%, transparent 70%);
  animation: floatOrb 22s ease-in-out infinite alternate-reverse;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -40px) scale(1.15); }
  100% { transform: translate(-20px, 30px) scale(0.9); }
}

.hero-grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.hero-copy {
  display: flex;
  flex-direction: column;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before {
  content: "";
  width: 12px;
  height: 1px;
  background: var(--gold);
}

h1, h2 {
  font-family: "Fraunces", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  line-height: 1.05;
}

.hero-text {
  margin-top: 24px;
  font-size: 1.06rem;
  line-height: 1.7;
  color: var(--text);
  max-width: 54ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.hero-points div {
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  transition: transform var(--transition), border-color var(--transition);
}

.hero-points div:hover {
  transform: translateY(-3px);
  border-color: rgba(207, 168, 110, 0.3);
}

.hero-points strong {
  display: block;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 6px;
}

.hero-points span {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--muted);
  display: block;
}

/* Hero Media card redesign */
.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-media-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 520px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-strong);
  transform: perspective(1000px) rotateY(-3deg);
  transition: all 0.5s ease;
}

.hero-media-card:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.01);
  border-color: rgba(207, 168, 110, 0.4);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.hero-media-card:hover .hero-photo {
  transform: scale(1.05);
}

.hero-media-overlay {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(17, 34, 27, 0.85);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  z-index: 5;
}

.media-tag {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.hero-media-overlay strong {
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--ink);
}

.hero-floating-card {
  position: absolute;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: rgba(23, 45, 36, 0.9);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  z-index: 6;
  transition: transform var(--transition);
}

.hero-floating-card:hover {
  transform: translateY(-4px);
}

.hero-floating-card span {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.hero-floating-card strong {
  font-size: 0.92rem;
  color: var(--ink);
}

.hero-floating-card-top {
  top: 10%;
  left: -20px;
  animation: hoverFloat 5s ease-in-out infinite alternate;
}

.hero-floating-card-bottom {
  bottom: 12%;
  right: -20px;
  animation: hoverFloat 6s ease-in-out infinite alternate-reverse;
}

@keyframes hoverFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

/* --- CREDIBILITY STRIP --- */
.credibility-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: -30px clamp(18px, 5vw, 64px) 0;
  position: relative;
  z-index: 10;
}

.credibility-strip article {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
}

.credibility-strip article:hover {
  transform: translateY(-5px);
  border-color: rgba(207, 168, 110, 0.3);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.credibility-strip strong {
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 10px;
  font-family: "Fraunces", serif;
}

.credibility-strip span {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--muted);
  display: block;
}

/* --- GLOBAL SECTION ELEMENTS --- */
.section,
.method-section,
.agro-section,
.quote-section,
.site-footer {
  padding: clamp(60px, 8vw, 110px) clamp(18px, 5vw, 64px);
}

.section-heading {
  margin-bottom: 50px;
  max-width: 780px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.1;
  color: var(--ink);
}

.section-heading p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.narrow {
  max-width: 680px;
}

/* --- SIGNATURE SECTION --- */
.signature-section {
  padding-top: 100px;
}

.signature-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: stretch;
}

.signature-panel,
.signature-quote {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.signature-panel {
  padding: 40px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.signature-panel p {
  font-size: 1.05rem;
  line-height: 1.7;
}

.signature-quote {
  padding: 40px;
  background: linear-gradient(135deg, var(--surface-strong) 0%, #0b1511 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.signature-quote::before {
  content: "“";
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 10rem;
  font-family: "Fraunces", serif;
  color: rgba(207, 168, 110, 0.06);
  line-height: 1;
}

.signature-quote span {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.signature-quote p {
  font-family: "Fraunces", serif;
  font-size: 1.45rem;
  line-height: 1.5;
  color: var(--ink);
  position: relative;
  z-index: 2;
}

.signature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
}

.signature-list li {
  position: relative;
  padding: 14px 18px 14px 44px;
  border-radius: var(--radius-md);
  background: rgba(207, 168, 110, 0.05);
  font-size: 0.94rem;
  line-height: 1.6;
}

.signature-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(207, 168, 110, 0.18);
}

.signature-list strong {
  color: var(--gold-soft);
}

.signature-quote-meta {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.signature-quote-meta strong {
  font-size: 1rem;
  color: var(--ink);
}

.signature-quote-meta span {
  font-size: 0.82rem;
  color: var(--muted);
  display: block;
  margin-top: 4px;
}

/* --- SOLUTIONS SECTION --- */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.solution-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 420px;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.solution-card:hover {
  transform: translateY(-6px);
  border-color: rgba(207, 168, 110, 0.35);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
}

.solution-card-photo {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.solution-card-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(17, 34, 27, 0.7) 100%);
  z-index: 2;
}

.solution-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%; /* mostra o rosto/assunto no topo, evita corte estranho */
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.solution-card:hover .solution-card-photo img {
  transform: scale(1.08);
}

.solution-card-body {
  padding: 24px 28px 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.solution-card span {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  display: block;
}

.solution-card h3 {
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 12px;
  font-family: "Fraunces", serif;
}

.solution-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--muted);
  flex-grow: 1;
}

/* Card Agro featured */
.solution-card-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 360px;
  background: linear-gradient(135deg, var(--surface-strong) 0%, #080f0c 100%);
}

.solution-card-featured-photo {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.solution-card-featured-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 50%, rgba(8, 15, 12, 0.9) 100%);
  z-index: 2;
}

.solution-card-featured-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%; /* lavoura de soja: mostra o campo, não só o céu */
  transition: transform 1.2s ease;
}

.solution-card-featured:hover .solution-card-featured-photo img {
  transform: scale(1.05);
}

.solution-card-featured .solution-card-body {
  padding: 40px;
  justify-content: center;
}

.solution-card-featured h3 {
  font-size: 1.95rem;
  line-height: 1.2;
}

.solution-card-featured p {
  margin-bottom: 20px;
  font-size: 1rem;
}

.solution-card-featured .inline-cta {
  align-self: flex-start;
}

.solution-card-list {
  list-style: none;
  margin: 4px 0 24px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.solution-card-list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink);
}

.solution-card-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--gold);
  font-weight: 800;
}

/* --- METHOD SECTION --- */
.method-section {
  background: radial-gradient(circle at center, rgba(35, 71, 60, 0.1) 0%, transparent 80%);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.method-card {
  padding: 40px 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  transition: all var(--transition);
}

.method-card:hover {
  transform: translateY(-5px);
  border-color: rgba(207, 168, 110, 0.25);
  box-shadow: var(--shadow-soft);
}

.method-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(207, 168, 110, 0.08);
  border: 1px solid rgba(207, 168, 110, 0.2);
  color: var(--gold);
  font-size: 1.8rem;
  font-family: "Fraunces", serif;
  margin-bottom: 24px;
}

.method-card h3 {
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 12px;
  font-family: "Fraunces", serif;
}

.method-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--muted);
}

/* --- TRUST & AGRO SECTIONS --- */
.trust-section,
.agro-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
}

.trust-media,
.agro-visual {
  position: relative;
}

.trust-media img,
.agro-visual img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-strong);
}

.trust-media-badge {
  position: absolute;
  left: -20px;
  bottom: -20px;
  padding: 24px;
  background: linear-gradient(135deg, var(--surface-strong) 0%, var(--bg) 100%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  max-width: 280px;
  z-index: 5;
}

.trust-media-badge span {
  font-family: "Fraunces", serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  display: block;
}

.trust-media-badge strong {
  font-size: 0.88rem;
  line-height: 1.4;
  color: var(--text);
  margin-top: 6px;
}

.trust-copy h2,
.agro-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}

.trust-copy p,
.agro-copy p {
  margin-top: 20px;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text);
}

.trust-list,
.agro-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trust-list li {
  padding: 16px 20px 16px 48px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  position: relative;
  font-size: 0.94rem;
  line-height: 1.5;
}

.trust-list li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(207, 168, 110, 0.2);
}

.trust-list strong {
  color: var(--ink);
}

.agro-list li {
  position: relative;
  padding-left: 32px;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
}

.agro-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: rgba(207, 168, 110, 0.1);
  border: 1px solid rgba(207, 168, 110, 0.2);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
}

.trust-cta,
.agro-copy .button {
  margin-top: 36px;
}

.agro-visual-tag {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 16px 20px;
  background: rgba(11, 21, 17, 0.9);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.agro-visual-tag span {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 0.08em;
  display: block;
}

.agro-visual-tag strong {
  font-family: "Fraunces", serif;
  font-size: 1.05rem;
  color: var(--ink);
  display: block;
  margin-top: 4px;
}

/* --- CONTACT PREVIEW --- */
.contact-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-preview-card {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  transition: all var(--transition);
}

.contact-preview-card:hover {
  border-color: rgba(207, 168, 110, 0.2);
  transform: translateY(-4px);
}

.contact-preview-card span {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
}

.contact-preview-card h3 {
  font-size: 1.18rem;
  font-family: "Fraunces", serif;
  color: var(--ink);
  margin-bottom: 8px;
}

.contact-preview-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--muted);
}

/* --- INTERACTIVE MULTI-STEP LEAD FUNNEL (COTAÇÃO QUIZ) --- */
.quote-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 6vw, 76px);
  background: 
    linear-gradient(135deg, rgba(11, 21, 17, 0.96) 0%, rgba(23, 53, 45, 0.88) 100%),
    url("https://images.pexels.com/photos/8441775/pexels-photo-8441775.jpeg?auto=compress&cs=tinysrgb&w=1200") center/cover no-repeat;
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-strong);
  margin: 0 clamp(18px, 5vw, 64px);
  overflow: hidden;
  position: relative;
}

.quote-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 5;
}

.quote-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ink);
}

.quote-copy p {
  margin-top: 18px;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.65;
}

.quote-bullets {
  list-style: none;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote-bullets li {
  position: relative;
  padding-left: 32px;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
}

.quote-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: rgba(207, 168, 110, 0.15);
  border: 1px solid rgba(207, 168, 110, 0.2);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
}

.quote-form-wrapper {
  background: var(--surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
  padding: 40px;
  box-shadow: var(--shadow-strong);
  z-index: 5;
  position: relative;
}

/* Quiz Progress Bar */
.quiz-progress-container {
  margin-bottom: 30px;
}

.quiz-progress-text {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  letter-spacing: 0.08em;
}

.quiz-progress-text span.active-step {
  color: var(--gold);
}

.quiz-progress-bar {
  height: 4px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
}

.quiz-progress-fill {
  height: 100%;
  width: 33%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-soft) 100%);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Quiz Steps container */
.quiz-steps {
  position: relative;
}

.quiz-step {
  display: none;
  animation: stepFade 0.4s ease forwards;
}

.quiz-step.active {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@keyframes stepFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz-step-title {
  font-family: "Fraunces", serif;
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 8px;
}

/* Step 1: Grid selection cards */
.quiz-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.quiz-card {
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  transition: all var(--transition);
}

.quiz-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(207, 168, 110, 0.3);
}

.quiz-card.selected {
  background: rgba(207, 168, 110, 0.08);
  border-color: var(--gold);
  box-shadow: 0 0 16px rgba(207, 168, 110, 0.1);
}

.quiz-card-icon {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.quiz-card strong {
  font-size: 0.95rem;
  color: var(--ink);
}

.quiz-card span {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Inputs fields styles */
.quiz-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quiz-form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}

.quiz-input {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: var(--surface-strong);
  border: 1px solid var(--line);
  color: var(--ink);
  transition: all var(--transition);
}

.quiz-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.quiz-input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 3px rgba(207, 168, 110, 0.1);
}

.quiz-textarea {
  min-height: 110px;
  resize: vertical;
}

/* Navigation inside Quiz */
.quiz-nav {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.quiz-btn-prev {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 99px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: all var(--transition);
}

.quiz-btn-prev:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--gold);
}

.quiz-btn-next {
  flex: 1;
}

/* Loading Success Step */
.quiz-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 0;
  gap: 20px;
}

.quiz-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid var(--line);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.quiz-loading strong {
  font-family: "Fraunces", serif;
  font-size: 1.3rem;
  color: var(--ink);
}

.quiz-loading p {
  font-size: 0.92rem;
  color: var(--muted);
}

.form-note {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

/* --- CONTACT SECTION & MAP --- */
.contact-section {
  border-top: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.contact-card {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(207, 168, 110, 0.2);
}

.contact-card span {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
}

.contact-card strong {
  font-size: 1rem;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 6px;
  display: block;
}

.contact-card p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--muted);
  flex-grow: 1;
}

.contact-card-map {
  background: linear-gradient(135deg, var(--surface) 0%, rgba(207, 168, 110, 0.02) 100%);
}

.contact-card-map .button {
  margin-top: 18px;
  align-self: flex-start;
}

/* --- FOOTER REDESIGN --- */
.site-footer {
  background: #060c09;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}

.footer-brand {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-brand img {
  width: 130px;
  padding: 8px 12px;
  background: rgba(23, 53, 45, 0.4);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
}

.footer-brand strong {
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
  color: var(--ink);
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 4px;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--muted);
  text-align: right;
}

/* --- WHATSAPP ACTIVE CHAT BUBBLE REDESIGN --- */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 10px 30px rgba(18, 140, 126, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all var(--transition);
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 36px rgba(18, 140, 126, 0.55);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: whatsPulse 2s infinite;
}

@keyframes whatsPulse {
  0% { transform: scale(0.95); opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* Dynamic Active Notification Chat bubble */
.whatsapp-bubble-notification {
  position: fixed;
  right: 96px;
  bottom: 24px;
  width: 320px;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  z-index: 999;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-bubble-notification.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.whats-bubble-header {
  background: var(--forest);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--glass-border);
}

.whats-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #0b1511;
  font-size: 0.85rem;
}

.whats-user-info {
  display: flex;
  flex-direction: column;
}

.whats-user-info strong {
  font-size: 0.88rem;
  color: var(--ink);
}

.whats-user-info span {
  font-size: 0.72rem;
  color: #25d366;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.whats-user-info span::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #25d366;
  border-radius: 50%;
  display: inline-block;
}

.whats-bubble-close {
  margin-left: auto;
  color: var(--muted);
  font-size: 1.2rem;
  transition: color var(--transition);
}

.whats-bubble-close:hover {
  color: var(--ink);
}

.whats-bubble-body {
  padding: 18px;
  background: rgba(255, 255, 255, 0.01);
}

.whats-bubble-msg {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  padding: 12px 14px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) var(--radius-lg);
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 14px;
}

.whats-bubble-cta {
  width: 100%;
  min-height: 40px;
  font-size: 0.85rem;
  padding: 0 16px;
}

/* --- ANIMATION DE Scroll SYSTEM (REVEAL) --- */
.animate-in,
.section-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.active {
  opacity: 1;
  transform: translateY(0);
}

/* Delay Anim Stagger */
.solution-grid > *:nth-child(1) { transition-delay: 0ms; }
.solution-grid > *:nth-child(2) { transition-delay: 100ms; }
.solution-grid > *:nth-child(3) { transition-delay: 200ms; }
.solution-grid > *:nth-child(4) { transition-delay: 300ms; }
.solution-grid > *:nth-child(5) { transition-delay: 400ms; }
.solution-grid > *:nth-child(6) { transition-delay: 500ms; }

.credibility-strip > *:nth-child(1) { transition-delay: 0ms; }
.credibility-strip > *:nth-child(2) { transition-delay: 100ms; }
.credibility-strip > *:nth-child(3) { transition-delay: 200ms; }
.credibility-strip > *:nth-child(4) { transition-delay: 300ms; }

.method-grid > *:nth-child(1) { transition-delay: 0ms; }
.method-grid > *:nth-child(2) { transition-delay: 150ms; }
.method-grid > *:nth-child(3) { transition-delay: 300ms; }

.contact-preview-grid > *:nth-child(1) { transition-delay: 0ms; }
.contact-preview-grid > *:nth-child(2) { transition-delay: 100ms; }
.contact-preview-grid > *:nth-child(3) { transition-delay: 200ms; }

.contact-grid > *:nth-child(1) { transition-delay: 0ms; }
.contact-grid > *:nth-child(2) { transition-delay: 100ms; }
.contact-grid > *:nth-child(3) { transition-delay: 200ms; }
.contact-grid > *:nth-child(4) { transition-delay: 300ms; }

/* --- RESPONSIVIDADE MEDIA QUERIES --- */
@media (max-width: 1120px) {
  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid,
  .contact-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid,
  .signature-grid,
  .agro-section,
  .trust-section,
  .quote-section,
  .site-footer {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-media-card {
    height: 480px;
    transform: none;
    max-width: 100%;
  }

  .trust-media img,
  .agro-visual img {
    height: 380px;
  }

  .trust-media-badge {
    left: auto;
    right: 20px;
    bottom: -15px;
  }

  .footer-meta {
    text-align: left;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .site-header {
    background: rgba(11, 21, 17, 0.95);
    backdrop-filter: blur(15px);
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 16px;
    padding: 24px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    background: rgba(17, 34, 27, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-strong);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all var(--transition);
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(4px);
  }

  .header-cta {
    display: none;
  }

  .credibility-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 30px;
  }

  .hero-points,
  .method-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 18px;
  }
  
  .site-header.scrolled {
    padding: 10px 18px;
  }

  .brand img {
    width: 110px;
  }

  .hero {
    padding: 110px 14px 50px;
  }

  .hero-backdrop {
    inset: 0 8px 0;
    border-radius: var(--radius-lg);
  }

  h1 {
    font-size: 2.25rem;
  }

  .hero-text {
    font-size: 0.95rem;
    margin-top: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button,
  .footer-cta {
    width: 100%;
  }

  .hero-media-card {
    height: 360px;
  }

  .hero-floating-card {
    position: static;
    margin-top: 12px;
    max-width: 100%;
  }

  .credibility-strip {
    grid-template-columns: 1fr;
    margin-left: 14px;
    margin-right: 14px;
  }

  .section,
  .method-section,
  .agro-section,
  .site-footer {
    padding: 50px 14px;
  }

  .signature-panel {
    padding: 24px;
  }

  .signature-quote {
    padding: 24px;
  }

  .signature-quote p {
    font-size: 1.2rem;
  }

  .solution-grid,
  .contact-grid,
  .contact-preview-grid {
    grid-template-columns: 1fr;
  }

  .solution-card-featured {
    grid-template-columns: 1fr;
  }

  .solution-card-featured-photo {
    height: 180px;
  }

  .solution-card-featured .solution-card-body {
    padding: 24px;
  }

  .solution-card-featured h3 {
    font-size: 1.5rem;
  }

  .trust-media img,
  .agro-visual img {
    height: 280px;
  }

  .trust-media-badge {
    position: static;
    margin-top: 16px;
    max-width: 100%;
  }

  .agro-visual-tag {
    right: 14px;
    bottom: 14px;
    padding: 10px 14px;
  }

  .quote-section {
    margin-left: 14px;
    margin-right: 14px;
    padding: 24px 14px;
  }

  .quote-form-wrapper {
    padding: 20px;
  }

  .quiz-cards-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-bubble-notification {
    left: 14px;
    right: 14px;
    bottom: 96px;
    width: auto;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    right: 16px;
    bottom: 16px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}
