body {
  font-family: "Segoe UI", sans-serif;
}

/* HEADER */
.header-section {
  background: linear-gradient(135deg, #1a1a1a, #000000);
  padding-top: 120px;
}

/* BOTÃƒâ€¢ES CIDADE */
.city-btn {
  border-radius: 30px;
  background: #1a1a1a;
  border: 1px solid #333;
  font-weight: 600;
  color: #bbb;
}

.city-btn:hover {
  border-color: #D4A017;
  color: #E8B830;
}

.city-btn.active {
  background: linear-gradient(135deg, #E8B830, #D4A017);
  color: #000;
  border-color: #D4A017;
}

/* CARD CLIMA */
.weather-card {
  background: linear-gradient(135deg, #1a1a1a, #000);
  color: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.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.05);
  padding: 15px;
  border-radius: 20px;
}

.weather-box i {
  width: 22px;
  height: 22px;
  margin-bottom: 5px;
}

/* RECOMENDAÃƒâ€¡ÃƒÆ’O */
.agr-tip {
  background: rgba(232,184,48,0.08);
  border-left: 5px solid #E8B830;
  border-radius: 15px;
}

/* PREVISÃƒÆ’O */
.forecast-card {
  background: #141414;
  border-radius: 20px;
  border: 1px solid #222;
  transition: 0.3s;
}

.forecast-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(232,184,48,0.1);
}

.forecast-card i {
  width: 30px;
  height: 30px;
  margin-top: 8px;
}

.text-dark-green {
  color: #E8B830;
}

/* ÃƒÂcones */
.icon-light {
  width: 18px;
  height: 18px;
}

/* FOOTER BASE */
.footer-section {
  background: #000;
  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: #25D366;
}

/* 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/equipe.jpg") center/cover no-repeat;
  z-index: 0;
}

/* Gradient Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: #000000ab;
  z-index: 1;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 50px;
  background: transparent;
  border: 1px solid rgb(255 255 255) !important;!i;!;
  backdrop-filter: blur(10px);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff !important;!i;!;
  font-weight: 600;
  margin-bottom: 40px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: #ffffff;
  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: #fff;
  -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: #dc3545;
  color: #ffffff !important;!i;!;
  font-weight: bold;
  height: 40px;
  padding: 0 30px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  border-color: #dc3545 !important;!i;!;
}

.btn-whatsapp-hero:hover {
  background: #d4a017;
  transform: translateY(-3px);
  color: #000;
}

.btn-outline-hero {
  border: 1px solid rgb(255 255 255);
  color: #ffffff;
  height: 40px;
  padding: 0 30px;
  border-radius: 5px;
  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: rgb(255 255 255 / 15%);
  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: 850px !important; */!i;!;
    padding-top: 185px;
    padding-bottom: 290px;
  }

  .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: #dc3545;
  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: #dc3545;
  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;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #222;
  transition: 0.35s;
  text-decoration: none;
  color: inherit;
  margin-bottom: 30px;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(45, 143, 78, 0.08);
}

/* IMAGE */
.product-image {
  position: relative;
  height: 180px;
  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);
}

.product-category {
  position: absolute;
  bottom: 12px;
  left: 15px;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
}

/* BODY */
.product-body {
  padding: 20px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-body h3 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
  color: #000000;
}

.product-body p {
  font-size: 14px;
  color: #aaa;
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* MORE */
.product-more {
  color: #3e3e9a;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}

.product-card:hover .product-more {
  gap: 10px;
}

/* SECTION */
.timeline-section {
  background: #FAFAF9;
  padding-top: 120px;
  padding-bottom: 120px;
}

/* BADGE */
.timeline-badge {
  color: #E8B830;
  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(232,184,48,0.3),
    rgba(212,160,23,0.3),
    rgba(232,184,48,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 #E8B830;
  background: #000;
  margin: 0 auto 12px auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-dot::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #E8B830;
  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: 120px 0;
  background: linear-gradient(135deg, #000, #1a1a1a, #000);
  color: white;
}

/* TEXTURA */
.dot-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0);
  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: rgba(232, 184, 48, 0.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: rgba(232,184,48,0.1);
  border: 1px solid rgba(232,184,48,0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #E8B830;
  flex-shrink: 0;
}

/* CHECK */
.check-icon {
  color: #3AAF5C;
  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.05);
  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-area {
    display: flex;
    justify-content: center;
}

.page-numbers {
  background: #D4A017;
  color: #000;
    padding: 5px 10px;
    text-decoration: none;
    margin: 3px;
}

.navbar .logo{
  filter: brightness(0) invert(1);
}

.navbar a{
  color: #fff;
}

.navbar a:hover{
  color: #dc3545;
}

.navbar-scrolled a{
  color: #000000;
}

.navbar-scrolled{
  background: #fff;
}

.navbar-scrolled .logo{
  filter: unset;
}

.estado  path {
  fill: #444 !important;
    cursor: pointer;
}

.estado {
    text-decoration: none;
}

.estado.atuacao  path {
  fill: #E8B830 !important;
}

.mapa svg{
  width: 100%;
}

.infoClima {
  background: rgba(232,184,48,0.08);
  border: 1px solid rgba(232,184,48,0.3);
  border-radius: 14px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#temperatura {
    font-size: 90px;
}

@media screen and (max-width: 991px){
  #mainNav{
    background: #fff;
  }

  .navbar .logo{
    filter: unset;
  }

  .navbar a{
    color: #000;
  }
}

.titulo{
  color: #E8B830;
    font-weight:bold;
}

.card-agro{
  border-top: 5px solid #E8B830;
}

.moeda-nome{
    font-size:22px;
    font-weight:bold;
}

.moeda-nome i{
  color: #E8B830;
}

.valor{
    font-weight:bold;
}

.cotacao-atual{
    font-size:18px;
  color: #E8B830;
    font-weight:bold;
}

.data-info{
    font-size:13px;
    color:#777;
}

.text-success {
    color: #f10900 !important;
}

.btn-success {
    background: #3e3e9a !important;
    border-color: #3e3e9a !important;
}

.bg-success {
    background-color: #3e3e9a !important;
}

.categories-section {
  background: #f8f9fa;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #1e1e1e;
  border-radius: 20px;
  padding: 30px 15px;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  background: linear-gradient(135deg, #3e3e9a, #978045);
}

.category-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-icon img {
  max-width: 100%;
  max-height: 100%;
  
  /* Ã°Å¸â€Â¥ TRANSFORMA PNG PRETO EM BRANCO */
  filter: brightness(0) invert(1);
  transition: 0.3s;
}

.category-card h5 {
  color: #fff;
  font-weight: 600;
  margin: 0;
  font-size: 16px;
}

.category-card:hover img {
  transform: scale(1.1);
}

/* efeito glow suave */
.category-card::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: 0.3s;
}

.category-card:hover::after {
  opacity: 1;
}

.marca {
    filter: brightness(0) invert(1);
    transition: 0.5s;
    border-radius: 5px;
}

.marca:hover {
    filter: none;
    transition: 0.5s;
    background: #fff;
}