@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Syne:wght@400;500;600;700;800&display=swap');

:root {
  --color-bg-dark: #1a3c34;
  --color-bg-darker: #132b26;
  --color-bg-light: #f4efe9;
  --color-text-light: #ffffff;
  --color-text-dark: #1a3c34;
  --color-accent: #c19b52;
  --color-accent-hover: #a68545;
  --font-title: 'Syne', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 400;
  line-height: 1.1;
}

h1 { font-size: 56px; }
h2 { font-size: 48px; }
h3 { font-size: 24px; line-height: 1.2; font-weight: 600; }
p { font-size: 16px; color: #4a5550; }

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* UTILITIES */

.section {
  padding: 100px 0;
}

.section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section__inner--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section--light {
  background: var(--color-bg-light);
  color: var(--color-text-dark);
}

.section--timeline {
  background: var(--color-bg-light);
  color: var(--color-text-dark);
}

.section--solutions {
  background: #e6dfd5;
  color: var(--color-text-dark);
}

.section--why {
  background: var(--color-bg-light);
  color: var(--color-text-dark);
}

.section--solid {
  background: #5b351c; /* Dark brown */
  color: #fdf7ec;
  position: relative;
  overflow: hidden;
}

/* Add background lines to solid section if needed */
.section--solid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-radial-gradient(circle at 0% 50%, transparent 0, transparent 49px, rgba(255,255,255,0.03) 50px);
  pointer-events: none;
}

.section--fidc {
  background: #1a3c34;
  color: #fdf7ec;
}

.section--start {
  background: var(--color-bg-light);
  color: var(--color-text-dark);
}

.section--contact {
  background: var(--color-bg-light);
  color: var(--color-text-dark);
}

/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  background-color: var(--color-bg-dark);
  background-image: url('../imgs/fundo01.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 80% 20%, rgba(193, 155, 82, 0.05) 0%, transparent 50%),
    repeating-radial-gradient(circle at 100% 50%, transparent 0, transparent 40px, rgba(255, 255, 255, 0.03) 41px);
  pointer-events: none;
  z-index: 0;
}

.hero__image-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
}

.hero__image {
  width: 100%;
  height: 100%;
  background-image: url('../imgs/fundo-hero.webp');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
}

.hero__inner {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 5%;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  margin-bottom: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 60px;
  width: auto;
}

.hero__nav {
  display: flex;
  gap: 16px;
}

.nav-btn {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid var(--color-accent);
  color: #fff;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-btn:hover {
  background: rgba(193, 155, 82, 0.2);
}

.nav-btn--active {
  background: #8da18e; /* Muted green */
  border-color: #8da18e;
  color: #fff;
}

.hero__content {
  max-width: 650px;
  margin-bottom: 15vh;
}

.hero__content h1 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 400;
  color: #fff;
}

.hero__subtitle {
  color: #8da18e;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 16px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero__text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #b0c4b1;
  max-width: 580px;
}

.hero__actions {
  display: flex;
  gap: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-accent);
  color: #1a3c34;
  border: 1px solid var(--color-accent);
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
}

.btn--ghost {
  background: transparent;
  color: #c19b52;
  border: 1px solid #c19b52;
}

.btn--ghost:hover {
  background: rgba(193, 155, 82, 0.1);
  color: #fff;
}

.btn--small {
  padding: 12px 24px;
  font-size: 12px;
  background: transparent;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
}

.btn--small:hover {
  background: var(--color-accent);
  color: #fff;
}

.btn--full {
  width: 100%;
}

/* CARDS METRICS */

.cards {
  display: grid;
  gap: 32px;
}

.cards--metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 80px;
  gap: 40px;
}

.card-metric {
  background: var(--color-accent);
  border-radius: 32px;
  padding: 32px;
  color: #fdf7ec;
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(193, 155, 82, 0.3);
  transition: transform 0.3s ease;
}

.card-metric:hover {
  transform: translateY(-5px);
}

.card-metric__top-icons {
  display: flex;
  gap: 8px;
}

.card-metric__top-icons span {
  width: 24px;
  height: 24px;
  background: #1a3c34;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #fff;
}

.card-metric__content h3 {
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: var(--font-title);
}

.card-metric__content span {
  display: block;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
}

.card-metric__bottom-icon {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: #1a3c34;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--color-accent);
}

/* TEXT CENTERED */

.section__text-centered {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.section__text-centered h2 {
  font-size: 48px;
  margin-bottom: 40px;
  color: var(--color-text-dark);
  font-weight: 400;
}

.section__text-centered p {
  font-size: 18px;
  color: #4a5550;
  line-height: 1.8;
}

.section__text-centered .text-highlight {
  font-size: 20px;
  color: #5b351c;
  margin-bottom: 32px;
}

/* TIMELINE */

.section__title {
  text-align: center;
  font-size: 48px;
  letter-spacing: 0.05em;
  margin-bottom: 60px;
  text-transform: uppercase;
  color: var(--color-text-dark);
  font-weight: 400;
}

.section__subtitle {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  font-size: 18px;
  color: #4a5550;
  line-height: 1.6;
}

.timeline {
  margin-bottom: 80px;
  position: relative;
}

.timeline__line-container {
  position: relative;
  padding: 40px 0;
}

.timeline__line {
  height: 4px;
  background: var(--color-accent);
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.timeline__points {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.timeline__point {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 20px;
}

.timeline__point .year {
  display: block;
  font-family: var(--font-title);
  font-size: 36px;
  font-weight: 700;
  color: #5b351c;
  margin-bottom: 20px;
}

.timeline__point .dot {
  width: 20px;
  height: 20px;
  background: var(--color-accent);
  border: 4px solid #f4efe9;
  border-radius: 50%;
  margin: 0 auto 20px;
  position: relative;
}

.timeline__point p {
  font-size: 14px;
  color: #4a5550;
  max-width: 250px;
  margin: 0 auto;
}

/* CARDS MV (Mission Vision) */

.cards--mv {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-info {
  background: #fff;
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  overflow: visible;
}

.card-info__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.card-info__label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #888;
  margin-bottom: 4px;
}

.card-info__header h3 {
  font-size: 24px;
  color: var(--color-text-dark);
}

.card-info__icon {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: auto;
  z-index: 10;
}

.card-info__icon img {
  width: 100%;
  height: auto;
  display: block;
}

.values-list {
  list-style: none;
}

.values-list li {
  margin-bottom: 8px;
  color: #4a5550;
}

/* SOLUTIONS */

.section--solutions {
  background: #dcd2c5; /* Taupe color from image */
  color: var(--color-text-dark);
  border-radius: 40px;
  margin: 40px 24px;
  position: relative;
  overflow: hidden;
}

.section--solutions .section__bg-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-radial-gradient(
    circle at 100% 0%,
    transparent 0,
    transparent 49px,
    rgba(0, 0, 0, 0.03) 50px
  );
  pointer-events: none;
}

.section__title-large {
  font-size: 48px;
  text-align: center;
  margin-bottom: 24px;
  color: var(--color-text-dark);
}

.section__subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 18px;
  color: #4a5550;
}

.cards--solutions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.card-solution {
  display: flex;
  background: transparent;
  border-radius: 32px;
  position: relative;
  min-height: 260px;
  padding: 32px;
  gap: 24px;
  align-items: center;
  isolation: isolate;
}

.card-solution::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #f4efe9;
  border-radius: 32px;
  z-index: -1;
}

.card-solution__image {
  flex: 0 0 140px;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.card-solution__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-solution__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.card-solution__content h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--color-text-dark);
  line-height: 1.2;
}

.card-solution__content p {
  font-size: 14px;
  color: #4a5550;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Responsive for Solutions */
@media (max-width: 768px) {
  .section--solutions {
    margin: 0;
    border-radius: 0;
  }
  
  .cards--solutions {
    grid-template-columns: 1fr;
  }

  .card-solution {
    flex-direction: column;
    align-items: flex-start;
  }

  .card-solution__image {
    width: 100%;
    height: 200px;
    flex: none;
  }

  .card-solution__content {
    padding-right: 0;
  }
}

/* NATURE */

.section--nature {
  background: #f4efe9;
}

.section--nature h2 {
  font-size: 48px;
  margin-bottom: 24px;
  color: #1a3c34;
  font-weight: 400;
  line-height: 1.1;
}

.section--nature h2 strong {
  color: #1a3c34;
  font-weight: 700;
}

.section--nature p {
  color: #4a5550;
  font-size: 16px;
  line-height: 1.6;
  max-width: 500px;
}

.section__divider {
  width: 200px;
  height: 6px;
  background: var(--color-accent);
  margin-top: 40px;
}

.nature__stats {
  display: grid;
  gap: 40px;
}

.nature__stat {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.nature__stat .nature__icon {
  font-size: 32px;
  color: #7da35b; /* Greenish */
  margin-top: 8px;
  width: 24px;
  text-align: center;
}

.nature__value {
  display: block;
  font-size: 50px;
  font-weight: 700;
  color: #7da35b;
  font-family: var(--font-title);
  line-height: 1;
  margin-bottom: 0;
}

.nature__label {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #1a3c34;
  margin-bottom: 4px;
  line-height: 1.2;
}

.nature__desc {
  display: block;
  font-size: 18px;
  color: #666;
  line-height: 1.4;
}

/* WHY */

.section--why {
  background: #f4efe9;
}

.section--why .section__title {
  color: #1a3c34;
  font-size: 42px;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cards--grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.card-reason {
  background: transparent;
  border-radius: 32px;
  padding: 40px 30px;
  text-align: left;
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  isolation: isolate;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.03));
}

.card-reason::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #ffffff;
  border-radius: 32px;
  z-index: -1;
  clip-path: polygon(
    0 0, 
    calc(100% - 88px) 0, 
    calc(100% - 88px) calc(88px - 32px),
    calc(100% - 88px + 4px) calc(88px - 20px),
    calc(100% - 88px + 12px) calc(88px - 8px),
    calc(100% - 88px + 20px) calc(88px - 2px),
    calc(100% - 88px + 32px) 88px,
    100% 88px, 
    100% 100%, 
    0 100%
  );
}

.card-reason__icon-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.card-reason__icon {
  width: 100%;
  height: 100%;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  margin: 0;
}

.card-reason h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #1a3c34;
  font-family: var(--font-title);
  font-weight: 600;
  line-height: 1.2;
  max-width: 80%;
}

.card-reason p {
  font-size: 14px;
  color: #4a5550;
  line-height: 1.6;
}

/* SOLID */

.section--solid {
  background: #463225; /* Darker brown */
  color: #fdf7ec;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

/* Background subtle lines */
.section--solid::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 200%;
  height: 200%;
  background: repeating-radial-gradient(
    circle at 50% 50%,
    transparent 0,
    transparent 49px,
    rgba(255, 255, 255, 0.02) 50px
  );
  pointer-events: none;
}

.solid__content h2 {
  font-size: 48px;
  color: var(--color-accent);
  margin-bottom: 24px;
  line-height: 1.1;
  font-weight: 400;
}

.solid__description {
  font-size: 18px;
  max-width: 500px;
  margin-bottom: 60px;
  opacity: 0.9;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.solid__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.solid__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.solid__icon {
  background: #4caf50; /* Green check */
  color: #fff;
  border-radius: 4px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}

.solid__icon i {
  font-size: 14px;
}

.solid__text strong {
  display: block;
  font-size: 20px;
  color: #fff;
  margin-bottom: 8px;
  font-family: var(--font-title);
  font-weight: 600;
}

.solid__text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

/* Image and Decorations */
.solid__image-wrapper {
  position: relative;
  height: 500px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.solid__image {
  width: 80%;
  height: 100%;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.solid__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* The vertical gold line */
.solid__line {
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: 35%;
  width: 16px;
  background: var(--color-accent);
  z-index: 2;
}

/* The organic rings overlay */
.solid__rings {
  position: absolute;
  top: 0;
  right: -10%;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='500' height='500' viewBox='0 0 500 500' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M450 250C450 360.457 360.457 450 250 450C139.543 450 50 360.457 50 250' stroke='%23C19B52' stroke-width='20' stroke-linecap='round'/%3E%3Cpath d='M450 150C450 94.7715 405.228 50 350 50C294.772 50 250 94.7715 250 150' stroke='%23C19B52' stroke-width='20' stroke-linecap='round'/%3E%3Cpath d='M450 350C450 405.228 405.228 450 350 450' stroke='%23C19B52' stroke-width='20' stroke-linecap='round'/%3E%3Cpath d='M350 50C450 50 500 150 500 250' stroke='%23C19B52' stroke-width='20' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
  transform: scale(1.5);
}

/* FIDC */

.section--fidc {
  background: #233d35; /* Dark green from image */
  color: #fdf7ec;
  padding: 120px 0;
  overflow: hidden;
}

.fidc__content h2 {
  font-size: 48px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.1;
  font-family: var(--font-title);
}

.fidc__content h2 span {
  color: #8da18e; /* Muted green/gold */
  font-weight: 700;
  display: block;
  margin-top: 8px;
}

.fidc__content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 500px;
}

.fidc__actions {
  display: flex;
  gap: 20px;
}

.btn--fidc-primary {
  background: #c19b52;
  color: #233d35;
  padding: 16px 32px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.05em;
  border: 1px solid #c19b52;
  transition: all 0.3s;
  white-space: nowrap;
}

.btn--fidc-primary:hover {
  background: #a68545;
  border-color: #a68545;
}

.btn--fidc-outline {
  background: transparent;
  color: #c19b52;
  padding: 16px 32px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.05em;
  border: 1px solid #c19b52;
  transition: all 0.3s;
  white-space: nowrap;
}

.btn--fidc-outline:hover {
  background: rgba(193, 155, 82, 0.1);
  color: #fff;
}

.cards--fidc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.card-fidc {
  background: #c19b52;
  border-radius: 24px;
  padding: 32px;
  position: relative;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
  margin-top: 20px; /* Space for tab */
}

/* The "tab" effect behind the card */
/* .card-fidc::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 20px;
  right: 20px;
  height: 40px;
  background: #dcd2c5; /* Beige tab color */
  border-radius: 20px 20px 0 0;
  z-index: -1;
} */

.card-fidc h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 12px;
  font-family: var(--font-body); /* Looks more like sans-serif in image */
  font-weight: 600;
  line-height: 1.2;
}

.card-fidc p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.5;
}

/* START */

.section--start {
  background: #f4efe9;
}

.section--start .section__title {
  color: #1a3c34;
  font-size: 42px;
  margin-bottom: 24px;
  font-family: var(--font-title);
  font-weight: 400;
}

.section--start .section__subtitle {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  color: #5b351c;
  font-size: 16px;
  line-height: 1.6;
}

.card-start {
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  border: none;
  transition: transform 0.3s ease;
}

.card-start:hover {
  transform: translateY(-5px);
}

.card-start__image {
  height: 220px;
  width: 100%;
  overflow: hidden;
}

.card-start__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card-start:hover .card-start__image img {
  transform: scale(1.05);
}

.card-start__body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-start__header {
  margin-bottom: 16px;
}

.card-start__label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  margin-bottom: 4px;
  font-family: var(--font-body);
}

.card-start__title {
  font-size: 28px;
  color: #1a3c34;
  font-family: var(--font-title);
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

.card-start__body p {
  font-size: 14px;
  color: #666;
  margin-bottom: 32px;
  line-height: 1.6;
  flex: 1;
}

.btn--start-action {
  width: 100%;
  background: #c19b52;
  color: #1a3c34;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 16px;
  border-radius: 4px;
  text-align: center;
  border: none;
  letter-spacing: 0.05em;
  transition: background 0.3s;
  display: block;
  white-space: nowrap;
}

.btn--start-action:hover {
  background: #a68545;
  color: #fff;
}

/* CONTACT */

.section--contact {
  background: #efeae4; /* Light beige background */
  padding: 100px 0;
}

.contact__info h2 {
  font-size: 48px;
  margin-bottom: 24px;
  color: #c19b52;
  font-family: var(--font-title);
  font-weight: 400;
  line-height: 1.1;
}

.contact__desc {
  color: #4a5550;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 48px;
  max-width: 450px;
}

.contact__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

/* Specific Icon Colors matching the image */
.contact__item:nth-child(1) .contact__icon { color: #c65d52; } /* Red/Terracotta Pin */
.contact__item:nth-child(2) .contact__icon { color: #7da35b; } /* Green Phone */
.contact__item:nth-child(3) .contact__icon { color: #d4c5b5; } /* Beige Envelope */
.contact__item:nth-child(4) .contact__icon { color: #e09e58; } /* Orange Share */

.contact__icon {
  font-size: 18px;
  margin-top: 4px;
  width: 24px;
  display: flex;
  justify-content: center;
}

.contact__details h3 {
  font-size: 18px;
  color: #c19b52;
  margin-bottom: 8px;
  font-weight: 700;
  font-family: var(--font-title);
}

.contact__details p {
  color: #5b351c; /* Dark brown text */
  font-size: 14px;
  line-height: 1.5;
}

.contact__details p strong {
  font-weight: 700;
  font-style: italic;
}

.contact__socials {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact__socials a {
  font-size: 14px;
  color: #5b351c;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.contact__socials a i {
  color: #0077b5; /* Default link color, override for specific brands if needed */
}

.contact__socials a:nth-child(2) i { color: #E1306C; } /* Instagram */
.contact__socials a:nth-child(3) i { color: #0077b5; } /* LinkedIn */
.contact__socials a:nth-child(1) i { color: #5b351c; } /* Link */


.contact__form-wrapper {
  display: flex;
  justify-content: flex-end;
}

.contact__form {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 480px;
}

.contact__form h3 {
  margin-bottom: 24px;
  font-size: 18px;
  color: #1a3c34;
  font-weight: 700;
}

.contact__form input,
.contact__form select,
.contact__form textarea {
  width: 100%;
  margin-bottom: 16px;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #8da18e; /* Greenish border */
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  color: #666;
}

.contact__form input::placeholder,
.contact__form textarea::placeholder {
  color: #999;
}

.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: #1a3c34;
}

.contact__field-hidden {
  display: none;
}

.contact__form-status {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.4;
}

.contact__form-status--sending {
  background: #f4efe9;
  color: #5b351c;
}

.contact__form-status--success {
  background: #e8f3e4;
  color: #1a3c34;
}

.contact__form-status--error {
  background: #f7e8e5;
  color: #8f2e24;
}

.btn--contact-submit {
  width: 100%;
  background: #c19b52;
  color: #1a3c34;
  font-weight: 700;
  padding: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
  white-space: nowrap;
}

.btn--contact-submit:hover {
  background: #a68545;
  color: #fff;
}

.btn--contact-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.btn--contact-submit:disabled:hover {
  background: #c19b52;
  color: #1a3c34;
}


/* FOOTER */

.footer {
  background: #233d35; /* Dark green matching FIDC section */
  color: #fff;
  padding-top: 80px;
  font-size: 14px;
  border-top: none;
}

.footer__content {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 80px;
  align-items: start;
}

.footer__brand .logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer__brand .logo img {
  height: 80px;
  width: auto;
}

.footer__column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__column p {
  margin: 0;
  color: #fff;
  opacity: 0.9;
  font-size: 15px;
}

.footer__column a {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s;
  font-size: 15px;
}

.footer__column a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer__bottom {
  background: #1a2e28; /* Darker shade for bottom bar */
  padding: 24px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  border-top: none;
}

/* Responsive Footer */
@media (max-width: 960px) {
  .footer__content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* IMPACTO AMAZONIA */

.section--impacto {
  background: #94a588; /* Sage green */
  color: #1a3c34;
  padding: 120px 0;
}

.impacto__content .impacto__title {
  font-size: 48px;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
  font-weight: 400;
  font-family: var(--font-title);
  text-transform: uppercase;
}

.impacto__content .impacto__subtitle {
  font-size: 40px;
  color: #1a3c34;
  font-weight: 700;
  margin-bottom: 24px;
  font-family: var(--font-title);
  line-height: 1.2;
}

.impacto__content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 500px;
  color: #1a3c34;
}

.impacto__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn--impacto-dark {
  background: #1a3c34;
  color: #fff;
  border: 1px solid #1a3c34;
  font-size: 12px;
  padding: 16px 32px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  white-space: nowrap;
}

.btn--impacto-dark:hover {
  background: #132b26;
  border-color: #132b26;
}

.btn--impacto-light {
  background: #f4efe9;
  color: #1a3c34;
  border: 1px solid #f4efe9;
  font-size: 12px;
  padding: 16px 32px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  white-space: nowrap;
}

.btn--impacto-light:hover {
  background: #fff;
  border-color: #fff;
}

.impacto__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.card-impacto {
  background: #1a3c34;
  border-radius: 24px;
  padding: 32px;
  position: relative;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 20px; /* Space for tab */
  z-index: 1;
}

/* .card-impacto::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 20px;
  right: 20px;
  height: 24px;
  background: #dcd2c5; /* Beige tab */
  border-radius: 12px 12px 0 0;
  z-index: -1;
} */

.card-impacto h3 {
  color: #c19b52;
  font-size: 24px;
  margin-bottom: 12px;
  line-height: 1.2;
  font-family: var(--font-body);
  font-weight: 600;
}

.card-impacto p {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.9;
}

/* MOBILE MENU STYLES */

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 100;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg-dark);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu__close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  padding: 40px 24px;
  gap: 20px;
  align-items: center;
}

.mobile-menu__nav .nav-btn {
  width: 100%;
  text-align: center;
  font-size: 14px;
  padding: 16px;
}

body.no-scroll {
  overflow: hidden;
}

/* RESPONSIVE */

@media (max-width: 960px) {
  .hero__nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: 80px;
    flex-direction: column-reverse;
  }
  
  .hero__image-container {
    position: relative;
    width: 100%;
    height: 300px;
    order: -1;
    margin-top: -90px;
  }

  .hero__inner {
    padding: 40px 24px;
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .hero__top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 24px;
    z-index: 20;
  }

  .hero__content {
    max-width: 100%;
    margin-top: 20px;
  }

  .hero__content h1 {
    font-size: 32px;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .section__inner--split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cards--metrics,
  .cards--mv,
  .cards--grid-2,
  .cards--grid-3,
  .cards--solutions,
  .solid__grid,
  .cards--fidc-grid,
  .impacto__cards,
  .nature__stats,
  .footer__content {
    grid-template-columns: 1fr;
  }
  
  .card-solution {
    grid-template-columns: 1fr;
  }
  
  .card-solution__image {
    min-height: 200px;
  }
  
  .timeline__points {
    flex-direction: column;
    gap: 40px;
  }
  
  .timeline__line {
    display: none;
  }
  
  .timeline__point .dot {
    margin-bottom: 10px;
  }

  .solid__image-wrapper {
    height: 300px;
  }

  .solid__line {
    display: none;
  }

  .contact__form-wrapper {
    justify-content: center;
  }

  .fidc__actions {
    flex-direction: column;
    width: 100%;
  }

  .fidc__actions .btn--fidc-primary,
  .fidc__actions .btn--fidc-outline {
    width: 100%;
    text-align: center;
    white-space: normal;
  }

  .impacto__actions {
    flex-direction: column;
    width: 100%;
  }

  .impacto__actions .btn--impacto-dark,
  .impacto__actions .btn--impacto-light {
    width: 100%;
    text-align: center;
    white-space: normal;
  }

  h2 {
    font-size: 32px;
  }

  .section__title {
    font-size: 32px;
  }

  .section__title-large {
    font-size: 32px;
  }

  .solid__content h2 {
    font-size: 36px;
  }

  .fidc__content h2 {
    font-size: 36px;
  }

  .impacto__content .impacto__title {
    font-size: 36px;
  }

  .impacto__content .impacto__subtitle {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .section--solutions {
    margin: 0;
    border-radius: 0;
  }
  
  .cards--solutions {
    grid-template-columns: 1fr;
  }

  .card-solution {
    flex-direction: column;
    align-items: flex-start;
  }

  .card-solution__image {
    width: 100%;
    height: 200px;
    flex: none;
  }

  .card-solution__content {
    padding-right: 0;
  }
}



/* MANIFESTO PAGE HELPER CLASSES */

.hero--manifesto {
  min-height: 60vh;
  background-position: center;
  align-items: flex-start;
}

.hero--manifesto .hero__inner {
  height: auto;
  min-height: 60vh;
  justify-content: flex-start;
}

.hero--manifesto .hero__content {
  margin-top: 100px;
  text-align: center;
  align-items: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero--manifesto h1 {
  text-align: center;
}

.hero--manifesto .hero__text {
    width: 60%;
    text-align: center;
}

.cards--principles {
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.card-principle {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 40px;
  border-radius: 16px;
  transition: transform 0.3s;
  height: 100%;
}

.card-principle:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent);
}

.card-principle__icon {
  font-size: 32px;
  color: var(--color-accent);
  margin-bottom: 24px;
}

.card-principle h3 {
  color: var(--color-accent);
  margin-bottom: 16px;
  font-size: 24px;
}

.card-principle p {
  color: #dcdcdc;
  font-size: 16px;
}

@media (max-width: 768px) {
  .cards--principles {
    grid-template-columns: 1fr;
  }
}


/* WHATSAPP WIDGET */

.whatsapp-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.whatsapp-widget__btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25d366;
  color: white;
  border: none;
  font-size: 32px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-widget__btn:hover {
  transform: scale(1.1);
}

.whatsapp-widget__numbers {
  background-color: white;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transform-origin: bottom right;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 8px;
}

.whatsapp-widget__numbers.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.whatsapp-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1a3c34;
  font-family: var(--font-body); /* Using font-body variable */
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  background-color: #f5f5f5;
  border-radius: 8px;
  transition: background-color 0.2s;
  white-space: nowrap;
}

.whatsapp-link i {
  color: #25d366;
  font-size: 18px;
}

.whatsapp-link:hover {
  background-color: #e5ffe9;
  color: #1a3c34; /* Ensure text color stays readable */
}


/* FOOTER SEALS */
.footer__seals {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.footer__seals img {
  height: 60px;
  width: auto;
  border-radius: 4px;
  transition: transform 0.3s;
}

.footer__seals a:hover img {
  transform: scale(1.05);
}

