    body {
      /*font-family: 'Montserrat', sans-serif;*/
      font-family: 'Poppins', sans-serif;
      background-color: #f9f9f9;
      color: #333;
    }

    h1, h2, h3, .hero h1 {
      font-family: 'Satisfy', cursive;
    }

    .navbar {
      background-color: #2E7D32; /* Verde escuro */
    }
    .navbar-brand, .nav-link {
      color: #fff !important;
      font-weight: 600;
    }
    .hero {
      background: linear-gradient(to bottom, #FFC107, #FF9800); /* Amarelo/Laranja */
      padding: 80px 0;
      text-align: center;
      color: #fff;
    }
    .hero img {
      max-width: 180px;
      margin-bottom: 20px;
    }
    section {
      padding: 60px 0;
    }
    section h2 {
      color: #2E7D32;
      font-weight: 800;
      margin-bottom: 30px;
    }
    footer {
      background-color: #212121; /* Preto */
      color: #fff;
      text-align: center;
      padding: 20px 0;
      margin-top: 50px;
    }

    /* Estilo personalizado para a seção "Quem Somos" */
    .quem-somos-wrapper {
      position: relative;
      overflow: hidden;
      padding-top: 80px;
      padding-bottom: 80px;
    }

    .blob-decor {
      position: absolute;
      top: -100px;
      left: -100px;
      z-index: 0;
      width: 500px;
      height: 500px;
      opacity: 0.25;
    }

    .img-stack {
      position: relative;
      max-width: 90%;
    }

    .img-stack .img-bottom {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.2);
      position: relative;
      z-index: 1;
    }

    .img-stack .img-top {
      width: 80%;
      border-radius: 12px;
      border: 6px solid white;
      box-shadow: 0 12px 30px rgba(0,0,0,0.25);
      position: absolute;
      top: 100px;
      left: 100px;
      z-index: 2;
    }

    /* Corrige o bounce e isola da transform do Bootstrap */
    .chevron {
      display: inline-block;
      animation: bounce 1.5s infinite ease-in-out;
    }

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

    .text-highlight {
      background: linear-gradient(45deg, #FFC107, #FF9800);
      background-clip: text;
      -webkit-text-fill-color: transparent;
      font-weight: 800;
    }

    .typed-text {
      font-size: 1.2rem;
      color: #fff;
      font-weight: 400;
    }

    /* secção estrutura */
    .operacao-card {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        height: 250px;
        background-size: cover;
        background-position: center;
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        transition: transform 0.3s;
    }

    .-overlay {
        position: absolute;
        bottom: 0;
        width: 100%;
        background: rgba(0,0,0,0.6);
        color: #fff;
        padding: 15px;
        transition: transform 0.4s ease;
        transform: translateY(0%);
    }

    .operacao-overlay {
        position: absolute;
        bottom: 0;
        width: 100%;
        background: rgba(255, 193, 7, 0.85); /* #FFC107 com 85% opacidade */
        color: #212121;
        padding: 15px;
        transition: transform 0.4s ease;
        transform: translateY(0%);
    }


    .operacao-card:hover .operacao-overlay {
        transform: translateY(80%);
    }

    .operacao-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    /*carrossel com os produtos */
    .product-carousel {
        overflow: hidden;
        white-space: nowrap;
        position: relative;
    }

    .product-carousel-track {
        display: inline-block;
        animation: scroll-left 30s linear infinite;
    }

    .product-carousel-track img {
        height: 300px;
        margin: 0 30px;
        filter: grayscale(0%);
        transition: filter 0.3s ease;
    }
    .product-carousel-track img:hover {
        filter: grayscale(0%);
    }

    @keyframes scroll-left {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }

    /*estilo logo-marca-dagua */
    .mercado-section {
        position: relative;
        background-color: #f8f9fa;
        overflow: hidden;
    }

    .mercado-watermark {
        position: absolute;
        bottom: 0;
        right: 55%;
        opacity: 0.05;
        z-index: 0;
        max-width: 500px;
    }

    .mercado-text {
        position: relative;
        z-index: 2;
    }

    .mercado-img {
        border-radius: 12px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        max-width: 100%;
    }

    /* Contatos **/
   .contato-section {
        background-color: #2E7D32;
        position: relative;
        overflow: hidden;
        color: white;
    }

    .contato-card {
        background-color: rgba(255, 255, 255, 0.1);
        border: none;
        border-radius: 12px;
        padding: 20px;
        color: white;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        margin-bottom: 20px;
        backdrop-filter: blur(3px);
    }

    .contato-card i {
        font-size: 1.5rem;
        color: #FFC107; /* Amarelo para contraste com fundo verde */
        margin-right: 15px;
    }


    .mapa-iframe {
        width: 100%;
        height: 100%;
        min-height: 300px;
        border: 0;
        border-radius: 12px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .wave-footer{
        background-color: #fff;
    }

    /* NAVBAR PERSONALIZADA */
    .custom-navbar {
      transition: background-color 0.4s ease, box-shadow 0.4s ease;
      background-color: transparent;
      padding: 15px 0;
      z-index: 999;
    }

    .custom-navbar .nav-link {
      color: #fff;
      font-weight: 500;
      margin-left: 15px;
      transition: color 0.3s ease;
    }

    .custom-navbar.scrolled {
      background-color: #fff !important;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .custom-navbar.scrolled .nav-link {
      color: #333 !important;
    }

    .custom-navbar .navbar-brand span {
      color: #fff;
      transition: color 0.3s;
    }
    .custom-navbar.scrolled .navbar-brand span {
      color: #212121;
    }

    .navbar-toggler {
      border: none;
    }

    .custom-cursor {
      display: inline-block;
      margin-left: 2px;
      color: #fff;
      animation: blink 1s infinite;
    }

    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0; }
    }

.text-hero
{
  color: #2E7D32;
}

.blob-imagens {
  min-height: 360px;
}

.img-blob {
  width: 800px;
  height: 800px;
  z-index: 2;
}

.img-base {
  width: 320px;
  height: 320px;
  top: 30px;
  left: 30px;
  object-fit: cover;
  border-radius: 20px;
  z-index: 1;
}

.sombra {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.blob-decorativo {
  position: absolute;
  top: -50px;
  left: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at center, #ffc10755, transparent);
  z-index: 0;
  border-radius: 50%;
  filter: blur(40px);
}

.zoom-img-wrapper {
  overflow: hidden;
  border-radius: 8px;
}

.zoom-img-wrapper img {
  transition: transform 0.4s ease;
}

.zoom-img-wrapper:hover img {
  transform: scale(1.1);
}

.icon-box {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.icon-box i {
  font-size: 1.5rem;
  color: #FF9800;
  margin-right: 12px;
}

.form-control:focus {
  border-color: #FF9800;
  box-shadow: 0 0 0 0.2rem rgba(255,152,0,.25);
}

/* Estilo padrão para links do menu */
.navbar-nav .nav-link {
  position: relative;
  color: white !important;
  font-weight: 500;
  padding: 8px 12px;
  transition: color 0.3s ease;
}

/* Efeito ao passar o mouse */
.navbar-nav .nav-link:hover {
  color: #FFEB3B !important;
}

/* Sublinhado animado ao hover e ativo */
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #FFEB3B;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

/* Item ativo com cor de fundo leve (opcional) */
.navbar-nav .nav-link.active {
  color: #FFEB3B !important;
}

/* Preloader full screen */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Loader círculo animado */
.loader {
  display: flex;
  gap: 10px;
}

.loader .circle {
  width: 15px;
  height: 15px;
  background-color: #FFEB3B;
  border-radius: 50%;
  animation: bounce 0.6s infinite alternate;
}

.loader .circle:nth-child(2) {
  animation-delay: 0.2s;
}

.loader .circle:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  from {
    transform: translateY(0);
    opacity: 0.6;
  }
  to {
    transform: translateY(-20px);
    opacity: 1;
  }
}

/* estilo dos cards */
.img-hover-zoom {
  transition: transform 0.3s ease;
}
.img-hover-zoom:hover {
  transform: scale(1.1);
}
.produto-card {
  cursor: pointer;
}
