/* =========================================================
   1. RESET & VARIÁVEIS BASE
   ========================================================= */

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

:root {
  --bg-dark-black: #000000;
  --card-dark-green: #0a140d;
  --border-green: #1a3821;
  --yellow-gold: #d7a638;
  --yellow-gold-hover: #b88a2a;
  --green-highlight: #2e6f40;
  --sorghum-brown: #804d19;
  --white-pure: #ffffff;
  --text-gray: #a3b2a6;
  --font-family: 'Plus Jakarta Sans', sans-serif;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
  scroll-behavior: smooth;
  background-color: var(--bg-dark-black);
  color: var(--white-pure);
  font-family: var(--font-family);
  line-height: 1.5;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================================
   2. NAVBAR
   ========================================================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Estrutura do Logo e Tagline */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-summit-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-family);
  text-transform: uppercase;
  line-height: 1;
}

.logo-summit-tag .brand-title {
  font-weight: 900;
  font-size: 0.95rem;
  color: #ffffff;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
}

.logo-summit-tag .brand-title .dot {
  color: var(--yellow-gold);
  margin: 0 1px;
  font-size: 1.1rem;
}

.logo-summit-tag .divider {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
  font-size: 1rem;
}

.logo-summit-tag .summit-label {
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--yellow-gold);
  letter-spacing: 3px;
}

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

.nav-links a {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  transition: color 0.2s;
}

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

.btn-nav-mobile {
  display: none;
}

.btn-nav-desktop {
  display: inline-block;
}

/* Botão Hambúrguer Mobile */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--white-pure);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* =========================================================
   3. BOTÕES GERAIS
   ========================================================= */

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 2px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.2s;
  text-align: center;
}

.btn-primary {
  background-color: var(--yellow-gold);
  color: #000000;
}

.btn-primary:hover {
  background-color: var(--yellow-gold-hover);
  color: #ffffff;
}

/* =========================================================
   4. HERO SECTION
   ========================================================= */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 0 60px;
  background-color: #000000;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.9) 100%), url('landinggrower/imagens/imagem.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

.hero-header-tag {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--yellow-gold);
  letter-spacing: 3px;
  margin-bottom: 25px;
}

.hero-title {
  font-size: 5rem;
  font-weight: 900;
  line-height: 0.92;
  color: var(--white-pure);
  margin-bottom: 25px;
  letter-spacing: -1.5px;
}

.hero-title span {
  color: var(--yellow-gold);
  font-weight: 400;
  display: block;
  margin-top: 5px;
  font-size: 3.2rem;
  letter-spacing: 0;
}

.subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 550px;
  line-height: 1.45;
  margin-bottom: 60px;
  font-weight: 400;
}

/* Barra Inferior da Hero */
.hero-bottom-bar {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr auto;
  gap: 30px;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px 30px;
  border-radius: 4px;
}

.bar-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  color: #777777;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.location-box h3 {
  color: var(--white-pure);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}

.location-box p {
  color: #aaaaaa;
  font-size: 0.8rem;
  margin-top: 6px;
  line-height: 1.3;
}

.countdown-timer {
  display: flex;
  gap: 20px;
}

.timer-item {
  display: flex;
  flex-direction: column;
}

.timer-item span {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white-pure);
  line-height: 1;
}

.timer-item small {
  font-size: 0.6rem;
  font-weight: 800;
  color: #666666;
  margin-top: 4px;
}

.btn-hero {
  padding: 14px 28px;
  font-size: 0.8rem;
  line-height: 1.2;
}

/* =========================================================
   5. SEÇÕES GERAIS
   ========================================================= */

.section {
  padding: 90px 0;
  border-bottom: 1px solid var(--border-green);
}

.section-number {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--yellow-gold);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 15px;
}

.title-large {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white-pure);
  margin-bottom: 20px;
}

.highlight-yellow {
  color: var(--yellow-gold);
}

/* =========================================================
   6. DOBRA 02 - PROBLEM SECTION
   ========================================================= */

.problem-section {
  position: relative;
  background-color: #000000;
  padding: 100px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

.corn-left-img {
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  height: 90%;
  max-height: 650px;
  width: auto;
  object-fit: contain;
  z-index: 1;
  pointer-events: none;
  filter: brightness(1.8) contrast(1.1);
}

.problem-container {
  position: relative;
  z-index: 2;
  padding-left: 220px;
}

.problem-section .title-large {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 40px;
  max-width: 850px;
  letter-spacing: -0.5px;
}

.problem-section .highlight-yellow {
  color: var(--yellow-gold);
  display: block;
  margin-top: 5px;
}

.problem-content-body {
  max-width: 650px;
}

.problem-content-body p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.5;
  margin-bottom: 25px;
  font-weight: 400;
}

.quote-line-left {
  border-left: 2px solid var(--yellow-gold);
  padding-left: 20px;
  margin: 30px 0;
}

.quote-line-left p {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 0;
}

/* =========================================================
   7. DOBRA 03 - O OBJETIVO REAL
   ========================================================= */

.real-objective-section {
  position: relative;
  background-color: #000000;
  padding: 100px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

.sorghum-right-img {
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  height: 95%;
  max-height: 700px;
  width: auto;
  object-fit: contain;
  z-index: 1;
  pointer-events: none;
  filter: brightness(1.8) contrast(1.1);
}

.real-objective-container {
  position: relative;
  z-index: 2;
  padding-right: 260px;
}

.real-objective-section .title-large {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 30px;
  max-width: 800px;
  letter-spacing: -0.5px;
}

.real-objective-section .highlight-yellow {
  color: var(--yellow-gold);
  display: block;
  margin-top: 5px;
}

.divider-line {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 40px;
}

.objective-content-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: flex-end;
}

.objective-text {
  max-width: 580px;
}

.objective-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.55;
  margin-bottom: 25px;
  font-weight: 400;
}

.btn-yellow-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  background-color: var(--yellow-gold);
  color: #000000;
  padding: 16px 20px;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  max-width: 260px;
  line-height: 1.3;
  transition: all 0.2s ease;
}

.btn-yellow-card:hover {
  background-color: var(--yellow-gold-hover);
  color: #ffffff;
}

/* =========================================================
   8. DOBRA 04 - PILARES DO SUMMIT
   ========================================================= */

.pillars-section {
  background-color: #000000;
  padding: 100px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pillars-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
  margin-top: -10px;
  margin-bottom: 50px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pillar-card {
  background-color: #080f09;
  padding: 35px 30px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.pillar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pillar-number {
  display: none !important;
}

.pillar-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin: 20px 0 10px;
}

.pillar-hover-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease, margin 0.3s ease;
}

.pillar-hover-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  line-height: 1.45;
}

.pillar-footer-tag {
  display: none !important;
}

.pillar-card:hover,
.pillar-card.active {
  background-color: #1b6330;
}

.pillar-card:hover .pillar-hover-content,
.pillar-card.active .pillar-hover-content {
  max-height: 120px;
  opacity: 1;
  margin-top: 10px;
}

/* =========================================================
   9. DOBRA 05 - MILHO OU SORGO?
   ========================================================= */

.vs-section {
  background-color: #000000;
  padding: 100px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vs-header-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.vs-text-area {
  max-width: 780px;
}

.vs-text-area .title-large {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 25px;
}

.vs-text-area .description-text {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.02rem;
  line-height: 1.6;
}

.vs-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.vs-card {
  background-color: #050b06;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 45px 40px;
  border-radius: 4px;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}

.vs-card-title {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 20px;
}

.title-milho {
  color: var(--yellow-gold);
}

.title-sorgo {
  color: #1b6330;
}

.vs-card-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 30px;
}

.vs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.vs-list li {
  display: flex;
  align-items: baseline;
  gap: 15px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.vs-list .num {
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

.list-milho .num {
  color: var(--yellow-gold);
}

.list-sorgo .num {
  color: #1b6330;
}

.vs-card-milho:hover {
  transform: translateY(-8px);
  border-color: var(--yellow-gold);
  box-shadow: 0 12px 30px rgba(215, 166, 56, 0.12);
}

.vs-card-sorgo:hover {
  transform: translateY(-8px);
  border-color: #1b6330;
  box-shadow: 0 12px 30px rgba(27, 99, 48, 0.25);
}

/* Simulação */
.simulation-wrapper {
  margin-top: 40px;
}

.simulation-card {
  background-color: #040905;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 45px 50px;
  border-radius: 4px;
}

.sim-tag {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--yellow-gold);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 12px;
}

.sim-title {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 15px;
}

.sim-description {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 850px;
  margin-bottom: 35px;
}

.sim-slider-container {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.sim-label {
  font-size: 0.72rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1.5px;
  white-space: nowrap;
}

.sim-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  outline: none;
}

.sim-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--yellow-gold);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(215, 166, 56, 0.5);
}

.sim-metrics-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 30px;
  border-radius: 4px;
}

.sim-metric-box {
  flex: 1;
}

.sim-metric-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}

.title-milho-sim {
  color: #1b6330;
  font-size: 1.2rem;
  font-weight: 800;
}

.title-sorgo-sim {
  color: var(--yellow-gold);
  font-size: 1.2rem;
  font-weight: 800;
}

.sim-value {
  font-size: 1.8rem;
  font-weight: 900;
  color: #ffffff;
}

.sim-bar-bg {
  width: 100%;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 10px;
}

.sim-bar-fill {
  height: 100%;
  transition: width 0.15s ease-out;
}

.fill-milho {
  background-color: #1b6330;
}

.fill-sorgo {
  background-color: var(--yellow-gold);
}

.sim-footer-label {
  font-size: 0.65rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 1.5px;
}

.sim-divider {
  width: 1px;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.1);
}

.sim-highlight-box {
  margin-top: 30px;
  padding: 25px 30px;
  background: linear-gradient(90deg, rgba(215, 166, 56, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
  border-left: 3px solid var(--yellow-gold);
}

.sim-highlight-box h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 10px;
}

.sim-highlight-box p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  margin: 0;
}

/* =========================================================
   10. DOBRA 06 - PÚBLICO-ALVO
   ========================================================= */

.target-section {
  background-color: #000000;
  padding: 100px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.target-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 60px;
  letter-spacing: -1px;
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.target-card {
  background-color: #000000;
  padding: 45px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  transition: transform 0.35s ease, background-color 0.35s ease;
}

.target-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.target-icon {
  stroke: var(--yellow-gold);
  flex-shrink: 0;
}

.target-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
}

.target-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

.target-card:hover {
  background-color: #0d2814;
  transform: translateY(-4px);
  z-index: 2;
}

/* =========================================================
   11. DOBRA 07 - ESPECIALISTAS
   ========================================================= */

.speakers-section {
  background-color: #000000;
  padding: 100px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.speakers-header {
  margin-bottom: 40px;
}

.speakers-tag {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--yellow-gold);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 15px;
}

.speakers-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.speaker-card {
  background-color: #040905;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.speaker-card:hover {
  transform: translateY(-6px);
  border-color: rgba(215, 166, 56, 0.4);
}

.speaker-image-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  background-color: #08120a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.speaker-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 2;
  position: relative;
}

.speaker-info {
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.speaker-info h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 5px;
}

.speaker-role {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--yellow-gold);
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  display: block;
}

.speaker-info p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0;
}

.banner-quote-gold {
  background: linear-gradient(90deg, rgba(215, 166, 56, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
  border-left: 3px solid var(--yellow-gold);
  padding: 20px 25px;
}

.banner-quote-gold p {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
}

/* =========================================================
   12. DOBRA 08 - EVENTO
   ========================================================= */

.cta-section {
  background-color: #000000;
  padding: 80px 0 100px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.event-top-quote {
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 50px;
  max-width: 800px;
  line-height: 1.4;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.event-left-col .title-large {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.08;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.event-subhead {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  max-width: 480px;
  margin-bottom: 40px;
}

.event-info-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.event-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.event-info-item svg {
  margin-top: 3px;
  flex-shrink: 0;
}

.info-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  color: #777777;
  letter-spacing: 2px;
  margin-bottom: 3px;
}

.info-value {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.btn-event-cta {
  padding: 14px 28px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.event-right-col {
  padding-top: 10px;
}

.event-desc-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.event-right-col .quote-line-left {
  border-left: 2px solid var(--yellow-gold);
  padding-left: 20px;
  margin-top: 40px;
}

.event-right-col .quote-line-left p {
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.4;
}

/* =========================================================
   13. DOBRA 09 - FAÇA PARTE
   ========================================================= */

.form-section-white {
  position: relative;
  background-color: #ffffff !important;
  color: #111111;
  padding: 120px 0;
  overflow: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

.relative-z {
  position: relative;
  z-index: 5;
}

.titulo-centralizado {
  text-align: center;
}

.milho-left-img {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  height: 90%;
  max-height: 650px;
  width: auto;
  object-fit: contain;
  z-index: 2;
  pointer-events: none;
  opacity: 0.25;
}

.sorgo-right-img {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  height: 90%;
  max-height: 650px;
  width: auto;
  object-fit: contain;
  z-index: 2;
  pointer-events: none;
  opacity: 0.25;
}

.text-dark-title {
  color: #111111 !important;
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 35px;
  letter-spacing: -1px;
}

.tags-cloud-light {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 750px;
  margin: 0 auto 35px;
}

.tags-cloud-light span {
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  padding: 8px 16px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #374151;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.form-body-description {
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto 40px;
  font-weight: 500;
  text-align: center;
}

.cta-action-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.summit-brand-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #111111;
  letter-spacing: 1px;
}

.summit-brand-title span {
  color: var(--yellow-gold);
  margin: 0 4px;
}

.gold-subtitle-italic {
  color: var(--yellow-gold);
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 600;
  margin-top: 4px;
  margin-bottom: 30px;
  text-align: center;
}

.btn-garantir {
  background-color: var(--yellow-gold);
  color: #ffffff;
  padding: 18px 45px;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  border-radius: 2px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(215, 166, 56, 0.3);
  text-decoration: none;
}

.btn-garantir:hover {
  background-color: var(--yellow-gold-hover);
  color: #ffffff;
  transform: translateY(-2px);
}

.event-date-location {
  font-size: 0.72rem;
  font-weight: 800;
  color: #6b7280;
  letter-spacing: 2px;
  margin-top: 20px;
}

/* =========================================================
   14. FOOTER
   ========================================================= */

.footer {
  background-color: var(--bg-dark-black);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 64px 0 32px;
}

/* --- Bloco superior: marca + colunas --- */
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--yellow-gold);
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.footer-logo-link {
  display: inline-block;
  text-decoration: none;
  line-height: 0;
}

.footer-logo-img {
  height: 30px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 320px;
  margin: 0;
}

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

.footer-list li {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-list a:hover {
  color: var(--yellow-gold);
}

.footer-link-highlight {
  color: var(--yellow-gold) !important;
  font-weight: 700;
}

/* --- Divisória --- */
.footer-divider {
  height: 1px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.08);
  margin: 44px 0 24px;
}

/* --- Bloco inferior: copyright / dev / tagline --- */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  margin: 0;
}

.footer-dev {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
  margin: 0;
}

.footer-dev a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-dev a:hover {
  color: var(--yellow-gold);
  border-color: var(--yellow-gold);
}

.footer-legal-links {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
  margin: 4px 0 0;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-legal-links a:hover {
  color: var(--yellow-gold);
  border-color: var(--yellow-gold);
}

.footer-bottom-tagline {
  color: rgba(215, 166, 56, 0.6);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0;
}

.developer-credit-btn {
  display: inline-block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.25s ease;
  padding: 6px 14px;
  border-radius: 4px;
  border: 1px solid transparent;
}

.developer-credit-btn:hover {
  color: var(--yellow-gold);
  border-color: rgba(215, 166, 56, 0.3);
  background-color: rgba(255, 255, 255, 0.03);
}

/* =========================================================
   15. RESPONSIVIDADE COMPLETA (TABLET E MOBILE)
   ========================================================= */

@media (min-width: 993px) {
  .nav-links .btn-nav-mobile {
    display: none !important;
  }
}

@media (max-width: 992px) {
  .container {
    padding: 0 28px;
  }

  .section {
    padding: 60px 0;
  }

  .logo-img {
    height: 32px;
  }

  /* Navbar & Menu Hambúrguer */
  .mobile-toggle {
    display: flex;
  }

  .btn-nav-desktop {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background-color: #040905;
    flex-direction: column;
    justify-content: center;
    padding: 40px 24px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.8);
    transition: right 0.3s ease;
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .btn-nav-mobile {
    display: inline-block;
    margin-top: 20px;
    width: 100%;
  }

  /* Hero Mobile */
  .hero {
    padding: 130px 0 50px;
    min-height: auto;
    text-align: center;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.72) 100%), url('landinggrower/imagens/imagem.jpg');
    background-position: center 22%;
    background-size: cover;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  .hero-title {
    font-size: 2.8rem;
    text-align: center;
  }

  .hero-title span {
    font-size: 1.7rem;
  }

  .subtitle {
    font-size: 1rem;
    margin: 0 auto 35px;
    text-align: center;
  }

  .hero-bottom-bar {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 24px;
    text-align: center;
  }

  .countdown-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .countdown-timer {
    gap: 12px;
  }

  .timer-item span {
    font-size: 1.8rem;
  }

  /* Dobras 02 e 03 */
  .problem-container,
  .real-objective-container {
    padding: 0;
  }

  .corn-left-img,
  .sorghum-right-img {
    display: block;
    position: absolute;
    top: 50%;
    transform: translate3d(0, -50%, 0);
    -webkit-transform: translate3d(0, -50%, 0);
    height: 85%;
    max-height: 420px;
    width: auto;
    max-width: 92%;
    margin: 0;
    opacity: 0.95;
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
    -webkit-transform-style: preserve-3d;
    filter: brightness(2.1) contrast(1.05);
  }

  .corn-left-img {
    left: -30px;
    right: auto;
    top: 62%;
  }

  .sorghum-right-img {
    right: -30px;
    left: auto;
  }

  .milho-left-img,
  .sorgo-right-img {
    display: block;
    position: absolute;
    top: 50%;
    transform: translate3d(0, -50%, 0);
    -webkit-transform: translate3d(0, -50%, 0);
    height: 70%;
    max-height: 320px;
    width: auto;
    max-width: 85%;
    margin: 0;
    opacity: 0.15;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
    -webkit-transform-style: preserve-3d;
  }

  .milho-left-img {
    left: -20px;
    right: auto;
  }

  .sorgo-right-img {
    right: -20px;
    left: auto;
  }

  .problem-section .title-large,
  .real-objective-section .title-large {
    font-size: 2rem;
  }

  .objective-content-grid {
    grid-template-columns: 1fr;
  }

  .btn-yellow-card {
    max-width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Dobra 04 - Pilares */
  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .pillar-card {
    min-height: auto;
    padding: 25px 20px;
    cursor: default;
  }

  .pillar-hover-content {
    max-height: none;
    opacity: 1;
    overflow: visible;
    margin-top: 10px;
  }

  /* Dobra 05 - Milho vs Sorgo */
  .vs-text-area .title-large {
    font-size: 2rem;
  }

  .vs-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .vs-card {
    padding: 30px 20px;
  }

  .vs-card-title {
    font-size: 2.5rem;
  }

  .simulation-card {
    padding: 30px 20px;
  }

  .sim-title {
    font-size: 1.5rem;
  }

  .sim-slider-container {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .sim-slider-container .sim-label {
    flex-shrink: 0;
    width: 72px;
    font-size: 0.6rem;
    letter-spacing: 0.5px;
    line-height: 1.25;
    white-space: normal;
    text-align: center;
  }

  .sim-metrics-grid {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .sim-divider {
    width: 100%;
    height: 1px;
  }

  /* Dobra 06 - Público-Alvo */
  .target-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }

  .target-grid {
    grid-template-columns: 1fr;
  }

  .target-card {
    padding: 30px 20px;
  }

  /* Dobra 07 - Especialistas */
  .speakers-title {
    font-size: 2rem;
  }

  .speakers-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .speaker-image-wrapper {
    height: 320px;
  }

  /* Dobras 08 e 09 */
  .split-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .event-left-col .title-large {
    font-size: 2.2rem;
  }

  .event-subhead {
    font-size: 1rem;
    max-width: 100%;
    margin-bottom: 32px;
  }

  .form-section-white {
    padding: 80px 0;
  }

  .text-dark-title {
    font-size: 2.2rem;
  }

  .btn-garantir {
    width: 100%;
    text-align: center;
    padding: 16px 20px;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-tagline {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-title span {
    font-size: 1.4rem;
  }

  .title-large {
    font-size: 1.75rem;
  }

  .text-dark-title {
    font-size: 1.8rem;
  }

  .corn-left-img,
  .sorghum-right-img {
    height: 70%;
    max-height: 320px;
    opacity: 0.9;
  }

  .milho-left-img,
  .sorgo-right-img {
    height: 55%;
    max-height: 240px;
    opacity: 0.14;
  }

  .timeline-ticks span {
    display: none;
  }

  .tick-item::before {
    height: 8px;
  }

  .sim-slider-box > div:first-child {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .simulation-card {
    padding: 24px 18px;
  }

  .sim-slider-container {
    gap: 8px;
  }

  .sim-slider-container .sim-label {
    width: 58px;
    font-size: 0.54rem;
    letter-spacing: 0.3px;
  }

  .sim-metrics-grid {
    padding: 18px;
  }

  .vs-card-title {
    font-size: 2.2rem;
  }

  .speaker-image-wrapper {
    height: 260px;
  }

  .pillar-card {
    padding: 22px 18px;
  }

  .target-card {
    padding: 30px 22px;
  }
}