/* variaveis */

:root {
  --bg-color-main: #f8f9fa;
  --bg-color-header: #faf3ee;
  --bg-color-card: #fdf8f1;
  --text-color-main: #303030;
  --text-color-light: #ffffff;
  --text-color-dark: #333;
  --color-green: #00BF63;
  --color-line: #00D0FA;
}

/* Animações*/

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

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(0, 191, 99, 0.4); }
  50% { box-shadow: 0 4px 20px rgba(0, 208, 250, 0.6); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.animate-on-scroll { opacity: 0; }

.animate-in,
.eudr-card.animate-in,
.sobre-area-card.animate-in,
.solucao-card-compact.animate-in,
.value-item.animate-in,
.investimento-item.animate-in,
.report-item.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

h2.animate-in { animation-duration: 0.8s; }

/* Delays das Listas/Cards */
.eudr-card.animate-in:nth-child(1), .sobre-area-card.animate-in:nth-child(1), .solucao-card-compact.animate-in:nth-child(1) { animation-delay: 0.1s; }
.eudr-card.animate-in:nth-child(2), .sobre-area-card.animate-in:nth-child(2), .solucao-card-compact.animate-in:nth-child(2) { animation-delay: 0.2s; }
.eudr-card.animate-in:nth-child(3), .sobre-area-card.animate-in:nth-child(3), .solucao-card-compact.animate-in:nth-child(3) { animation-delay: 0.3s; }
.eudr-card.animate-in:nth-child(4), .sobre-area-card.animate-in:nth-child(4), .solucao-card-compact.animate-in:nth-child(4) { animation-delay: 0.4s; }

/* Config geral de estilo */

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

html {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-color-main);
  scroll-behavior: smooth;
  font-size: 62.5%;
  transition: color 0.3s ease;
}

body {
  background-color: var(--bg-color-main);
  transition: background-color 0.3s ease;
  padding-top: 64px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 3.2rem;
}

header {
  background-color: var(--bg-color-header);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 4.8rem;
  transition: background-color 0.3s ease;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

section {
  padding: 80px 0;
  min-height: 100vh;
}


h1 {
  font-size: 52px;
  margin-bottom: 32px;
  line-height: 1.05;
  color: var(--text-color-main);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 44px;
  margin-bottom: 32px;
  position: relative;
  display: inline-block;
  color: var(--text-color-main);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background-color: var(--color-green);
  margin: 0 auto;
  margin-top: 6px;
  border-radius: 2px;
}

h3 {
  margin-bottom: 24px;
  font-size: 24px;
  color: var(--text-color-main);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 48px;
  color: var(--text-color-main);
}

/* nav */
.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
  width: 100%;
}

.main-nav::-webkit-scrollbar {
  display: none;
}

.main-nav {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 3.2rem;
  margin: 0;
  padding: 0;
}

a:link,
a:visited {
  text-decoration: none;
  color: var(--text-color-main);
}

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  color: var(--text-color-dark);
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  position: relative;
}

.main-nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--color-green);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: var(--color-green);
}

.main-nav-link:hover::after {
  width: 60%;
}

/* botão home */
.home::before {
  display: none;
}

.home:hover::before {
  display: none;
}

.home:hover,
.home:active {
  background-color: transparent;
  transform: none;
  box-shadow: none;
}

.home::after {
  display: none;
}

/* botão Newsletter */
.btn-newsletter-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--color-line) 0%, var(--color-green) 100%);
  color: white;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 191, 99, 0.4);
  position: relative;
  overflow: hidden;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(0, 191, 99, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(0, 208, 250, 0.6);
  }
}

.btn-newsletter-nav::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.btn-newsletter-nav:hover::before {
  width: 250px;
  height: 250px;
}

.btn-newsletter-nav:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 25px rgba(0, 208, 250, 0.5);
  animation: none;
}

.btn-newsletter-nav:active {
  transform: translateY(-1px) scale(1.02);
}

.newsletter-icon {
  font-size: 18px;
  display: inline-block;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.btn-newsletter-nav:hover .newsletter-icon {
  animation: none;
  transform: scale(1.2);
}

/* Section Hero */

.section-hero {
  background-color: var(--bg-color-header);
  transition: background-color 0.3s ease;
  padding-top: 0rem;
  padding-bottom: 8rem;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}

.hero-left {
  width: 60rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  align-self: center;
}

.hero-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.hero-left .header-h2 {
  font-size: 2.7rem;
  color: black;
  border-top: 2px solid var(--color-green);
  padding: 16px 32px;
  text-align: center;
  margin: 0;
  max-width: 600px;
}

.hero-right {
  padding-top: 1rem;
  font-family: Montserrat,sans-serif;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-self: center;
}

.hero-title {
  font-size: 4.4rem;
  line-height: 1.2;
  color: var(--text-color-dark);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
}

.hero-description {
  font-size: 2rem;
  line-height: 1.7;
  color: var(--text-color-dark);
  margin: 0;
  font-weight: 500;
  padding: 2rem 2.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--color-green);
}

.hero-description strong {
  color: var(--color-green);
  font-size: 2.1rem;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 191, 99, 0.1);
}

.hero-buttons {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.btn,
.btn:link,
.btn:visited {
  font-size: 20px;
  font-weight: 600;
  background-color: var(--color-green);
  color: var(--text-color-light);
  text-decoration: none;
  display: inline-block;
  padding: 16px 32px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 191, 99, 0.3);
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 191, 99, 0.4);
}

.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 191, 99, 0.3);
}

.btn--margin-right {
  margin-right: 1.6rem !important;
}

.btn--white:link,
.btn--white:visited {
  background-color: var(--text-color-light);
  color: #555;
  border: 2px solid var(--color-green);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn--white::before {
  background: rgba(0, 191, 99, 0.1);
}

.btn--white:hover,
.btn--white:active {
  background-color: var(--text-color-light);
  color: var(--color-green);
  border-color: var(--color-green);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 191, 99, 0.2);
}

.btn--form:hover {
  background-color: var(--text-color-light);
  color: #555;
}

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

.footer-list {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  list-style-type: none;
  gap: 32px;
  padding: 48px 0;
  border-top: 1px solid var(--text-color-main);
  border-bottom: 1px solid var(--text-color-main);
  text-transform: uppercase;
}

.social-links {
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 48px 0;
}

.social-links li {
  cursor: pointer;
}

.social-contacts {
  padding: 0;
}

.copyright {
  font-size: 14px;
  color: #767676;
}

/* Responsividade para laptops */
@media (max-width: 1200px) {
  html {
    font-size: 56.25%;
  }

  .container {
    padding: 0 3.2rem;
  }

  .main-nav {
    justify-content: space-between;
  }
  
  .hero-content {
    gap: 4rem;
  }
  
  .hero-left {
    width: 100%;
  }
  
  .hero-img {
    width: 100%;
    max-width: 500px;
  }
}

/* Responsivo para telas medias */
@media (max-width: 992px) {
  html {
    font-size: 50%;
  }

  .btn--margin-right {
    margin-bottom: 16px;
  }

  header {
    padding: 0 2rem;
  }

  .main-nav {
    display: flex !important;
    flex-direction: row;
    height: auto;
    gap: 1rem;
    padding: 1rem 0;
  }
  
  .main-nav-list {
    display: flex !important;
    flex-direction: row;
    gap: 1.5rem;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  
  .main-nav-link:link,
  .main-nav-link:visited {
    font-size: 14px;
    padding: 0.6rem 1rem;
    white-space: nowrap;
  }
  
  .btn-newsletter-nav {
    font-size: 13px;
    padding: 0.7rem 1.2rem;
    white-space: nowrap;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 36px;
  }

  .grid-3-cols {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 4rem;
  }

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

  .hero-description {
    font-size: 1.8rem;
    padding: 1.8rem 2rem;
  }

  .hero-left {
    align-items: center;
  }
  
  .hero-left .header-h2 {
    font-size: 2rem;
  }

  .hero-buttons {
    justify-content: center;
  }
  
  .contatos-info-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* Responsivo para telas pequenas*/
@media (max-width: 768px) {
  html {
    font-size: 55%;
  }

  body {
    padding-top: 70px;
  }

  header {
    position: fixed;
    padding: 0 1rem;
  }

  .main-nav {
    display: flex !important;
    flex-direction: row;
    gap: 0.8rem;
    padding: 1rem 0;
    height: auto;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .main-nav-list {
    display: flex !important;
    flex-direction: row;
    gap: 0.8rem;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .main-nav-link:link,
  .main-nav-link:visited {
    font-size: 13px;
    padding: 0.5rem 0.8rem;
    white-space: nowrap;
  }
  
  .btn-newsletter-nav {
    font-size: 12px;
    padding: 0.6rem 1rem;
    white-space: nowrap;
  }
  
  .newsletter-icon {
    font-size: 12px;
  }

  .grid-3-cols {
    grid-template-columns: 1fr;
  }

  .btn--margin-right {
    margin-bottom: 24px;
  }
  
  .container {
    padding: 0 2rem;
  }
  
  section {
    padding: 60px 0;
    min-height: auto;
  }
  
  h2 {
    font-size: 32px;
  }

  .section-hero {
    padding: 6rem 0;
    min-height: auto;
  }

  .hero-content {
    gap: 3rem;
  }

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

    .hero-description {
    font-size: 1.7rem;
    padding: 1.5rem 1.8rem;
  }

  .hero-description stro

  .hero-img {
    max-width: 350px;
  }

  .hero-left .header-h2 {
    font-size: 1.8rem;
    padding: 12px 24px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }
  
  .hero-left .header-h2 {
    font-size: 2rem;
  }
  
  .contatos-info-list {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form-minimal {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 52%;
  }
  
  .container {
    padding: 0 1.6rem;
  }
  
  header {
    padding: 0 1rem;
    overflow-x: auto;
    overflow-y: hidden;
  }
  
  .main-nav {
    display: flex !important;
    flex-direction: row;
    gap: 0.5rem;
    flex-wrap: nowrap;
    min-width: max-content;
  }
  
  .main-nav-list {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: nowrap;
  }
  
  .main-nav-link:link,
  .main-nav-link:visited {
    font-size: 12px;
    padding: 0.5rem 0.7rem;
    white-space: nowrap;
  }
  
  .btn-newsletter-nav {
    font-size: 11px;
    padding: 0.5rem 0.8rem;
    white-space: nowrap;
    flex-shrink: 0;
  }
  
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  p {
    font-size: 18px;
  }
  
  .hero-left .header-h2 {
    font-size: 1.8rem;
    padding: 10px 20px;
  }
  
  .hero-description {
    font-size: 1.6rem;
    padding: 1.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .footer-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .eudr-card,
  .sobre-specialists-card,
  .sobre-posicionamento-card,
  .solucao-card-compact {
    padding: 2rem 1.5rem;
  }
  
  .contatos-header h2 {
    font-size: 3.2rem;
  }
  
  .newsletter-card {
    padding: 2.5rem 1.5rem;
  }
  
  .newsletter-card h3 {
    font-size: 2.2rem;
  }
}

/* seção EUDR & LkSG */
.eudr-intro {
  text-align: center;
  font-size: 2.2rem;
  max-width: 900px;
  margin: 0 auto 6rem auto;
  color: var(--text-color-main);
}

.eudr-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  margin-bottom: 6rem;
}

.eudr-card {
  background-color: var(--bg-color-card);
  padding: 3rem 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid var(--color-line);
}

.eudr-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.eudr-icon {
  font-size: 6rem;
  margin-bottom: 2rem;
  text-align: center;
}

.eudr-card h3 {
  font-size: 3.2rem;
  color: var(--color-line);
  margin-bottom: 1rem;
  text-align: center;
}

.eudr-subtitle {
  font-size: 1.6rem;
  font-style: italic;
  color: #666;
  margin-bottom: 2rem;
  font-weight: 500;
  text-align: center !important;
}

.eudr-card p {
  font-size: 1.8rem;
  line-height: 1.7;
  margin-bottom: 0;
  text-align: left;
}

.eudr-diferencial {
  background: linear-gradient(135deg, var(--color-green) 0%, #00a055 100%);
  padding: 4rem 3rem;
  border-radius: 16px;
  color: white;
  text-align: center;
}

.eudr-diferencial h3 {
  font-size: 3.6rem;
  color: white;
  margin-bottom: 2.4rem;
}

.eudr-diferencial p {
  font-size: 2rem;
  line-height: 1.8;
  color: white;
  margin-bottom: 2rem;
}

.eudr-diferencial p:last-child {
  margin-bottom: 0;
}

.eudr-destaque {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 2rem 3rem;
  border-radius: 12px;
  font-weight: 500;
  margin-top: 3rem;
}

.sobre-intro {
  text-align: center;
  font-size: 2.4rem;
  max-width: 800px;
  margin: 0 auto 5rem auto;
  color: var(--text-color-main);
  line-height: 1.6;
}

.sobre-intro-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-bottom: 6rem;
  padding: 4rem 0;
}

.sobre-intro-text {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  background-color: #f8f9fa;
  padding: 3rem 3rem;
  border-radius: 16px;
  border-left: 5px solid var(--color-green);
}

.sobre-intro-text p {
  font-size: 2.1rem;
  line-height: 1.8;
  color: var(--text-color-main);
  margin: 0;
}

.sobre-areas-interactive {
  font-size: 2.8rem;
  line-height: 2.2;
  font-weight: 500;
}

.area-word {
  color: var(--color-green);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  display: inline-block;
  font-weight: 600;
  font-size: 2.8rem;
}

.area-word:hover {
  color: var(--color-line);
  background-color: rgba(0, 208, 250, 0.15);
  transform: translateY(-2px);
}

.sobre-intro-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.sobre-areas-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 6rem;
}

.sobre-areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.sobre-area-card {
  background-color: var(--bg-color-card);
  padding: 1rem 1rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border: 2px solid transparent;
}

.sobre-area-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--color-line);
}

.area-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.sobre-area-card h4 {
  font-size: 1.6rem;
  color: var(--text-color-dark);
  margin: 0;
  font-weight: 600;
}

.sobre-areas-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  min-height: 350px;
}

.areas-img {
  width: 460px;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 1;
}

.areas-img:hover {
  transform: scale(1.05);
}

.sobre-missao {
  background: linear-gradient(135deg, var(--color-green) 0%, #00a055 100%);
  padding: 3rem 4rem;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 6rem;
  color: white;
}

.sobre-missao h3 {
  font-size: 3.2rem;
  color: white;
  margin-bottom: 2rem;
}

.sobre-missao p {
  font-size: 2.2rem;
  line-height: 1.7;
  color: white;
  margin: 0;
}

.sobre-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.sobre-specialists-card,
.sobre-posicionamento-card {
  background-color: var(--bg-color-card);
  padding: 3rem 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.sobre-specialists-card h3,
.sobre-posicionamento-card h3 {
  font-size: 2.8rem;
  color: var(--color-green);
  margin-bottom: 1rem;
}

.sobre-subtitle-text {
  font-size: 1.8rem;
  font-style: italic;
  color: #666;
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.sobre-specialists-card p {
  font-size: 1.8rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.sobre-operacao {
  background-color: rgba(0, 191, 99, 0.1);
  padding: 1.5rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  color: var(--color-green);
  border-left: 4px solid var(--color-green);
}

.posicionamento-list-styled {
  list-style: none;
  padding: 0;
  margin: 0;
}

.posicionamento-list-styled li {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.check-icon {
  color: var(--color-green);
  font-weight: bold;
  font-size: 2rem;
  flex-shrink: 0;
}

/* Responsivo para telas medias */
@media (max-width: 992px) {
  .sobre-intro-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .sobre-intro-text {
    padding: 3rem 3.5rem;
  }
  
  .sobre-intro-text p {
    font-size: 2.2rem;
  }
  
  .sobre-areas-interactive {
    font-size: 2.6rem;
  }
  
  .area-word {
    font-size: 2.6rem;
  }
  
  .sobre-areas-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .sobre-areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .sobre-dual-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .sobre-intro {
    font-size: 2rem;
  }
  
  .sobre-missao {
    padding: 3rem 3rem;
  }
  
  .sobre-missao h3 {
    font-size: 2.8rem;
  }
  
  .sobre-missao p {
    font-size: 2rem;
  }

    .sobre-contexto,
  .eudr-contexto-text {
    padding: 3rem 3.5rem;
  }
  
  .sobre-contexto h3 {
    font-size: 2.4rem;
  }
  
  .sobre-contexto p,
  .eudr-contexto-text p {
    font-size: 1.8rem;
  }
}

/* Responsivo para telas pequenas */
@media (max-width: 768px) {
  .sobre-intro-text {
    padding: 2.5rem 2rem;
  }
  
  .sobre-intro-text p {
    font-size: 2rem;
  }
  
  .sobre-areas-interactive {
    font-size: 2.4rem;
    line-height: 2;
  }
  
  .area-word {
    font-size: 2.4rem;
  }
  
  .areas-img {
    width: 320px;
    height: 320px;
  }
  
  .sobre-intro-image {
    min-height: 320px;
  }
  
  .sobre-areas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .sobre-area-card {
    padding: 2rem 1.5rem;
  }
  
  .area-icon {
    font-size: 3rem;
  }
  
  .sobre-area-card h4 {
    font-size: 1.4rem;
  }
  
  .sobre-specialists-card,
  .sobre-posicionamento-card {
    padding: 3rem 2.5rem;
  }

  .sobre-contexto,
  .eudr-contexto-text {
    padding: 2.5rem 2rem;
  }
  
  .sobre-contexto h3 {
    font-size: 2.2rem;
  }
  
  .sobre-contexto p,
  .eudr-contexto-text p {
    font-size: 1.7rem;
  }
  
  .posicionamento-extra p {
    font-size: 1.6rem;
  }
}

@media (max-width: 576px) {
  .sobre-intro-text p {
    font-size: 1.8rem;
  }
  
  .sobre-areas-interactive {
    font-size: 2.2rem;
  }
  
  .area-word {
    font-size: 2.2rem;
  }
  
  .sobre-areas-grid {
    grid-template-columns: 1fr;
  }
}

.sobre-contexto {
  background-color: #f8f9fa;
  padding: 3rem 4rem;
  border-radius: 16px;
  margin-bottom: 6rem;
  border-left: 5px solid var(--color-green);
}

.sobre-contexto h3 {
  font-size: 2.8rem;
  color: var(--color-green);
  margin-bottom: 2.5rem;
}

.sobre-contexto p {
  font-size: 1.9rem;
  line-height: 1.8;
  color: var(--text-color-main);
  margin-bottom: 2rem;
}

.sobre-contexto p:last-child {
  margin-bottom: 0;
}

.posicionamento-extra {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 2px solid rgba(0, 191, 99, 0.2);
}

.posicionamento-extra p {
  font-size: 1.7rem;
  line-height: 1.7;
  color: var(--text-color-main);
  margin: 0;
}

.eudr-contexto-text {
  background-color: #f8f9fa;
  padding: 3rem 4rem;
  border-radius: 16px;
  margin-bottom: 5rem;
  border-left: 5px solid var(--color-line);
}

.eudr-contexto-text p {
  font-size: 2.1rem;
  line-height: 1.8;
  color: var(--text-color-main);
  margin-bottom: 2.5rem;
}

.eudr-contexto-text p:last-child {
  margin-bottom: 0;
}
/* Compliance Program Card */
.compliance-program-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  margin-top: 6rem;
  border: 3px solid var(--color-line);
}

.program-header {
  background: linear-gradient(135deg, var(--color-line) 0%, var(--color-green) 100%);
  padding: 3rem 3rem 2.5rem 3rem;
  text-align: center;
  color: white;
  position: relative;
}

.program-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.25);
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.program-header h3 {
  font-size: 3.2rem;
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.program-subtitle {
  font-size: 1.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  font-weight: 400;
}

.program-content {
  padding: 3rem 3rem 2.5rem 3rem;
}

.program-section {
  margin-bottom: 3.5rem;
}

.program-section h4 {
  font-size: 2.4rem;
  color: var(--text-color-dark);
  margin-bottom: 2rem;
  font-weight: 600;
}

.program-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.program-list li {
  font-size: 1.9rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  color: var(--text-color-main);
}

.check-icon-program {
  color: var(--color-green);
  font-weight: bold;
  font-size: 2.2rem;
  flex-shrink: 0;
}

.program-reports {
  background-color: #f8f9fa;
  padding: 2.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--color-line);
}

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

.report-item {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.report-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.report-number {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-line);
  font-family: "Poppins", sans-serif;
  flex-shrink: 0;
}

.report-item p {
  font-size: 1.6rem;
  line-height: 1.5;
  margin: 0;
  color: var(--text-color-dark);
  font-weight: 500;
}

.program-cta {
  background: linear-gradient(135deg, rgba(0, 208, 250, 0.1), rgba(0, 191, 99, 0.1));
  padding: 2.5rem 3rem;
  border-radius: 12px;
  border-left: 4px solid var(--color-green);
  margin-top: 3rem;
}

.program-cta p {
  font-size: 1.8rem;
  line-height: 1.7;
  margin: 0;
  color: var(--text-color-dark);
}

.program-button-container {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid #e5e7eb;
}

.btn-program {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-line) 0%, var(--color-green) 100%);
  color: white;
  padding: 1.8rem 4rem;
  border-radius: 50px;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 191, 99, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-program:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 191, 99, 0.4);
  background: linear-gradient(135deg, var(--color-green) 0%, var(--color-line) 100%);
}

.btn-program:active {
  transform: translateY(-1px);
}

/* Responsivo para telas medias */
@media (max-width: 992px) {
  .reports-grid {
    grid-template-columns: 1fr;
  }
  
  .program-header {
    padding: 3rem 3rem 2.5rem 3rem;
  }
  
  .program-header h3 {
    font-size: 2.8rem;
  }
  
  .program-content {
    padding: 3rem 3rem 2.5rem 3rem;
  }
}

/* Responsivo para telas pequenas */
@media (max-width: 768px) {
  .compliance-program-card {
    margin-top: 4rem;
  }
  
  .program-header {
    padding: 2.5rem 2rem 2rem 2rem;
  }
  
  .program-header h3 {
    font-size: 2.4rem;
  }
  
  .program-subtitle {
    font-size: 1.7rem;
  }
  
  .program-content {
    padding: 2.5rem 2rem 2rem 2rem;
  }
  
  .program-section h4 {
    font-size: 2rem;
  }
  
  .program-list li {
    font-size: 1.7rem;
  }
  
  .report-item {
    padding: 1.5rem;
  }
  
  .report-number {
    font-size: 2rem;
  }
  
  .report-item p {
    font-size: 1.5rem;
  }
}

/* seção Filosofia */
.filosofia-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 4rem 0;
  margin-bottom: 4rem;
}

.filosofia-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.filosofia-text h3 {
  font-size: 3.2rem;
  line-height: 1.4;
  color: var(--color-green);
  margin-bottom: 1rem;
  font-weight: 700;
}

.filosofia-text p {
  font-size: 2rem;
  line-height: 1.8;
  color: var(--text-color-main);
  margin: 0;
}

.filosofia-highlight {
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--color-line);
  padding: 2.5rem 3rem;
  background: linear-gradient(135deg, rgba(0, 208, 250, 0.1), rgba(0, 191, 99, 0.1));
  border-left: 4px solid var(--color-line);
  border-radius: 8px;
  text-align: center;
  margin: 0 auto 4rem auto;
  max-width: 900px;
}

.filosofia-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 1rem;
}

.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  padding: 2.5rem 2rem;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.value-icon {
  font-size: 4rem;
  flex-shrink: 0;
}

.value-item p {
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--text-color-dark);
  margin: 0;
  line-height: 1.5;
}

.filosofia-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.filosofia-img {
  width: 65%;
  max-width: 450px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.filosofia-img:hover {
  transform: scale(1.05);
}

/* Responsivo para telas medias */
@media (max-width: 992px) {
  .filosofia-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .filosofia-values {
    grid-template-columns: 1fr;
  }
  
  .filosofia-text h3 {
    font-size: 2.8rem;
  }
  
  .filosofia-text p {
    font-size: 1.9rem;
  }
  
  .filosofia-highlight {
    font-size: 2.2rem;
  }
}

/* Responsivo para telas pequenas */
@media (max-width: 768px) {
  .filosofia-text h3 {
    font-size: 2.4rem;
  }
  
  .filosofia-text p {
    font-size: 1.8rem;
  }
  
  .filosofia-highlight {
    font-size: 2rem;
    padding: 2rem 2rem;
  }
  
  .value-item {
    padding: 2rem 1.5rem;
  }
  
  .value-icon {
    font-size: 3.5rem;
  }
  
  .value-item p {
    font-size: 1.6rem;
  }
  
  .filosofia-img {
    max-width: 350px;
  }
}

/* seção Soluções*/
.solucoes-intro {
  text-align: center;
  font-size: 2rem;
  max-width: 800px;
  margin: 0 auto 5rem auto;
  color: var(--text-color-main);
  line-height: 1.7;
}

.solucoes-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 5rem;
}

.solucao-card-compact {
  background-color: white;
  padding: 3rem 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid var(--color-green);
}

.solucao-card-compact:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}


.solucao-card-compact h4 {
  font-size: 2rem;
  color: var(--text-color-dark);
  margin-bottom: 1.5rem;
  line-height: 1.3;
  font-weight: 600;
}

.compact-intro {
  font-size: 1.6rem;
  color: var(--text-color-main);
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

.solucao-list-compact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.solucao-list-compact li {
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--text-color-main);
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.solucao-list-compact li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-green);
  font-weight: bold;
}

/* Card de Investimentos*/
.solucao-investimentos {
  background: linear-gradient(135deg, var(--color-green) 0%, var(--color-line) 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 191, 99, 0.25);
}

.investimentos-header {
  padding: 3rem 4rem 2rem 4rem;
  text-align: center;
  color: white;
}

.investimentos-tag {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0.6rem 1.8rem;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.investimentos-header h3 {
  font-size: 3.6rem;
  color: white;
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
}

.investimentos-body {
  background-color: white;
  padding: 3rem 3rem 2.5rem 3rem;
}

.investimentos-intro {
  font-size: 2rem;
  line-height: 1.7;
  color: var(--text-color-main);
  text-align: center;
  margin-bottom: 3.5rem;
  font-weight: 500;
}

.investimentos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.investimento-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background-color: #f8f9fa;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.investimento-item:hover {
  transform: translateX(5px);
  background-color: #f0f2f5;
}

.invest-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.investimento-item h5 {
  font-size: 1.9rem;
  color: var(--color-green);
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.investimento-item p {
  font-size: 1.6rem;
  color: var(--text-color-main);
  margin: 0;
  line-height: 1.5;
}

.investimentos-cta {
  text-align: center;
  padding: 2.5rem 3rem;
  background: linear-gradient(135deg, rgba(0, 191, 99, 0.1), rgba(0, 208, 250, 0.1));
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.investimentos-cta p {
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--text-color-dark);
  margin: 0;
}

.btn-investimentos {
  display: inline-block;
  padding: 1.4rem 3.5rem;
  background: linear-gradient(135deg, var(--color-green) 0%, var(--color-line) 100%);
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 191, 99, 0.3);
}

.btn-investimentos:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 191, 99, 0.4);
}

/* Responsivo para telas medias */
@media (max-width: 992px) {
  .solucoes-grid-3 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .investimentos-grid {
    grid-template-columns: 1fr;
  }
  
  .investimentos-header {
    padding: 2.5rem 3rem 1.5rem 3rem;
  }
  
  .investimentos-header h3 {
    font-size: 3rem;
  }
  
  .investimentos-body {
    padding: 3rem 3rem 2.5rem 3rem;
  }
    .investimento-item h5{
    text-align: start;
  }
}

/* Responsivo para telas pequenas */
@media (max-width: 768px) {
  .solucao-card-compact {
    padding: 2.5rem 2rem;
  }
  
  .investimentos-header {
    padding: 2rem 2rem 1.5rem 2rem;
  }
  
  .investimentos-header h3 {
    font-size: 2.6rem;
  }
  
  .investimentos-body {
    padding: 2.5rem 2rem 2rem 2rem;
  }
  
  .investimentos-intro {
    font-size: 1.8rem;
  }
  
  .investimento-item {
    padding: 1.5rem;
  }
  
  .invest-icon {
    font-size: 2.5rem;
  }
  
  .investimento-item h5 {
    font-size: 1.6rem;
    text-align: start;
  }
  
  .investimento-item p {
    font-size: 1.4rem;
  }
}

/* seção contatos */
.contatos-section {
  background-color: white;
  padding: 8rem 0 4rem 0;
  margin-bottom: 10px
}

.contato-container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 3.2rem;
  padding-top: 100px
}

.contatos-header {
  text-align: center;
  margin-bottom: 6rem;
  max-width: 800px;
  margin: 0 auto 5rem auto;
}

.contatos-header h2 {
  font-size: 5rem;
  color: var(--text-color-dark);
  margin-bottom: 2rem;
  font-weight: 700;
}

.contatos-lead {
  font-size: 2.2rem;
  color: var(--text-color-main);
  line-height: 1.6;
}

.contatos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contatos-info-card {
  background-color: #f8f9fa;
  padding: 4rem 3rem;
  border-radius: 16px;
  border-left: 4px solid var(--color-green);
}

.contatos-info-card h3 {
  font-size: 2.4rem;
  color: var(--text-color-dark);
  margin-bottom: 3rem;
  font-weight: 600;
  text-align: center;
}

.contatos-info-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.contatos-info-wrapper {
  max-width: 1200px;
  margin: 0 auto 6rem auto;
  background-color: #f8f9fa;
  padding: 3rem 2.5rem;
  border-radius: 16px;
  border-left: 4  px solid var(--color-green);
}

.contato-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 200px;
}

.contato-titulo {
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-green);
  text-align: center;
}


/* Newsletter */
.newsletter-card {
  background-color: #f8f9fa;
  max-width: 750px;
  margin: 0 auto;
  padding: 3rem 3rem;
  border-radius: 16px;
  border-left: 4px solid var(--color-green);
  text-align: center;
}

.newsletter-card h3 {
  color: var(--color-green);
  font-weight: 600;
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.newsletter-card p {
  font-size: 1.8rem;
  color: var(--text-color-main);
  margin-bottom: 2.5rem;
  font-weight: 500;
  text-align: center;
}

.contato-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.45rem;
  color: var(--text-color-dark);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 1.2rem 2rem;
  border-radius: 8px;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  width: 100%;
  justify-content: center;
  margin-bottom: 1.5rem;
  overflow: hidden;
  word-break: break-word;
}

.contato-link:hover {
  color: var(--color-green);
  background-color: rgba(0, 191, 99, 0.05);
  transform: translateY(-2px);
  word-break: normal;
  white-space: nowrap;
  font-size: 1.2rem;
}

.contato-icon-minimal {
  font-size: 2.4rem;
}

.newsletter-form-minimal {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-form-minimal input {
  flex: 1;
  padding: 1.6rem 2.5rem;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  font-size: 1.6rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.newsletter-form-minimal input:focus {
  outline: none;
  border-color: var(--color-line);
}

.btn-newsletter-minimal {
  padding: 1.6rem 3rem;
  background-color: var(--color-green);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  white-space: nowrap;
}

.btn-newsletter-minimal:hover {
  background-color: var(--color-line);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 208, 250, 0.3);
}

.checkbox-newsletter {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 20px 0;
  cursor: pointer;
}

.checkbox-newsletter input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  padding: 10px;
  border: 2px solid var(--color-green);
  border-radius: 4px;
  background-color: #fff;
  display: inline-block;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-newsletter input[type="checkbox"]:checked {
  background-color: var(--color-green);
  border-color: var(--color-green);
}

.checkbox-newsletter input[type="checkbox"]:checked::after {
  content: "✓";
  position: absolute;
  color: white;
  font-size: 10px;
  font-weight: bold;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.checkbox-newsletter input[type="checkbox"]:hover {
  border-color: var(--color-green);
}

.checkbox-newsletter label {
  font-size: 15px;
  color: var(--text-color-main);
  cursor: pointer;
  line-height: 1.5;
}

.btn-newsletter-minimal:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.status-message {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 1.5rem;
  color: var(--color-green);
}

/* Responsivo para telas pequenas */
@media (max-width: 768px) {
  .contatos-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contatos-header h2 {
    font-size: 4rem;
  }
  .contatos-lead {
    font-size: 2rem;
  }
  .contatos-info-wrapper {
    padding: 3rem 2rem;
  }
  .newsletter-card {
    padding: 3rem 2rem;
  }
  .contatos-info-list {
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 2rem;
  }
  .bton-newsletter-minimal,
  .contato-link,
  .contato-item {
    min-width: 100%;
  }
  .newsletter-form-minimal {
    flex-direction: column;
  }
}

/* Footer */
.footer {
  background-color: #333;
  color: #e0e0e0;
  padding: 2rem 0 0 0;
}

.grid--footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer-nav {
  width: 100%;
}

.footer-list {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  list-style-type: none;
  gap: 32px;
  padding: 24px 0;
  margin: 0;
  text-transform: uppercase;
}

.footer-list a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.socials {
  width: 100%;
}

.social-links {
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  margin: 0;
}

.social-links li {
  cursor: pointer;
}

.footer-icon {
  stroke: #000000;
  fill: #000000;
  transition: stroke 0.3s ease, fill 0.3s ease;
}

.social-links a:hover .footer-icon {
  stroke: var(--color-green);
  fill: var(--color-green);
}

.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid #555;
}

.footer-bottom p {
  font-size: 14px;
  color: #888;
  margin: 0;
}

/* Responsivo para footer */
@media (max-width: 576px) {
  .footer-list {
    flex-direction: column;
    gap: 16px;
  }
}

/* botão Home do nav */
.nav-home-icon {
  height: 57px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
  padding: 4px;
  background-color: rgba(147, 255, 156, 0.322);
  border-radius: 50%;
}

.main-nav-link.home {
  background-color: transparent;
  padding: 0.4rem;
}

.main-nav-link.home:hover {
  background-color: transparent;
}

.main-nav-link.home:hover .nav-home-icon {
  transform: scale(1.25);
}

/* Responsividade geral */

/* (1200px) */
@media (max-width: 1200px) {
  html { font-size: 56.25%; }
}

/* (992px) */
@media (max-width: 992px) {
  html { font-size: 50%; }
  
  .hero-content, .sobre-intro-container, .sobre-areas-container, 
  .eudr-grid, .sobre-dual-grid, .filosofia-container, 
  .solucoes-grid-3, .investimentos-grid { 
    grid-template-columns: 1fr; 
    text-align: center; 
  }

  .hero-left, .hero-buttons, .contatos-info-list { justify-content: center; }
  
  .contatos-info-list { grid-template-columns: repeat(2, 1fr); }

  .grid-3-cols, .filosofia-values { grid-template-columns: 1fr 1fr; }
}

/* (768px) */
@media (max-width: 768px) {
  section { padding: 60px 0; }
  
  header { padding: 0 1rem; }
  
  .main-nav { overflow-x: auto; padding: 1rem 0; }
  
  .hero-title { font-size: 3.2rem; }
  
  .contatos-info-list { grid-template-columns: 1fr; }
  
  .newsletter-form-minimal { flex-direction: column; }
  
  .hero-buttons .btn { width: 100%; }

  .grid-3-cols, .filosofia-values, .reports-grid { grid-template-columns: 1fr; }
}

/*(576px) */
@media (max-width: 576px) {
  h1 { font-size: 3.2rem; }
  h2 { font-size: 2.8rem; }
  
  .footer-list { flex-direction: column; align-items: center; gap: 1.6rem; }
  
  .sobre-areas-grid { grid-template-columns: 1fr; }

  .contato-link { flex-direction: column; }
}