body {
  background-color: #F4F8F6;
  font-family: "Segoe UI", sans-serif;
}

/* HEADER */
.header-section {
  background: url(../imagens/fundo.webp);
  padding-top: 120px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}


.city-btn {
  border-radius: 30px;
  background: #fff;
  border: 1px solid #dcdcdc;
  font-weight: 600;
  color: #555;
}

.city-btn:hover {
  border-color: #2D8F4E;
  color: #2D8F4E;
}

.city-btn.active {
  background: #2D8F4E;
  color: #fff;
  border-color: #2D8F4E;
}

/* CARD CLIMA */
.weather-card {
  background: linear-gradient(135deg, #1B6B3A, #145A32);
  border-radius: 25px;
  color: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.temperature {
  font-size: 5rem;
  font-weight: 900;
}

.weather-icon {
  width: 48px;
  height: 48px;
}

.location-text {
  opacity: 0.75;
  font-weight: 500;
}

/* BOXES */
.weather-box {
  background: rgba(255,255,255,0.12);
  padding: 15px;
  border-radius: 20px;
}

.weather-box i {
  width: 22px;
  height: 22px;
  margin-bottom: 5px;
}


.agr-tip {
  background: #E9F7EE;
  border-left: 5px solid #2D8F4E;
  border-radius: 15px;
}

.forecast-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e6e6e6;
  transition: 0.3s;
}

.forecast-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.forecast-card i {
  width: 30px;
  height: 30px;
  margin-top: 8px;
}

.text-dark-green {
  color: #1B3A20;
}

.icon-light {
  width: 18px;
  height: 18px;
}

/* FOOTER BASE */
.footer-section {
  background: #000000;
  position: relative;
}

/* LOGO */
.footer-logo {
  height: 50px;
  filter: brightness(0) invert(1);
}

/* TEXT */
.footer-text {
  color: rgba(255,255,255,0.45);
  max-width: 420px;
  line-height: 1.7;
  font-weight: 300;
}

.footer-cnpj {
  color: rgba(255,255,255,0.3);
  font-size: 14px;
  font-weight: 500;
}

/* TITLES */
.footer-title {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 25px;
  font-weight: 700;
}

/* LINKS */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links a,
.footer-location {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-weight: 300;
  font-size: 15px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links a:hover {
  color: #E8B830;
}

.footer-location i {
  margin-top: 2px;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 16px;
  transition: 0.3s;
  text-decoration: none;
}

.footer-social a:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.footer-social a.whatsapp:hover {
  background: rgba(37, 211, 102, 0.2);
  color: #871d32;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .footer-text {
    max-width: 100%;
  }
}

/* HERO BASE */
.hero-section {
  min-height: 100vh;
  overflow: hidden;
  color: #fff;
}

/* Background Image */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../arquivos/bateria.jpg");
  z-index: 0;
  background-size: cover;
}

/* Gradient Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgb(0 0 0 / 24%), rgb(24 7 7 / 75%), rgba(7, 24, 16, 0.3));
  z-index: 1;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #E8B830;
  font-weight: 600;
  margin-bottom: 40px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: #E8B830;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { opacity: 0.3; }
  50% { opacity: 1; }
  100% { opacity: 0.3; }
}

/* Title */
.hero-title {
  font-size: clamp(2.5rem, 6vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 25px;
}

.hero-gradient {
  background: linear-gradient(90deg, #E8B830, #D4A017);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Text */
.hero-text {
  color: rgba(255,255,255,0.65);
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 40px;
}

/* Buttons */
.btn-whatsapp-hero {
  background: #871d32;
  color: #fff;
  font-weight: bold;
  height: 40px;
  padding: 0 30px;
  border-radius: 50px;
  box-shadow: 2px 8px 15px #871d3269;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
}

.btn-whatsapp-hero:hover {
  background: #e5b42c;
  transform: translateY(-3px);
  color: #000000;
}

.btn-outline-hero {
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  height: 40px;
  padding: 0 30px;
  border-radius: 50px;
  backdrop-filter: blur(5px);
  display: inline-flex;
  align-items: center;
  transition: 0.3s;
}

.btn-outline-hero:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

/* Bottom Stats */
.hero-stats {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  z-index: 2;
}

.stat-item h4 {
  font-weight: 900;
  margin-bottom: 3px;
}

.stat-item p {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .hero-section {
    text-align: center;
    /* height: 830px; */
    padding: 40px 0px;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

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

/* SECTION */
.products-section {
  padding-top: 120px;
  padding-bottom: 120px;
}

/* BADGE */
.products-badge {
  color: #871d32;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}

/* TITLE */
.products-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  color: #111;
}

/* LINK */
.products-link {
  color: #2D8F4E;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
  white-space: nowrap;
}

.products-link:hover {
  gap: 12px;
}

/* CARD */
.product-card {
  display: block;
  background: #FAFAF9;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: 0.35s;
  text-decoration: none;
  color: inherit;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(45, 143, 78, 0.08);
}

/* IMAGE */
.product-image {
  position: relative;
  height: 255px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.product-card:hover img {
  transform: scale(1.07);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.product-category {
  position: relative;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  background: #ffffff14;
  display: flex;
  border-radius: 10px;
  bottom: 0;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12);
}

/* BODY */
.product-body {
  padding: 20px;
  min-height: 190px;
}

.product-body h3 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
  color: #111;
}

.product-body p {
  font-size: 14px;
  color: #777;
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* MORE */
.product-more {
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
  background: #871d32;
  padding: 7px 8px;
  border-radius: 100px;
  rotate: -45deg;
}

.product-card:hover .product-more {
  gap: 10px;
}

/* SECTION */
.timeline-section {
  background: #FAFAF9;
  padding-top: 120px;
  padding-bottom: 120px;
}

/* BADGE */
.timeline-badge {
  color: #D4A017;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}

/* TITLE */
.timeline-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  color: #111;
}

/* LINK */
.timeline-link {
  color: #2D8F4E;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
  white-space: nowrap;
}

.timeline-link:hover {
  gap: 12px;
}

/* LINE */
.timeline-wrapper {
  position: relative;
}

.timeline-line {
  position: absolute;
  top: 55px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(45,143,78,0.3),
    rgba(212,160,23,0.3),
    rgba(45,143,78,0.1)
  );
}

/* ITEM */
.timeline-item {
  position: relative;
  padding-top: 10px;
  transition: 0.3s;
}

.timeline-dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #2D8F4E;
  background: #fff;
  margin: 0 auto 12px auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-dot::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #2D8F4E;
  border-radius: 50%;
}

/* YEAR */
.timeline-year {
  font-size: 20px;
  font-weight: 900;
  color: #D4A017;
  display: block;
  margin-bottom: 5px;
}

/* TEXT */
.timeline-text {
  font-size: 13px;
  color: #777;
  font-weight: 300;
  line-height: 1.4;
  margin: 0;
  padding: 0 10px;
}

/* HOVER EFFECT */
.timeline-item:hover .timeline-dot {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(45,143,78,0.15);
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .timeline-line {
    display: none;
  }
}

/* SECTION */
.distribution-section {
  padding: 60px 0;
  background: url(../imagens/fundo.webp);
  color: white;
}

/* TEXTURA */
.dot-pattern {
  position: absolute;
  inset: 0;
  background: #000000c4;
  background-size: 30px 30px;
}

/* GLOWS */
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.glow-gold {
  width: 400px;
  height: 400px;
  top: 0;
  right: 0;
  background: rgb(225 222 214 / 15%);
}

.glow-green {
  width: 250px;
  height: 250px;
  bottom: 0;
  left: 0;
  background: rgba(58, 175, 92, 0.2);
}

/* BADGE */
.distribution-badge {
  color: #E8B830;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}

/* TITLE */
.distribution-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 20px;
}

.highlight-gradient {
  background: linear-gradient(to right, #E8B830, #D4A017);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SUBTITLE */
.distribution-subtitle {
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

/* MAP */
.mapa-img {
  max-width: 500px;
  transition: 0.4s;
}

.map-hint {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 15px;
}

/* STATE CARD */
.state-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 15px;
  transition: 0.3s;
}

.state-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-4px);
}

/* BADGE UF */
.state-badge {
  width: 50px;
  height: 50px;
  background: rgb(135 29 50);
  border: 1px solid rgb(171 5 38);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #ffffff;
  flex-shrink: 0;
}

/* CHECK */
.check-icon {
  color: #871d32;
  font-size: 14px;
  margin-left: 6px;
}

/* TEXT */
.state-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin: 4px 0 0 0;
}

/* EXTRA BOX */
.extra-box {
  background: rgba(232, 184, 48, 0.08);
  border: 1px solid rgba(232, 184, 48, 0.2);
  padding: 20px;
  border-radius: 20px;
}

.extra-title {
  color: #E8B830;
  font-weight: 600;
  font-size: 14px;
}

.extra-text {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-top: 5px;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.pagination a {
    background: #871d32;
    color: #fff;
    padding: 5px 10px;
    text-decoration: none;
    margin: 3px;
}

.navbar .logo{
  filter: brightness(0) invert(1);
}

.navbar a{
  color: #fff;
}

.navbar a:hover{
  color: #871d32;
}

.navbar-scrolled a{
  color: #000;
}

.navbar-scrolled{
  background: #fff;
}

.navbar-scrolled .logo{
  filter: unset;
}

.estado  path {
    fill: #241d1d !important;
    cursor: pointer;
}

.estado {
    text-decoration: none;
}

.estado.atuacao  path {
    fill: #871d32 !important;
}

.mapa svg{
  width: 100%;
}

.infoClima {
  background: rgba(58,175,92,0.2);
  border: 1px solid rgba(58,175,92,0.4);
  border-radius: 14px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#temperatura {
    font-size: 90px;
}

@media screen and (max-width: 991px){
  .navbar-toggler{
border:0;
}

.navbar-toggler-icon{
filter: invert(1);
}
#navbarContent{
background:#fff;
padding:20px;
border-radius:8px;
margin-top:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

#navbarContent .nav-link{
color:#000 !important;
}

}

.titulo{
    color:#2e7d32;
    font-weight:bold;
}

.card-agro{
    border-top:5px solid #43a047;
}

.moeda-nome{
    font-size:22px;
    font-weight:bold;
}

.moeda-nome i{
    color:#2e7d32;
}

.valor{
    font-weight:bold;
}

.cotacao-atual{
    font-size:18px;
    color:#1b5e20;
    font-weight:bold;
}

.data-info{
    font-size:13px;
    color:#777;
}

.header-section:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #0000004d;
    top: 0;
    left: 0;
}


.hero-slider {
  position: relative;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

.slide.active {
  opacity: 1;
  position: relative;
}

.slider-dots {
  text-align: center;
  margin-top: 20px;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background: #ccc;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.dot.active {
  background: #000;
}

#tabsCategorias.nav-tabs .nav-link.active {
    background: #871d32;
    color: #fff;
}

#tabsCategorias.nav-tabs .nav-link {
    color: #000;
}

.tab-content .list-group-item {
    margin-bottom: 5px !important;
}

.tab-content .tab-pane {
    margin-bottom: 20px;
}




