:root {
  --custom_color: #0130c6;
  --custom_color_hover: #002491;
}

html,
body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

main {
  min-height: 100vh;
  position: relative;
}

#preloader {
  position: fixed;
  background: #fff;
  z-index: 99999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

#preloader:before {
  content: '';
  position: fixed;
  top: calc(50% - 50px);
  left: calc(50% - 50px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid var(--custom_color);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  -webkit-animation: loader-animation 1s linear infinite;
  animation: loader-animation 1s linear infinite;
}

footer .dev-logo {
  height: 15px;
}


.hidden-captcha .form-group {
  display: flex;
  align-items: center;
}

.hidden-captcha .captcha {
  user-select: none;
  cursor: default;
  padding: 5px 15px;
  border: 1px solid #dddddd;
  border-radius: 0;
  font-size: 1.2rem;
  font-weight: 700;
  background: url("/arquivos/imagens/captcha.jpg") no-repeat center !important;
  text-transform: none !important;
  height: 50px;
  margin: 0;
  white-space: nowrap;
}

/* Garante que o container permita posicionamento absoluto */
.hero-commodity {
  position: relative;
}

/* Se necessário, ajuste o z-index do overlay */
.hero-commodity .overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Logo fixa no topo */
.hero-commodity .hero-logo {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 2;
}

.hero-commodity .hero-logo img {
  max-width: 250px;
  height: auto;
  display: block;
  margin-left: 25px;
}

.hidden-captcha input.captcha_result {
  padding: 5px;
  border: 1px solid #dddddd;
  border-radius: 0;
  width: 100%;
  height: 50px;
}

@keyframes loader-animation {
  to {
    transform: rotate(360deg);
  }
}


/*SLIDE*/


/* ========= VARIÁVEIS GLOBAIS ========= */
:root {
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --dark-blue: #0a2540;
  --orange: #b19c75;
  --white: #ffffff;
  --overlay-top: rgba(10, 37, 64, 0.7);
  --overlay-bottom: rgba(10, 37, 64, 0.2);
}

/* ========= RESET BÁSICO ========= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: var(--font-body);
  color: var(--dark-blue);
  line-height: 1.6;
}

body {
  min-height: 100vh;
}

a {
  text-decoration: none;
}

/* ========= HERO BACKGROUND ========= */
.hero-commodity {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: var(--hero-bg-url);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-commodity .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(162, 162, 162, 0.7) 0%, rgba(0, 0, 0, 0.46) 60%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}
/* ========= HERO CONTENT ========= */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin-left: 6%;
  color: var(--white);
  margin-top: 15%;
}

#how-it-works p {
  text-align: center !important;
}

.about-text.fade-in-right {
  text-align: justify;
}

.about-grid {
  text-align: justify;
}

/* Título */
.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--white);
}

.hero-content h1 span {
  color: #fff;
}

/* Parágrafo de apoio */
.hero-content .intro {
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* ========= BOTÕES ========= */
.btn-group .btn {
  display: inline-block;
  padding: 12px 24px;
  margin-right: 1rem;
  border-radius: 0.3rem;
  font-family: var(--font-body);
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, transform 0.2s;
}

/* Primário */
.btn.primary {
  background: var(--orange);
  color: #fff;
}

.btn.primary:hover {
  background: #e08e13;
  transform: translateY(-2px);
}

/* Secundário */
.btn.secondary {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

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

/* ========= SCROLL INDICATOR ========= */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 2px solid var(--white);
  border-radius: 12px;
  z-index: 2;
  box-sizing: content-box;
}

.scroll-indicator span {
  display: block;
  width: 4px;
  height: 8px;
  margin: 4px auto;
  background: var(--white);
  border-radius: 2px;
  animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0% {
    transform: translateY(4px);
    opacity: 0;
  }

  50% {
    transform: translateY(12px);
    opacity: 1;
  }

  100% {
    transform: translateY(20px);
    opacity: 0;
  }
}

:root {
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --dark-blue: #0a2540;
  --orange: #b19c75;
  --white: #ffffff;
}

/* ====== Waves ====== */
.about-company.waves {
  position: relative;
  background: #7165504a;
  overflow: hidden;
}

p {
  text-align: justify;
}

.wave {
  position: absolute;
  width: 100%;
  left: 0;
  z-index: 0;
}
.wave-top { top: -1px; }
.wave-bottom {
  bottom: -1px;
  transform: rotate(180deg);
}

/* ====== Container ====== */
.about-company .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
    margin-top: 0px;
  padding: 4rem 2rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 50px;
}

/* ====== Parallax Ilustração ====== */
.about-illustration {
  overflow: hidden;
  border-radius: 8px;
}
.about-illustration img {
  width: 100%;
  display: block;
  will-change: transform;
  transition: transform 0.5s ease;
}
.about-illustration img:hover {
  transform: scale(1.05);
}

/* ====== Texto ====== */
.about-text h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.about-text p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* ====== Ícones ====== */
.icon {
  width: 1.5rem;
  height: 1.5rem;
  stroke: var(--orange);
  fill: none;
}

/* ====== Blocos de Destaque ====== */
.about-grid {
  grid-column: span 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.about-item {
  background: #f9f9f9;
  border-left: 4px solid var(--orange);
  padding: 1.8rem;
  border-radius: 0.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.about-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.about-item h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}
.about-item ul {
  list-style: none;
  padding-left: 0;
}
.about-item li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
}
.about-item li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  color: var(--orange);
  font-weight: bold;
}

/* ====== Estatísticas ====== */
.stats {
  grid-column: span 2;
  display: flex;
  justify-content: space-around;
  margin-top: 2.5rem;
  gap: 2rem;
}
.stat {
  text-align: center;
}
.counter {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--orange);
}
.stat p {
  margin-top: 0.5rem;
  font-size: 1rem;
}

/* ====== Parceiros (Scroll-Snap) ====== */
.partners-section {
  grid-column: span 2;
  margin-top: 3rem;
}
.partners-section h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 1rem;
}
.partners-list {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1rem;
  padding-bottom: 0.5rem;
}
.partners-list img {
  flex: 0 0 auto;
  width: 120px;
  scroll-snap-align: center;
  filter: grayscale(1);
  transition: filter 0.3s, transform 0.3s;
}
.partners-list img:hover {
  filter: grayscale(0);
  transform: scale(1.1);
}
/* Esconder scrollbar (WebKit) */
.partners-list::-webkit-scrollbar {
  height: 6px;
}
.partners-list::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 3px;
}

/* ====== Reveal Animations ====== */
.fade-in-left,
.fade-in-right,
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
}
.fade-in-left { transform: translateX(-30px); }
.fade-in-right { transform: translateX(30px); }
.fade-in-up { transform: translateY(30px); }
.about-company.visible .fade-in-left,
.about-company.visible .fade-in-right,
.about-company.visible .fade-in-up {
  opacity: 1;
  transform: translate(0,0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Reset básico */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--dark-blue);
  line-height: 1.6;
}

/* Container padrão */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Seção Commodities */
.commodities-section {
  padding: 3rem 0;
  background: linear-gradient(#fff 0%, #b19c754a 100%);
}

/* Título da seção alinhado à esquerda */
.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--dark-blue);
  text-align: left;
  margin-bottom: 2.5rem;
}

/* Layout: lista + painel de detalhes */
.commodities-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
}

/* Grid de cards */
.commodities-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

/* Card-botão */
.commodity-card {
  position: relative;
  padding: 1rem;
  border-radius: 0.5rem;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  text-align: center;
  color: var(--white);
  font-size: 1.125rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
  border: 2px solid transparent;
  transition: transform 0.3s ease,
    filter 0.3s ease,
    box-shadow 0.3s ease;
}

/* Destaque suave: grayscale + dim nos não-ativos */
.commodity-card:not(.active) {
  filter: grayscale(50%) brightness(0.85);
}

/* Hover e sombra no ativo */
.commodity-card.active:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Painel de detalhes */
.commodity-details {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  background: #000;
  /* fallback */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.details-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.6);
  transition: background-image 0.5s ease;
}

.details-content {
  position: relative;
  padding: 2rem;
  color: var(--white);
  transform: translateX(20px);
  transition: opacity 0.4s ease,
    transform 0.4s ease;
}

.details-content.slide-in {
  opacity: 1;
  transform: translateX(0);
}

.details-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.details-description {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
}

/*como funciona*/

/* ===== Seção Como Funciona ===== */
.how-it-works-section {
  padding: 3rem 0;
  background: #b19c754a;
}

/* Reaproveita .section-title para tipografia e espaçamento */
.how-it-works-section .section-title {
  margin-bottom: 3rem;
  text-align: left;
}

/* Grid responsivo de passos */
.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

/* Cartão de cada passo */
.step-card {
  background: var(--white);
  border-radius: 0.5rem;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

/* Slide-in ao aparecer */
.step-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hover levíssimo */
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Número do passo */
.step-number {
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* Título do passo */
.step-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
}

/* Descrição do passo */
.step-description {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}


/*depoimentos*/


/* ===== Testemunhos ===== */
.testimonials-section {
  padding: 3rem 0;
  background: linear-gradient(to top, #fff 0%, #b19c754a 100%);
}

.testimonials-section .section-title {
  margin-bottom: 3rem;
  text-align: left;
}

/* Slider container */
.testimonials-slider {
  position: relative;
  overflow: hidden;
}

/* Slides em fila */
.slides {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

/* Cada slide: ocupa 100% da largura */
.slide {
  min-width: 100%;
  padding: 2rem;
  box-sizing: border-box;
  text-align: center;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

/* Foto do cliente */
.client-photo {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Depoimento */
.client-quote {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin: 1rem 0;
  position: relative;
}

.client-quote::before {
  content: '“';
  font-size: 3rem;
  position: absolute;
  top: -20px;
  left: -10px;
  color: var(--orange);
}

/* Nome e cargo */
.client-name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--dark-blue);
  margin-top: 1rem;
}

.client-position {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: #777;
}

/* Setas de navegação */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--orange);
  color: var(--white);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  z-index: 2;
  transition: background 0.2s;
}

.slider-nav:hover,
.slider-nav:focus {
  background: #e08e13;
}

.slider-nav.prev {
  left: 1rem;
  margin-top: 5rem;
}

.slider-nav.next {
  right: 1rem;
  margin-top: 5rem;
}

/* Bullets */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active,
.dot:hover {
  background: var(--dark-blue);
}


/*faq*/


/* ===== Seção FAQ ===== */
.faq-section {
  padding: 3rem 0;
  background: var(--white);
}

.faq-section .section-title {
  margin-bottom: 3rem;
  text-align: left;
}

/* Lista de perguntas */
.faq-list {
  display: grid;
  gap: 1.5rem;
}

/* Cada item do acordeão */
.faq-item {
  border-bottom: 1px solid #ddd;
}

/* Botão da pergunta */
.faq-question {
  width: 100%;
  padding: 1rem 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--dark-blue);
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
}

.faq-question::after {
  content: '›';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.3s;
  color: var(--orange);
}

.faq-question[aria-expanded="true"] {
  color: var(--orange);
}

.faq-question[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(0deg);
}

/* Resposta oculta inicialmente */
.faq-answer {
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  max-height: 0;
  opacity: 0;
}

/* Quando aberto */
.faq-item.open .faq-answer {
  max-height: 500px;
  /* suficiente para conteúdo */
  opacity: 1;
}

/* Parágrafo da resposta */
.faq-answer p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #555;
  margin: 0.5rem 0 1rem;
  line-height: 1.6;
}


/*contato*/


/* Seção Contato + Mapa */
.contact-section {
  padding: 3rem 0;
  background: linear-gradient(#fff 0%, #b19c754a 100%);
}

.contact-section .section-title {
  margin-bottom: 3rem;
  text-align: left;
}

/* Layout: form à esquerda, mapa à direita */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* Formulário */
.contact-form {
  background: #ffffff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  color: var(--dark-blue);
  font-size: 1rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
}

.error-message {
  color: #d9534f;
  font-size: 0.875rem;
  min-height: 1em;
  margin-top: 0.25rem;
}

/* Botão de envio */
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #e08e13;
}

/* Feedback (sucesso/erro geral) */
.form-feedback {
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dark-blue);
}

/* Mapa */
.contact-map {
  background: #ffffff;
  border-radius: 0.5rem;
  overflow: hidden;
  max-height: 650px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
  width: 100%;
  height: 755px;
  border: 0;
}

.contactimg {
  margin-top: 50px;
  padding: 70px;
}

/* Seção de Mapa Full-Width */
.map-full-section {
  width: 100%;
  height: 300px;
  margin: 0;
  /* sem espaçamentos extras */
  padding: 0;
  overflow: hidden;
  /* caso algum elemento vaze */
}

.map-full-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  /* remove gaps abaixo do iframe */
}


/*cta*/


/* ===== Seção CTA Final ===== */
.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, #dba056 100%);
  padding: 4rem 0;
  color: var(--white);
}

.cta-section .container {
  display: flex;
  justify-content: center;
  text-align: center;
}

.cta-content {
  max-width: 700px;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.cta-text {
  font-family: var(--font-body);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.cta-section .btn-primary {
  background: var(--white);
  color: var(--orange);
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
  transition: background 0.3s, color 0.3s;
}

.cta-section .btn-primary:hover {
  background: #f1f1f1;
  color: var(--orange);
}


/*foot*/


/* ===== Rodapé ===== */
.footer-section {
  background: var(--dark-blue);
  color: var(--white);
  padding: 4rem 0 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-logo {
  width: 250px;
  margin-top: -15px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li+li {
  margin-top: 0.5rem;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-col a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--orange);
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-icons img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: filter 0.3s;
}

.social-icons a:hover img {
  filter: brightness(0) invert(0.8) sepia(1) saturate(5) hue-rotate(10deg);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
  font-size: 0.85rem;
}

@media (max-width: 768px) {

  .hero-commodity .hero-logo {
    top: 1rem;
    left: 1rem;
  }

  .hero-commodity .hero-logo img {
    max-width: 210px;
    margin-left: -25px;
  }

  .hero-commodity {
    height: 90vh !important;
  }

  .about-company .container {
    gap: 0rem !important;
  }

  .hero-content {
    max-width: 80%;
    margin-left: 5%;
  }

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

  .hero-content .intro {
    font-size: 0.9rem;
  }

  .btn-group .btn {
    padding: 10px 20px;
    margin-bottom: 1rem;
  }

  .commodities-container .commodity-details {
    order: -1;
  }

  /* Waves Section */
  .about-company.waves {
    position: relative;
    background: #b19c754a;
    overflow: hidden;
    padding-top: 0;
  }

  .wave {
    position: absolute;
    width: 100%;
    left: 0;
  }

  .wave-top {
    top: -8px;
    z-index: 99;
  }

  .wave-bottom {
    bottom: -1px;
    transform: rotate(180deg);
  }

  /* Container Grid */
  .about-company .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  /* Text Block */
  .about-text {
    z-index: 1;
  }

  .about-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .about-text p {
    font-family: var(--font-body);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  /* Icons */
  .icon {
    width: 1.5rem;
    height: 1.5rem;
    stroke: var(--orange);
    flex-shrink: 0;
    fill: none;
  }

  /* Grid Cards */
  .about-grid {
    grid-column: span 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }

  .about-item {
    background: #f9f9f9;
    border-left: 4px solid var(--orange);
    padding: 1.8rem;
    border-radius: 0.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .about-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }

  .about-item h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }

  .about-item ul {
    list-style: none;
    padding-left: 0;
  }

  .about-item li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
  }

  .about-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--orange);
    font-weight: bold;
  }

  /* Stats */
  .stats {
    grid-column: span 2;
    display: flex;
    justify-content: space-around;
    margin-top: 1.5rem;
    gap: 2rem;
  }

  .stat {
    text-align: center;
  }

  .counter {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--orange);
  }

  .stat p {
    margin-top: 0.5rem;
    font-size: 1rem;
  }

  .about-illustration img {
    border-radius: 10px;
  }

  .fade-in-left {
    transform: translateX(-30px);
  }

  .fade-in-right {
    transform: translateX(30px);
  }

  .fade-in-up {
    transform: translateY(30px);
  }

  .about-company.visible .fade-in-left,
  .about-company.visible .fade-in-right,
  .about-company.visible .fade-in-up {
    opacity: 1;
    transform: translate(0, 0);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .about-company .container {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .about-grid {
    grid-template-columns: 1fr;
    margin-top: 3rem;
  }

  .stats {
    flex-direction: column;
    gap: 1.5rem;
  }

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

  .commodities-container {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }

  .how-it-works-section .section-title {
    text-align: center;
  }

  .testimonials-section .section-title {
    text-align: center;
  }

  .faq-section .section-title {
    text-align: center;
  }

  .contact-section .section-title {
    text-align: center;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }
}