/* ==========================================================================
   Cultiva Growshop - Franquia Landing Page CSS
   ========================================================================== */

:root {
  /* Paleta de cores primárias */
  --color-primary: #8CB63E;
  /* Verde Cultiva */
  --color-primary-dark: #5A8C23;
  /* Verde escuro */
  --color-primary-light: #9FD361;
  /* Verde claro */
  --color-secondary: #3F3F3F;
  /* Preto cultiva */
  --color-secondary-dark: #262626;
  /* Preto mais escuro */
  --color-secondary-light: #606060;
  /* Cinza escuro */

  /* Paleta de cores neutras */
  --color-white: #FFFFFF;
  --color-light: #F8F9FA;
  --color-light-gray: #E9ECEF;
  --color-gray: #CED4DA;
  --color-dark-gray: #6C757D;
  --color-black: #212529;

  /* Paleta de cores funcionais */
  --color-success: #28A745;
  --color-warning: #FFC107;
  --color-danger: #DC3545;
  --color-info: #17A2B8;

  /* Tipografia */
  --font-primary: 'Lato', sans-serif;

  /* Sombras */
  --shadow-sm: 0 2px 4px rgba(118, 183, 44, 0.1);
  --shadow-md: 0 4px 6px rgba(118, 183, 44, 0.15);
  --shadow-lg: 0 10px 15px rgba(118, 183, 44, 0.2);
  --shadow-xl: 0 20px 25px rgba(118, 183, 44, 0.25);
  --shadow-primary: 0 8px 20px rgba(118, 183, 44, 0.3);
  /* Sombra verde Cultiva */
  --shadow-primary-lg: 0 12px 25px rgba(118, 183, 44, 0.4);
  /* Sombra verde mais intensa */

  /* Transições */
  --transition-fast: 0.3s;
  --transition-normal: 0.5s;
  --transition-slow: 0.8s;

  /* Espaçamento */
  --spacing-xs: 0.25rem;
  /* 4px */
  --spacing-sm: 0.5rem;
  /* 8px */
  --spacing-md: 1rem;
  /* 16px */
  --spacing-lg: 1.5rem;
  /* 24px */
  --spacing-xl: 2rem;
  /* 32px */
  --spacing-2xl: 3rem;
  /* 48px */
  --spacing-3xl: 4rem;
  /* 64px */

  /* Border Radius */
  --radius-sm: 0.25rem;
  /* 4px */
  --radius-md: 0.5rem;
  /* 8px */
  --radius-lg: 1rem;
  /* 16px */
  --radius-xl: 2rem;
  /* 32px */
  --radius-full: 9999px;
  /* Círculo completo */
}

/* ==========================================================================
       Reset e Base
       ========================================================================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-secondary);
  background-color: var(--color-white);
  overflow-x: hidden;
}

/* Classe para bloquear scroll quando modal aberto */
body.modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ==========================================================================
       Layout e Container
       ========================================================================== */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-3xl) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-secondary);
  margin-bottom: var(--spacing-md);
}

.section-divider {
  height: 4px;
  width: 60px;
  background-color: var(--color-primary);
  margin: 0 auto var(--spacing-lg);
}

.section-header p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  color: var(--color-secondary-light);
}

/* ==========================================================================
       Preloader
       ========================================================================== */

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 75%;
  height: 75%;
  background-color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.2s ease-out;
  will-change: opacity;
}

@media (max-width: 768px) {
  .preloader {
    width: 100%;
    height: 100%;
  }
}

.preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loader {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.loader::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid var(--color-light-gray);
  border-top-color: var(--color-primary);
  animation: spin 0.8s infinite linear;
}

.loader img {
  width: 60px;
  height: auto;
}

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

/* ==========================================================================
       Botões
       ========================================================================== */

.btn {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 2px solid transparent;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(118, 183, 44, 0.3);
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.btn-secondary:hover {
  background-color: var(--color-secondary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(118, 183, 44, 0.3);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(118, 183, 44, 0.3);
}

.btn-submit {
  background-color: var(--color-primary);
  color: var(--color-white);
  width: 100%;
  padding: 1rem;
  font-weight: 700;
}

.btn-submit:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(118, 183, 44, 0.3);
}

/* ==========================================================================
       Header e Navegação
       ========================================================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: all var(--transition-fast);
  height: 80px;
}

.header.scrolled {
  background-color: var(--color-white);
  box-shadow: 0 4px 6px rgba(118, 183, 44, 0.15);
  height: 70px;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  height: 50px;
  transition: height var(--transition-fast);
}

.header.scrolled .logo {
  height: 40px;
}

.logo img {
  height: 100%;
  width: auto;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--color-secondary);
  transition: all var(--transition-fast);
}

.navbar {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: var(--spacing-lg);
}

.nav-list li a {
  font-weight: 600;
  color: var(--color-secondary);
  position: relative;
  padding: var(--spacing-xs) 0;
}

.nav-list li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width var(--transition-fast);
}

.nav-list li a:hover {
  color: var(--color-primary);
}

.nav-list li a:hover::after {
  width: 100%;
}

.nav-cta {
  background-color: var(--color-primary);
  color: var(--color-white) !important;
  padding: 0.6rem 1.2rem !important;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.nav-cta:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(118, 183, 44, 0.2);
}

.nav-cta::after {
  display: none !important;
}

/* ==========================================================================
     Hero Section
     ========================================================================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0;
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -2;
  object-fit: cover;
}

.fallback-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -3;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(33, 37, 41, 0.7);
  z-index: -1;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-2xl);
}

.hero-text {
  flex: 1;
  color: var(--color-white);
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
  color: var(--color-white);
  line-height: 1.1;
}

.hero-text h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: var(--spacing-lg);
  color: var(--color-white);
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-xl);
  max-width: 90%;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-image img {
  max-width: 90%;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 30px rgba(118, 183, 44, 0.25);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--color-white);
  z-index: 10;
  animation: bounce 2s infinite;
}

.hero-scroll a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-white);
}

.hero-scroll span {
  margin-bottom: var(--spacing-xs);
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-scroll i {
  font-size: 1.5rem;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }

  40% {
    transform: translateY(-10px) translateX(-50%);
  }

  60% {
    transform: translateY(-5px) translateX(-50%);
  }
}

/* Logo centralizado no topo */
.hero-logo {
  text-align: center;
  margin-bottom: 2rem;
}

.logo-image {
  height: 70px;
  margin: 0 auto;
}

/* Container de vídeo */
.hero-video {
  position: relative;
  width: 100%;
  max-width: 600px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 15px rgba(118, 183, 44, 0.2);
  margin: 1.5rem 0;
}

.hero-video video {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
}

/* Ajustes para responsividade */
@media (max-width: 768px) {
  .hero-logo {
    margin-bottom: 1rem;
  }

  .logo-image {
    height: 60px;
  }

  .hero-video {
    max-width: 100%;
  }
}

/* ======================================================================
     Divisor FULL-WIDTH com SVGs responsivos nos extremos da viewport
     ====================================================================== */
:root {
  --divisor-min: 50px;
  --divisor-max: 80px;
  --divisor-height: clamp(var(--divisor-min), 8vw, var(--divisor-max));
}

.section--divided {
  position: relative;
  overflow: visible;
  overflow-x: hidden;
}

.section--divided::before,
.section--divided::after {
  content: "";
  position: absolute;
  width: 50vw;
  height: var(--divisor-height);
  background-repeat: no-repeat;
  pointer-events: none;
}

.section--divided::before {
  top: 0;
  left: 0;
  background-image: url("/static/img/divs_down.svg");
  background-position: left bottom;
  background-size: auto 100%;
  z-index: 2;
}

.section--divided::after {
  top: calc(-1 * var(--divisor-height));
  right: 0;
  background-image: url("/static/img/divs_up.svg");
  background-position: right top;
  background-size: auto 100%;
  z-index: 1;
}

@media (max-width: 400px) {
  :root {
    --divisor-min: 30px;
    --divisor-max: 60px;
  }
}

/* Adicione este CSS para a solução específica */
.section--divided-wrapper {
  overflow: visible;
}

.section--divided-wrapper::before,
.section--divided-wrapper::after {
  content: "";
  position: absolute;
  width: 50vw;
  height: var(--divisor-height);
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 3;
  /* Valor alto para estar acima do overlay da classe about-us */
}

.section--divided-wrapper::before {
  top: 0;
  left: 0;
  background-image: url("/static/img/divs_down.svg");
  background-position: left bottom;
  background-size: auto 100%;
}

.section--divided-wrapper::after {
  top: calc(-1 * var(--divisor-height));
  right: 0;
  background-image: url("/static/img/divs_up.svg");
  background-position: right top;
  background-size: auto 100%;
}

/* ==========================================================================
       Hero Section - Ajustes para botões
       ========================================================================== */

.hero-buttons {
  position: relative;
  z-index: 30;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: flex-start;
}

.hero-buttons .btn {
  position: relative;
  z-index: 31;
}

.hero-video {
  position: relative;
  z-index: 10;
}

/* ==========================================================================
       Por que investir
       ========================================================================== */

.why-invest {
  background-color: var(--color-white);
  padding-top: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
  position: relative;
}

.why-invest .overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.why-invest.with-bg-image {
  background-image: url('/static/img/dark-leaves-bg.webp');
  background-size: cover;
  background-position: center;
}

.why-invest.with-bg-image .overlay {
  display: block;
}

.why-invest.with-bg-image .section-header h2,
.why-invest.with-bg-image .section-header p {
  color: var(--color-white);
}

.why-invest .container {
  padding-right: 350px;
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .why-invest .container {
    padding-right: 1rem !important;
  }
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: var(--spacing-2xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.invest-card {
  position: relative;
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}

.invest-card::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(-45deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  z-index: 0;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}

.invest-card:hover::before {
  width: 100%;
}

.invest-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(118, 183, 44, 0.25);
  border-color: rgba(118, 183, 44, 0.3);
}

.card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(118, 183, 44, 0.3);
  position: relative;
  z-index: 2;
}

.invest-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

.why-invest.with-bg-image .invest-card h3 {
  color: var(--color-white);
}

.invest-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 2;
}

.why-invest.with-bg-image .invest-card p {
  color: rgba(255, 255, 255, 0.8);
}

.invest-cta {
  text-align: center;
  margin-top: var(--spacing-xl);
}

.invest-cta .btn-primary {
  box-shadow: 0 8px 20px rgba(118, 183, 44, 0.3);
  transition: all 0.3s ease;
}

.invest-cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(118, 183, 44, 0.4);
}

@media (max-width: 992px) {
  .why-invest .container {
    padding-right: var(--spacing-md);
  }
}

@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .invest-card {
    padding: 25px;
  }

  .card-icon {
    width: 56px;
    height: 56px;
    font-size: 1.3rem;
  }

  .invest-card h3 {
    font-size: 1.2rem;
  }

  .invest-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .cards-grid,
  .invest-reasons-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
       Cultiva
       ========================================================================== */

.cultiva {
  background-image: url('/static/img/c_pattern.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.cultiva::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.cultiva .container {
  padding-right: 350px;
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .cultiva .container {
    padding-right: 1rem !important;
  }
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.cultiva .section-header h2,
.cultiva .section-header p {
  color: var(--color-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-block {
  margin-bottom: 2rem;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--color-primary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(118, 183, 44, 0.3);
}

.about-subtitle {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 1rem;
  line-height: 1.2;
  text-align: left;
}

.about-subtitle-centered {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-white);
  margin: 2rem 0 1.5rem;
  text-align: center;
  position: relative;
  padding-bottom: 0.8rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-subtitle-centered:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--color-primary);
}

.about-block p {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-secondary-light);
}

.about-block p:last-child {
  margin-bottom: 0;
}

.about-why-invest {
  margin: 2.5rem 0;
  text-align: center;
}

.invest-reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.invest-reason-card {
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.invest-reason-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(118, 183, 44, 0.3);
}

.invest-reason-card i {
  font-size: 2.2rem;
  color: var(--color-primary);
  margin-bottom: 0.8rem;
  background-color: rgba(118, 183, 44, 0.1);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.invest-reason-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 0.8rem;
}

.invest-reason-card p {
  font-size: 0.95rem;
  color: var(--color-secondary-light);
  line-height: 1.5;
}

.highlight-box {
  background-color: rgba(61, 61, 61, 0.95);
  padding: 1.8rem;
  margin: 2rem 0;
  border-radius: var(--radius-md);
  font-weight: 500;
  color: var(--color-white);
  text-align: center;
  position: relative;
  box-shadow: 0 8px 20px rgba(118, 183, 44, 0.3);
}

.highlight-box:before {
  content: '"';
  position: absolute;
  top: -15px;
  left: 20px;
  font-size: 4rem;
  color: var(--color-primary);
  font-family: Georgia, serif;
  line-height: 1;
}

.highlight-box p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

.about-tagline {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-white);
  margin: 2rem 0;
  text-align: center;
  font-style: italic;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-cta {
  margin: 2.5rem 0 1rem;
  text-align: center;
}

.about-cta .btn-primary {
  font-size: 1.1rem;
  padding: 0.8rem 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.about-cta .btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(118, 183, 44, 0.35);
}

@media (max-width: 992px) {
  .about-us .container {
    padding-right: var(--spacing-md);
  }

  .about-tagline {
    font-size: 1.2rem;
  }

  .about-subtitle {
    font-size: 1.3rem;
  }

  .about-subtitle-centered {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .about-block {
    padding: 1.2rem;
  }

  .invest-reasons-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .invest-reason-card {
    padding: 1.2rem;
  }

  .invest-reason-card i {
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
  }

  .about-tagline {
    font-size: 1.1rem;
  }

  .highlight-box {
    padding: 1.5rem;
  }

  .highlight-box p {
    font-size: 1rem;
  }

  .about-cta .btn {
    display: block;
    width: 100%;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about-block {
    padding: 1rem;
  }

  .about-subtitle {
    font-size: 1.2rem;
  }

  .about-subtitle-centered {
    font-size: 1.3rem;
  }

  .invest-reason-card h4 {
    font-size: 1rem;
  }

  .invest-reason-card p {
    font-size: 0.9rem;
  }
}

/* ==========================================================================
       Sobre Nós
       ========================================================================== */

.about-us {
  background-color: rgba(61, 61, 61, 0.95);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.about-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.about-us .container {
  padding-right: 350px;
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .about-us .container {
    padding-right: 1rem !important;
  }
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-us .section-header h2,
.about-us .section-header p {
  color: var(--color-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-block {
  margin-bottom: 2rem;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--color-primary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(118, 183, 44, 0.3);
}

.about-subtitle {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 1rem;
  line-height: 1.2;
  text-align: left;
}

.about-subtitle-centered {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-white);
  margin: 2rem 0 1.5rem;
  text-align: center;
  position: relative;
  padding-bottom: 0.8rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-subtitle-centered:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--color-primary);
}

.about-block p {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-secondary-light);
}

.about-block p:last-child {
  margin-bottom: 0;
}

.about-why-invest {
  margin: 2.5rem 0;
  text-align: center;
}

.invest-reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.invest-reason-card {
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.invest-reason-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(118, 183, 44, 0.3);
}

.invest-reason-card i {
  font-size: 2.2rem;
  color: var(--color-primary);
  margin-bottom: 0.8rem;
  background-color: rgba(118, 183, 44, 0.1);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.invest-reason-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 0.8rem;
}

.invest-reason-card p {
  font-size: 0.95rem;
  color: var(--color-secondary-light);
  line-height: 1.5;
}

.highlight-box {
  background-color: rgba(61, 61, 61, 0.95);
  padding: 1.8rem;
  margin: 2rem 0;
  border-radius: var(--radius-md);
  font-weight: 500;
  color: var(--color-white);
  text-align: center;
  position: relative;
  box-shadow: 0 8px 20px rgba(118, 183, 44, 0.3);
}

.highlight-box:before {
  content: '"';
  position: absolute;
  top: -15px;
  left: 20px;
  font-size: 4rem;
  color: var(--color-primary);
  font-family: Georgia, serif;
  line-height: 1;
}

.highlight-box p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

.about-tagline {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-white);
  margin: 2rem 0;
  text-align: center;
  font-style: italic;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-cta {
  margin: 2.5rem 0 1rem;
  text-align: center;
}

.about-cta .btn-primary {
  font-size: 1.1rem;
  padding: 0.8rem 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.about-cta .btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(118, 183, 44, 0.35);
}

@media (max-width: 992px) {
  .about-us .container {
    padding-right: var(--spacing-md);
  }

  .about-tagline {
    font-size: 1.2rem;
  }

  .about-subtitle {
    font-size: 1.3rem;
  }

  .about-subtitle-centered {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .about-block {
    padding: 1.2rem;
  }

  .invest-reasons-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .invest-reason-card {
    padding: 1.2rem;
  }

  .invest-reason-card i {
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
  }

  .about-tagline {
    font-size: 1.1rem;
  }

  .highlight-box {
    padding: 1.5rem;
  }

  .highlight-box p {
    font-size: 1rem;
  }

  .about-cta .btn {
    display: block;
    width: 100%;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about-block {
    padding: 1rem;
  }

  .about-subtitle {
    font-size: 1.2rem;
  }

  .about-subtitle-centered {
    font-size: 1.3rem;
  }

  .invest-reason-card h4 {
    font-size: 1rem;
  }

  .invest-reason-card p {
    font-size: 0.9rem;
  }
}

/* ======================================================================
   Seção “Modelos” full-bleed
   ====================================================================== */

.models-section {
  background-color: var(--color-secondary);
  /* #3f3f3f */
  padding-top: var(--spacing-2xl);
  margin-top: 0;
  /* Espaço maior antes da seção */
}

/* Efeito de hover para as imagens */
.model-bleed {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  /* Transição suave */
}

.model-bleed:hover {
  transform: scale(1.02);
  /* Cresce ligeiramente - 2% maior */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  /* Sombra para dar profundidade */
}

.models-section .section-header h2,
.models-section .section-header p {
  color: var(--color-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.models-section .container {
  padding-right: 350px;
  /* Compensa o formulário */
}

@media (max-width: 992px) {
  .models-section .container {
    padding-right: 1rem !important;
  }
}

#modelos {
  position: relative;
  /* contexto para o bleed */
  padding: 0;
  /* gruda na seção anterior e não empurra nada */
  margin: 0;
  /* zera margens padrão */
  overflow: visible;
  /* permite ao img “vazar” */
}

/* imagem “vazada” – ocupa toda a viewport menos 370px do formulário */
#modelos .model-bleed {
  display: block;
  width: calc(100vw - 420px);
  /* full-bleed left, respeita o form à direita */
  height: auto;
  object-fit: cover;
}

/* quando o form some (<992px), volta a 100% da viewport */
@media (max-width: 992px) {
  #modelos .model-bleed {
    width: 100vw;
    border-radius: var(--radius-lg);
  }
}

/* Espaço adicional no final da seção */
.model-bottom-space {
  height: var(--spacing-3xl);
}

@media (max-width: 992px) {
  .models-section .container {
    padding-right: var(--spacing-md);
  }
}

/* Estilo do CTA */
.models-cta {
  text-align: center;
  margin-top: var(--spacing-2xl);
  margin-bottom: var(--spacing-xl);
}

.models-cta .btn-primary {
  padding: 0.8rem 2rem;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.models-cta .btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(118, 183, 44, 0.4);
}

@media (max-width: 992px) {
  .models-section .container {
    padding-right: var(--spacing-md);
  }

  .models-cta .btn-primary {
    width: 100%;
    max-width: 400px;
  }
}

/* ==========================================================================
       Mercado expansao
       ========================================================================== */

.market {
  position: relative;
  background-color: var(--color-white);
  overflow: hidden;
}

/* Container com padding à direita para acomodar o formulário */
.market .container {
  padding-right: 350px;
}

@media (max-width: 992px) {
  .market .container {
    padding-right: 1rem !important;
  }
}

/* Novos cards de estatísticas com ícones ampliados */
.market-stats-modern {
  display: flex;
  flex-wrap: nowrap;
  gap: 2rem;
  justify-content: center;
  margin: 3rem auto;
  max-width: 1100px;
}

.market-stat-modern {
  width: calc(33.333% - 1.33rem);
  min-width: 265px;
  position: relative;
  background-color: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  padding: 2rem;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.market-stat-modern:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 30px rgba(118, 183, 44, 0.25);
}

.stat-modern-icon {
  width: 90px;
  height: 90px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  /* position: relative; */
  z-index: 1;
  box-shadow: 0 8px 20px rgba(118, 183, 44, 0.3);
  transition: all 0.4s ease;
}

.market-stat-modern:hover .stat-modern-icon {
  transform: scale(1.1);
}

/* Valor e label */
.stat-modern-info {
  width: 100%;
}

.stat-modern-value {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-secondary);
  margin-bottom: 0.7rem;
}

.stat-modern-label {
  display: block;
  color: var(--color-secondary-light);
  font-size: 1rem;
}

.stat-modern-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--color-primary);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}

.market-stat-modern:hover .stat-modern-bg {
  height: 100%;
  opacity: 0.07;
}

/* Layout de conteúdo principal */
.market-content-container {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  align-items: center;
}

.market-visual {
  flex: 1;
  position: relative;
}

.market-chart {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background-color: var(--color-light);
  padding: 2rem;
  height: 300px;
}

/* Visualização animada */
.cannabis-market-visual {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.growth-bars {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 70%;
  padding-bottom: 10px;
}

.growth-bar {
  width: 22%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.bar-fill {
  width: 100%;
  background: linear-gradient(to top, var(--color-primary), var(--color-primary-dark));
  border-radius: 6px 6px 0 0;
  position: absolute;
  bottom: 0;
  animation: growUp 2s ease-out forwards;
  box-shadow: 0 5px 15px rgba(118, 183, 44, 0.2);
}

.bar-fill-1 {
  height: 40%;
  animation-delay: 0.2s;
}

.bar-fill-2 {
  height: 55%;
  animation-delay: 0.4s;
}

.bar-fill-3 {
  height: 75%;
  animation-delay: 0.6s;
}

.bar-fill-4 {
  height: 90%;
  animation-delay: 0.8s;
}

@keyframes growUp {
  from {
    transform: scaleY(0);
  }

  to {
    transform: scaleY(1);
  }
}

.bar-year {
  position: absolute;
  bottom: -25px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-secondary);
}

.market-icons {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
}

.market-icon {
  width: 22%;
  display: flex;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-primary);
  background-color: rgba(118, 183, 44, 0.1);
  height: 45px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.market-icon:hover {
  transform: translateY(-5px);
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 8px 20px rgba(118, 183, 44, 0.3);
}

.key-metrics {
  display: flex;
  justify-content: space-around;
  margin-top: 1.5rem;
}

.key-metric {
  background-color: var(--color-light);
  border-left: 3px solid var(--color-primary);
  padding: 1.2rem;
  border-radius: var(--radius-md);
  text-align: center;
  flex: 1;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.key-metric:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(118, 183, 44, 0.2);
}

.metric-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.3rem;
}

.metric-label {
  font-size: 0.9rem;
  color: var(--color-secondary);
}

.market-info {
  flex: 1;
}

/* Título centralizado */
.opportunity-title {
  text-align: center;
  margin-bottom: 2rem;
}

.opportunity-title h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.opportunity-divider {
  height: 3px;
  width: 60px;
  background-color: var(--color-primary);
  margin: 0 auto;
}

.market-info-blocks {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.info-block {
  display: flex;
  align-items: flex-start;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border-left: 3px solid var(--color-primary);
}

.info-block:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 20px rgba(118, 183, 44, 0.2);
}

.info-block-icon {
  color: var(--color-primary);
  background-color: rgba(118, 183, 44, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.info-block-text {
  flex: 1;
}

.info-block-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}

.info-block-text p {
  font-size: 0.95rem;
  color: var(--color-secondary-light);
  margin: 0;
  line-height: 1.5;
}

.market-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.market-cta .btn-primary {
  padding: 0.9rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  box-shadow: 0 8px 20px rgba(118, 183, 44, 0.3);
  transition: all 0.3s ease;
}

.market-cta .btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(118, 183, 44, 0.4);
}

/* Responsividade */
@media (max-width: 992px) {
  .market .container {
    padding-right: var(--spacing-md);
  }

  .market-stat-modern {
    width: calc(50% - 1rem);
  }

  .market-content-container {
    flex-direction: column-reverse;
    gap: 2rem;
    margin-top: 2rem;
    padding: 0;
  }
  
  .market-visual {
    width: 100%;
    max-width: 100%;
  }
  
  .market-info {
    width: 100%;
    max-width: 100%;
  }

  .opportunity-title {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .market-stat-modern {
    width: 100%;
  }
  
  /* Ajustar gráfico para mobile */
  .market-chart {
    width: 100%;
    padding: 1.5rem;
    height: 250px;
  }
  
  .growth-bars {
    padding-bottom: 5px;
  }
  
  .bar-year {
    font-size: 0.8rem;
  }
  
  .market-icons {
    padding-top: 20px;
  }
  
  .market-icon {
    width: 22%;
    height: 40px;
    font-size: 1.2rem;
  }

  .key-metrics {
    flex-direction: column;
    gap: 1rem;
  }

  .key-metric {
    margin: 0;
  }

  .info-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .info-block-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .stat-modern-icon {
    width: 70px;
    height: 70px;
    font-size: 2.2rem;
  }

  .stat-modern-value {
    font-size: 1.8rem;
  }

  .opportunity-title h3 {
    font-size: 1.8rem;
  }
  
  /* Conteúdo principal ajustado para mobile */
  .market-chart {
    height: 220px;
    padding: 1rem;
  }
  
  .market-info-blocks {
    gap: 1rem;
  }
  
  .info-block {
    padding: 1rem;
  }
  
  .info-block-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  
  .info-block-text h4 {
    font-size: 1rem;
  }
  
  .info-block-text p {
    font-size: 0.9rem;
  }
}

/* ==========================================================================
       Diferenciais
       ========================================================================== */

.differentials {
  background: 
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('/static/img/bud_pattern.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

/* Adicione isso ao seu CSS atual para deixar o título e texto do header brancos */
.differentials .section-header h2,
.differentials .section-header p {
  color: var(--color-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* Adiciona uma sombra sutil para melhorar a legibilidade */
}

.differentials .container {
  padding-right: 350px;
}

@media (max-width: 992px) {
  .differentials .container {
    padding-right: 1rem !important;
  }
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.differential-card {
  background-color: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  padding: var(--spacing-lg);
  transition: all var(--transition-fast);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
}

/* Removed green bar */

.differential-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(118, 183, 44, 0.25);
  border-color: rgba(118, 183, 44, 0.3);
}

.differential-card .card-icon {
  width: 70px;
  height: 70px;
  background-color: var(--color-primary);
  color: var(--color-white);
  margin: 0 auto var(--spacing-md);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.7rem;
}

.differential-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: var(--color-secondary);
}

.differential-card p {
  color: var(--color-secondary-light);
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
  min-height: 4.5rem;
}

@media (max-width: 992px) {
  .differentials .container {
    padding-right: var(--spacing-md);
  }

  .differentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .differentials-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .differential-card p {
    min-height: auto;
  }

  .differential-card .card-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .differential-card h3 {
    font-size: 1.2rem;
  }
}

/* ==========================================================================
       Valores - Nova versão com grid de cards
       ========================================================================== */

.values-new {
  background-color: var(--color-white);
  background-image: linear-gradient(120deg, #f8f9fa 0%, #ffffff 100%);
  padding: var(--spacing-3xl) 0;
  position: relative;
  overflow: hidden;
}

.values-new::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(118, 183, 44, 0.1) 0%, rgba(118, 183, 44, 0.05) 100%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: -150px;
  left: -150px;
  z-index: 1;
}

.values-new::after {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, rgba(118, 183, 44, 0.1) 0%, rgba(118, 183, 44, 0.05) 100%);
  border-radius: 50% 50% 50% 50% / 60% 40% 60% 40%;
  bottom: -100px;
  right: -100px;
  z-index: 1;
}

.values-new .container {
  position: relative;
  z-index: 2;
  padding-right: 350px;
  /* Compensar o espaço do formulário */
}

@media (max-width: 992px) {
  .values-new .container {
    padding-right: 1rem !important;
  }
}

/* Grid de cards */
.values-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 3rem auto;
  max-width: 800px;
}

.value-card {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(118, 183, 44, 0.15);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-primary-dark));
  transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}

.value-card:hover::before {
  width: 100%;
  opacity: 0.05;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(118, 183, 44, 0.25);
}

/* Card ocupando largura completa (2 colunas) */
.value-card.full-width {
  grid-column: span 2;
  margin-bottom: var(--spacing-xl);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 20px rgba(118, 183, 44, 0.2);
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1);
}

.value-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-secondary);
  position: relative;
  z-index: 2;
}

.value-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-secondary-light);
  position: relative;
  z-index: 2;
}

.value-card.full-width p {
  max-width: 80%;
  margin: 0 auto;
}

/* CTA centralizado abaixo */
.values-cta {
  text-align: center;
  margin-top: 2rem;
}

.values-cta .btn-primary {
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(118, 183, 44, 0.2);
}

.values-cta .btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(118, 183, 44, 0.3);
}

/* Media Queries */
@media (max-width: 992px) {
  .values-new .container {
    padding-right: var(--spacing-md);
    /* Reset para mobile */
  }

  .value-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .value-card h3 {
    font-size: 1.2rem;
  }

  .value-card p {
    font-size: 0.9rem;
  }

  .value-card.full-width p {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .values-card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin: 2rem auto;
    max-width: 100%;
    padding: 0 0.5rem;
  }

  .value-card {
    flex: 1 1 calc(50% - 8px);
    min-width: 140px;
    max-width: 180px;
    padding: 1.2rem 0.8rem;
    margin: 0;
    border-radius: 12px;
  }

  .value-card.full-width {
    flex: 1 1 100%;
    max-width: 100%;
    margin-top: 0.5rem;
    margin-bottom: var(--spacing-2xl);
  }

  .value-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .value-card h3 {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    line-height: 1.2;
  }

  .value-card p {
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .values-cta {
    margin-top: 1.5rem;
  }

  .values-cta .btn-primary {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 576px) {
  .values-card-grid {
    gap: 12px;
    padding: 0 0.25rem;
  }

  .value-card {
    flex: 1 1 calc(50% - 6px);
    min-width: 130px;
    max-width: 160px;
    padding: 1rem 0.6rem;
  }

  .value-card.full-width {
    margin-bottom: var(--spacing-xl);
  }

  .value-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .value-card h3 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .value-card p {
    font-size: 0.75rem;
    line-height: 1.2;
  }
}

@media (max-width: 400px) {
  .values-card-grid {
    gap: 10px;
    padding: 0;
  }

  .value-card {
    flex: 1 1 calc(50% - 5px);
    min-width: 120px;
    max-width: 150px;
    padding: 0.9rem 0.5rem;
  }

  .value-card.full-width {
    margin-bottom: var(--spacing-lg);
  }

  .value-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    margin-bottom: 0.7rem;
  }

  .value-card h3 {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
  }

  .value-card p {
    font-size: 0.7rem;
    line-height: 1.1;
  }
}

/* ==========================================================================
       Objetivos Futuros
       ========================================================================== */

.future {
  background-color: rgba(61, 61, 61, 0.95);
  position: relative;
}

.future .container {
  padding-right: 350px;
  position: relative;
  z-index: 2;
}

.future .section-header h2,
.future .section-header p {
  color: var(--color-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
  .future .container {
    padding-right: 1rem !important;
  }
}

.future-goals {
  margin-bottom: var(--spacing-2xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.goal-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.goal-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(118, 183, 44, 0.35);
  background-color: rgba(255, 255, 255, 1);
}

.goal-icon {
  font-size: 2.2rem;
  color: var(--color-primary);
  flex-shrink: 0;
  width: 60px;
  text-align: center;
}

.goal-text {
  flex: 1;
}

.goal-text h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--color-secondary);
}

.goal-text p {
  color: var(--color-secondary-light);
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: justify;
  hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
}

.future-image {
  margin-bottom: var(--spacing-2xl);
  text-align: center;
}

.future-image img {
  border-radius: var(--radius-lg);
  max-width: 70%;
  box-shadow: 0 10px 15px rgba(118, 183, 44, 0.2);
  margin: 0 auto;
}

.future-cta {
  text-align: center;
}

.future-cta .btn-primary {
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
}

@media (max-width: 992px) {
  .future .container {
    padding-right: var(--spacing-md);
  }
}

@media (max-width: 768px) {
  .goal-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--spacing-md);
  }

  .goal-icon {
    margin-bottom: var(--spacing-sm);
  }

  .goal-text h3 {
    font-size: 1.2rem;
    text-align: center;
  }

  .goal-text p {
    font-size: 0.9rem;
    text-align: center;
  }

  .future-image img {
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .goal-icon {
    font-size: 2rem;
  }
}

/* ==========================================================================
       FAQ
       ========================================================================== */

.faq {
  background-color: var(--color-white);
}

.faq .container {
  padding-right: 350px;
}

@media (max-width: 992px) {
  .faq .container {
    padding-right: 1rem !important;
  }
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: var(--spacing-md);
  overflow: hidden;
  transition: all var(--transition-fast);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.faq-item:hover {
  box-shadow: 0 5px 20px rgba(118, 183, 44, 0.15);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-lg);
  cursor: pointer;
  background-color: var(--color-light);
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-secondary);
}

.question-icon {
  color: var(--color-primary);
  font-size: 1.1rem;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.question-icon .fa-minus {
  display: none;
}

.faq-item.active .question-icon .fa-plus {
  display: none;
}

.faq-item.active .question-icon .fa-minus {
  display: block;
}

.faq-answer {
  padding: 0 var(--spacing-lg);
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active .faq-answer {
  padding: 0 var(--spacing-lg) var(--spacing-lg);
  max-height: 500px;
}

.faq-answer p {
  color: var(--color-secondary-light);
  padding-top: var(--spacing-md);
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: justify;
  hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
}

@media (max-width: 992px) {
  .faq .container {
    padding-right: var(--spacing-md);
  }
}

@media (max-width: 768px) {
  .faq-question h3 {
    font-size: 1rem;
  }

  .faq-answer p {
    font-size: 0.9rem;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .faq-question {
    padding: var(--spacing-md);
  }

  .faq-item.active .faq-answer {
    padding: 0 var(--spacing-md) var(--spacing-md);
  }
}

/* ==========================================================================
       CTA Final
       ========================================================================== */

.final-cta {
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: var(--spacing-3xl) 0;
  text-align: center;
}

.final-cta .container {
  padding-right: 350px;
}

@media (max-width: 992px) {
  .final-cta .container {
    padding-right: 1rem !important;
  }
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  color: var(--color-primary);
}

.cta-content p {
  font-size: 1.3rem;
  margin-bottom: var(--spacing-xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.cta-content .btn-primary {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all var(--transition-fast);
  border: none;
  background-color: var(--color-primary);
}

.cta-content .btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(118, 183, 44, 0.3);
  background-color: var(--color-primary-dark);
}

.social-proof {
  margin-top: var(--spacing-2xl);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.social-icons a {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  transition: all var(--transition-fast);
}

.social-icons a:hover {
  background-color: var(--color-primary);
  transform: translateY(-5px);
}

.social-proof p {
  font-size: 0.9rem;
  margin-top: var(--spacing-2xl);
  color: var(--color-gray);
}

@media (max-width: 992px) {
  .final-cta .container {
    padding-right: var(--spacing-md);
  }

  .cta-content h2 {
    font-size: 2.5rem;
  }

  .cta-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 2.2rem;
  }

  .cta-content p {
    font-size: 1rem;
    max-width: 100%;
  }

  .social-icons a {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .cta-content h2 {
    font-size: 1.8rem;
  }

  .cta-content .btn-primary {
    width: 80%;
    padding: 0.8rem 1rem;
  }
}

/* ==========================================================================
       Formulário de Contato
       ========================================================================== */

.contact-form-container {
  position: fixed;
  top: 70px;
  right: 30px;
  width: 370px;
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 5px 15px rgba(118, 183, 44, 0.35), 0 15px 30px rgba(118, 183, 44, 0.45);
  border: 1px solid rgba(118, 183, 44, 0.2);
  z-index: 900;
  transition: all var(--transition-fast);
  transform: translateX(0);
  max-height: calc(100vh - 90px);
  overflow-y: auto;
}

.contact-form-container::-webkit-scrollbar {
  width: 8px;
}

.contact-form-container::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}

.contact-form-container::-webkit-scrollbar-thumb {
  background-color: var(--color-primary-light);
  border-radius: 4px;
}

.contact-form-container.hidden {
  transform: translateX(400px);
}

.form-close-mobile {
  display: none;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background-color: var(--color-light);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: var(--color-secondary);
}

.contact-header {
  background-color: var(--color-white);
  padding: 1.2rem 1.5rem 0.3rem;
  text-align: center;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.contact-header img {
  height: 40px;
  margin: 0 auto 0.5rem;
}

.contact-header h3 {
  color: var(--color-secondary);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.1rem;
}

.contact-header p {
  font-size: 0.8rem;
  color: var(--color-secondary-light);
  margin-bottom: 0.2rem;
}

.contact-form {
  padding: 0 1.5rem 1.2rem;
}

.form-group {
  margin-bottom: 12px;
}

.form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  align-items: flex-start;
}

.form-group.half {
  flex: 1;
  margin-bottom: 0;
}

.form-group.half input {
  margin-bottom: 0;
  height: 100%;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  color: var(--color-secondary);
  transition: all var(--transition-fast);
  margin: 0;
  box-sizing: border-box;
  height: 40px;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(118, 183, 44, 0.2);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%233D3D3D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
}

.recaptcha-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px;
  margin-bottom: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background-color: #f9f9f9;
}

.recaptcha-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.recaptcha-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--color-primary);
}

.recaptcha-checkbox label {
  font-size: 0.8rem;
}

.recaptcha-logo img {
  height: 26px;
  width: auto;
}

.btn-submit {
  background-color: var(--color-primary);
  color: var(--color-white);
  width: 100%;
  padding: 0.7rem;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 0;
  height: 40px;
}

.btn-submit:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(118, 183, 44, 0.4);
}

.form-privacy {
  margin-top: 8px;
  font-size: 0.65rem;
  line-height: 1.2;
  text-align: center;
  color: var(--color-dark-gray);
}

.form-privacy a {
  color: var(--color-primary);
  text-decoration: underline;
}

@media (max-width: 1200px) {
  .contact-form-container {
    width: 330px;
    right: 20px;
  }
}

@media (max-width: 992px) {
  .contact-form-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1100;
    background-color: var(--color-white);
    border-radius: 0;
    overflow-y: auto;
    box-shadow: none;
    border: none;
  }

  .contact-form-container.active {
    display: block;
  }

  .form-close-mobile {
    display: flex;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1101;
    width: 40px;
    height: 40px;
  }

  .form-row {
    flex-direction: column;
    gap: 12px;
  }

  .form-group.half {
    width: 100%;
  }
}

/* ==========================================================================
       Footer (comentado)
       ========================================================================== */

/*
  .footer {
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
  }
  ...
  */

/* ==========================================================================
       Sucesso Modal
       ========================================================================== */

.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1100;
}

.modal-content {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-2xl);
  max-width: 500px;
  width: 90%;
  text-align: center;
  animation: fadeIn 0.5s;
}

.modal-icon {
  color: var(--color-primary);
  font-size: 4rem;
  margin-bottom: var(--spacing-lg);
}

.modal-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

.modal-content p {
  margin-bottom: var(--spacing-xl);
}

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

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

/* ==========================================================================
     WhatsApp Botão Flutuante
     ========================================================================== */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  box-shadow: var(--shadow-lg);
  z-index: 800;
  transition: all var(--transition-fast);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(118, 183, 44, 0.3);
}

@media (max-width: 992px) {
  .whatsapp-float {
    left: 20px;
    bottom: 90px;
  }
}

/* ==========================================================================
       Botão CTA Mobile - Correção de visibilidade
       ========================================================================== */

.mobile-cta-button {
  display: none !important;
}

@media (max-width: 992px) {
  .mobile-cta-button {
    display: block !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 10px;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 800;
    text-align: center;
  }

  .mobile-cta-button .btn {
    width: 90%;
    max-width: 400px;
    font-weight: 700;
  }
}

@media (max-width: 992px) {
  .footer {
    margin-bottom: 70px;
  }
}

/* ==========================================================================
       Media Queries Gerais
       ========================================================================== */

@media (max-width: 1200px) {
  .hero-text h1 {
    font-size: 3rem;
  }

  .hero-text h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 992px) {
  html {
    font-size: 15px;
  }

  .menu-toggle {
    display: flex;
  }

  .navbar {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-fast);
    z-index: 999;
  }

  .navbar.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
  }

  .nav-list li {
    width: 100%;
    text-align: center;
    padding: var(--spacing-sm) 0;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text p {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    margin-top: var(--spacing-xl);
    justify-content: center;
  }

  .about-content,
  .market-content,
  .values-content {
    flex-direction: column;
    gap: var(--spacing-2xl);
  }

  .about-images,
  .market-image,
  .values-images {
    order: -1;
    margin-bottom: var(--spacing-lg);
  }

  .market-highlights {
    flex-direction: column;
    gap: var(--spacing-md);
  }

  .market-highlight {
    margin: 0;
  }

  .contact-form-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: var(--color-white);
    border-radius: 0;
    overflow-y: auto;
  }

  .contact-form-container.active {
    display: block;
  }

  .form-close-mobile {
    display: flex;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-xl);
  }

  .footer-logo {
    margin: 0 auto;
  }

  .footer-links {
    flex-direction: column;
    gap: var(--spacing-xl);
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--spacing-md);
  }

  .footer-legal {
    justify-content: center;
  }

  .whatsapp-float {
    bottom: 80px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  .section {
    padding: var(--spacing-2xl) 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .hero-section {
    padding: 80px 0 60px;
    min-height: auto;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text h2 {
    font-size: 1.3rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: var(--spacing-md);
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-scroll {
    display: none;
  }

  .models-grid {
    flex-direction: column;
    align-items: center;
  }

  .model-card {
    width: 100%;
    max-width: 100%;
  }

  .model-card.featured {
    transform: none;
  }

  .model-card.featured:hover {
    transform: translateY(-10px);
  }

  .market-stats {
    flex-direction: column;
  }

  .goal-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .goal-icon {
    margin-bottom: var(--spacing-sm);
  }

  .cta-content h2 {
    font-size: 2.5rem;
  }

  .cta-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 13px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text h2 {
    font-size: 1.1rem;
  }

  .secondary-image {
    width: 50%;
    bottom: -10px;
    right: -10px;
  }

  .market-highlight {
    padding: var(--spacing-md);
  }

  .highlight-value {
    font-size: 2rem;
  }

  .faq-question h3 {
    font-size: 1rem;
  }

  .modal-content {
    padding: var(--spacing-lg);
  }
}

/* ==========================================================================
       Correções Mobile Adicionais - Auditoria
       ========================================================================== */

/* Ajustes para telas muito pequenas (320px - 375px) */
@media (max-width: 375px) {
  /* Container com padding mínimo */
  .container {
    padding: 0 15px;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  /* Tipografia responsiva extrema */
  .hero-text h1 {
    font-size: 1.75rem;
    line-height: 1.2;
  }
  
  .section-header h2 {
    font-size: 1.6rem;
  }
  
  .about-subtitle {
    font-size: 1.1rem;
  }
  
  .differential-card h3,
  .value-card h3,
  .invest-card h3 {
    font-size: 1.05rem;
  }
  
  p {
    font-size: 0.875rem;
  }
  
  /* Market stats ajustes */
  .market-stat-modern {
    padding: 1.5rem;
    min-width: unset;
  }
  
  .stat-modern-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  
  .stat-modern-value {
    font-size: 1.6rem;
  }
}

/* Divisores SVG mobile */
@media (max-width: 768px) {
  .section--divided::before,
  .section--divided::after,
  .section--divided-wrapper::before,
  .section--divided-wrapper::after {
    width: 45vw;
  }
}

/* Touch targets mínimos */
@media (max-width: 768px) {
  .btn {
    min-height: 44px;
    padding: 0.75rem 1.2rem;
  }
  
  .form-group input,
  .form-group select {
    height: 44px;
  }
  
  .btn-submit {
    height: 44px;
  }
  
  /* Hero section correções */
  .hero-buttons {
    margin-top: 2rem;
    z-index: 50;
  }
  
  .hero-video {
    margin-bottom: 2rem;
  }
  
  /* Cards ajustados para viewport */
  .market-stats-modern,
  .cards-grid,
  .values-card-grid {
    padding: 0 1rem;
    gap: 1rem;
  }
}

/* ==========================================================================
   MOBILE REFATORADO - CORREÇÕES DEFINITIVAS
   ========================================================================== */

/* Desktop: containers com espaço para formulário */
.market .container,
.cultiva .container,
.about-us .container,
.why-invest .container,
.differentials .container,
.values-new .container,
.future .container,
.faq .container,
.final-cta .container,
.models-section .container {
  padding-right: 350px;
}

/* MOBILE GLOBAL: Reset completo de containers */
@media (max-width: 992px) {
  /* Reset universal de containers */
  .container,
  [class*="container"] {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 1rem !important;
    margin: 0 auto !important;
  }
  
  /* Prevenir scroll horizontal */
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
  }
  
  * {
    max-width: 100vw !important;
  }
  
  /* Hero mobile fix */
  .hero-content {
    flex-direction: column !important;
    text-align: center !important;
  }
  
  .hero-text { order: 1; }
  .hero-video { order: 2; margin: 1rem 0; }
  .hero-buttons { order: 3; margin-top: 1rem; }
}

/* Utility classes mobile */
@media (max-width: 768px) {
  .mobile-hidden { display: none !important; }
  .mobile-block { display: block !important; }
  .mobile-text-center { text-align: center !important; }
  .mobile-mb-2 { margin-bottom: 1rem !important; }
}

/* Safe areas para iPhone X+ */
@supports (padding: max(0px)) {
  .mobile-cta-button {
    padding-bottom: max(15px, env(safe-area-inset-bottom));
  }
  
  .whatsapp-float {
    bottom: max(90px, calc(70px + env(safe-area-inset-bottom)));
  }
}

/* ==========================================================================
       Correções Finais Mobile - Overflow e Scroll
       ========================================================================== */

/* Prevenir scroll horizontal em todas as seções */
@media (max-width: 992px) {
  body {
    overflow-x: hidden;
    width: 100%;
  }
  
  .section {
    overflow-x: hidden;
  }
  
  /* Hero section ajustes finais */
  .hero-section {
    overflow: hidden;
  }
  
  .hero-content {
    padding: 0 1rem;
  }
  
  /* Garantir que nenhum elemento vaze */
  * {
    max-width: 100vw !important;
  }
  
  /* Ajuste específico para market stats */
  .market-stats-modern {
    flex-wrap: wrap;
    width: 100%;
    padding: 0;
  }
}

/* TABLET: Ajustes específicos */
@media (max-width: 768px) {
  /* Hero buttons em coluna */
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    display: flex !important;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
    text-align: center;
  }
  
  /* Cards responsivos */
  .cards-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .differentials-grid,
  .values-card-grid {
    grid-template-columns: 1fr !important;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* MOBILE PEQUENO: 576px e abaixo */
@media (max-width: 576px) {
  .cards-grid {
    grid-template-columns: 1fr !important;
  }
  
  /* Hero buttons mobile fix */
  .hero-buttons {
    margin-top: 1.5rem !important;
    padding: 0 1rem;
  }
  
  .hero-buttons .btn {
    width: 100% !important;
    max-width: none !important;
    margin-bottom: 0.75rem;
    padding: 0.8rem 1.5rem;
  }
  
  .hero-buttons .btn:last-child {
    margin-bottom: 0;
  }
  
  /* Market stats carousel para mobile pequeno */
  .market-stats-modern {
    position: relative;
  }
  
  .market-stat-modern {
    flex: 0 0 90% !important;
    width: 90% !important;
    min-width: 260px !important;
  }
}

/* MOBILE MUITO PEQUENO: 400px e abaixo */
@media (max-width: 400px) {
  .cards-grid,
  .invest-reasons-grid,
  .differentials-grid,
  .values-card-grid {
    gap: 0.75rem;
  }
  
  .invest-card,
  .differential-card,
  .value-card {
    padding: 1rem;
  }
}

/* CORRE\u00c7\u00d5ES FINAIS MOBILE */
@media (max-width: 992px) {
  /* Market stats como carousel horizontal */
  .market-stats-modern {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 1rem 0.5rem !important;
    gap: 1rem !important;
    margin-left: -1rem !important;
    margin-right: -1rem !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .market-stat-modern {
    flex: 0 0 85% !important;
    width: 85% !important;
    min-width: 280px !important;
    scroll-snap-align: center !important;
  }
  
  /* Scrollbar styling */
  .market-stats-modern::-webkit-scrollbar {
    height: 6px;
  }
  
  .market-stats-modern::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
  }
  
  .market-stats-modern::-webkit-scrollbar-thumb {
    background-color: var(--color-primary);
    border-radius: 3px;
  }
  
  /* Indicador de scroll */
  .market-stats-modern::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50px;
    background: linear-gradient(to right, transparent, white);
    pointer-events: none;
    z-index: 1;
  }
  
  /* Imagem dos modelos full-width */
  #modelos .model-bleed {
    width: 100vw !important;
    margin-left: calc(-50vw + 50%);
    border-radius: 0;
  }
  
  /* Background attachment fix para iOS */
  .cultiva,
  .about-us,
  .differentials {
    background-attachment: scroll !important;
  }
}

/* ==========================================================================
   Form Validation Styles
   ========================================================================== */

/* Error messages styling */
.error-message {
  display: none;
  color: var(--color-danger);
  font-size: 12px;
  margin-top: 5px;
  padding: 4px 8px;
  background-color: rgba(220, 53, 69, 0.1);
  border-left: 3px solid var(--color-danger);
  border-radius: 3px;
  animation: slideDown 0.3s ease;
}

/* Input error state */
.form-group input.error,
.form-group select.error {
  border-color: var(--color-danger) !important;
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.2) !important;
  background-color: rgba(220, 53, 69, 0.05);
}

/* Input focus state when error */
.form-group input.error:focus,
.form-group select.error:focus {
  border-color: var(--color-danger) !important;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.3) !important;
  outline: none;
}

/* Success state for inputs (optional) */
.form-group input.success,
.form-group select.success {
  border-color: var(--color-success) !important;
  box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.2) !important;
  background-color: rgba(40, 167, 69, 0.05);
}

/* reCAPTCHA v3 styling */
.recaptcha-wrapper {
  margin: 15px 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.recaptcha-info {
  color: var(--color-dark-gray);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0.7;
}

.recaptcha-info i {
  color: var(--color-primary);
}

/* Animation for error messages */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
    max-height: 0;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    max-height: 50px;
  }
}

/* Animation for input shake on error */
@keyframes shake {
  0%, 20%, 40%, 60%, 80%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
}

.form-group input.error,
.form-group select.error {
  animation: shake 0.6s ease-in-out;
}

/* Loading state for submit button */
.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-submit .fa-spinner {
  margin-right: 8px;
}

/* Mobile adjustments for error messages */
@media (max-width: 768px) {
  .error-message {
    font-size: 11px;
    padding: 3px 6px;
  }
  
  .recaptcha-info {
    font-size: 11px;
  }
  
  .recaptcha-wrapper {
    margin: 10px 0;
    width: 100%;
  }
}
