/* ==========================================================================
   Kidendê Alimentos — Identidade Visual Oficial do Dendê
   Paleta: Vermelho Kidendê (#C01E1E / #9E1515 / #7F1D1D) &
           Amarelo Solar Dourado (#FDBB04 / #F59E0B / #FEF08A)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@700&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400;1,9..40,600&display=swap');

:root {
  --agrion-base: #C01E1E;        /* Vermelho Kidendê Oficial (Emblema do rótulo) */
  --agrion-base-hover: #9E1515;  /* Vermelho Rubi Profundo */
  --agrion-dark: #7F1D1D;        /* Vermelho Bordô Dendê Profundo */
  --agrion-dark-hover: #651515;
  --agrion-primary: #FDBB04;     /* Amarelo Solar Dourado do Rótulo */
  --agrion-primary-hover: #E5A800;
  --agrion-gold: #F59E0B;        /* Dourado Âmbar */
  --agrion-amber: #E8590C;       /* Laranja Fruto do Dendê */
  --agrion-bg: #FAF7F2;          /* Canvas Off-white Quente */
  --agrion-card: #FFFFFF;
  --agrion-gray: #576574;
  --agrion-border: #E8E2D8;      /* Hairline Dividers */
  --agrion-border-gold: #FCD34D;
  --agrion-border-dark: #991B1B;
  --agrion-radius: 2px;          /* Geometria arquitetônica de precisão */
}

/* Base Editorial */
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #1A1A1A;
  background-color: var(--agrion-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.65;
  letter-spacing: -0.01em;
}

/* Proteção contra download, arraste e cópia de imagens */
img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-touch-callout: none;
}


/* Tipografia */
.font-dm {
  font-family: 'DM Sans', sans-serif;
}

.font-amatic {
  font-family: 'Amatic SC', cursive;
}

/* Cabeçalhos & Taglines Editoriais */
.section-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--agrion-base);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-tagline::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 2px;
  background-color: var(--agrion-base);
}

.section-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.85rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3.25rem;
  }
}

/* ==========================================================================
   BOTOARIA EDITORIAL (VERMELHO KIDENDÊ & AMARELO SOLAR DOURADO)
   ========================================================================== */
.thm-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: var(--agrion-base);
  color: #FFFFFF !important;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 28px;
  border-radius: var(--agrion-radius);
  transition: all 0.25s ease;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid var(--agrion-base);
  box-shadow: none;
}

.thm-btn .btn-arrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--agrion-primary);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.thm-btn:hover {
  background-color: var(--agrion-primary);
  border-color: var(--agrion-primary);
  color: var(--agrion-dark) !important;
}

.thm-btn:hover .btn-arrow-icon {
  color: var(--agrion-dark);
  transform: translateX(4px);
}

.thm-btn--gold {
  background-color: var(--agrion-primary);
  border-color: var(--agrion-primary);
  color: var(--agrion-dark) !important;
}

.thm-btn--gold .btn-arrow-icon {
  color: var(--agrion-dark);
}

.thm-btn--gold:hover {
  background-color: var(--agrion-base);
  border-color: var(--agrion-base);
  color: #FFFFFF !important;
}

.thm-btn--gold:hover .btn-arrow-icon {
  color: var(--agrion-primary);
}

.thm-btn--dark {
  background-color: var(--agrion-dark);
  border-color: var(--agrion-dark);
  color: #FFFFFF !important;
}

.thm-btn--dark:hover {
  background-color: var(--agrion-primary);
  border-color: var(--agrion-primary);
  color: var(--agrion-dark) !important;
}

.thm-btn--outline {
  background-color: transparent;
  color: var(--agrion-base) !important;
  border: 1px solid var(--agrion-base);
}

.thm-btn--outline:hover {
  background-color: var(--agrion-base);
  color: #FFFFFF !important;
}

.thm-btn--white {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  color: var(--agrion-base) !important;
}

.thm-btn--white:hover {
  background-color: var(--agrion-primary);
  border-color: var(--agrion-primary);
  color: var(--agrion-dark) !important;
}

/* ==========================================================================
   ESTRUTURA DE CATEGORIAS EM DESTAQUE (RÉGUA EDITORIAL INDEXADA)
   ========================================================================== */
.category-highlight-card {
  background: #FFFFFF;
  border: 1px solid var(--agrion-border);
  border-radius: var(--agrion-radius);
  padding: 32px 28px;
  transition: border-color 0.25s ease, background-color 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.category-highlight-card:hover {
  border-color: var(--agrion-primary);
  background-color: #FFFFFF;
}

.category-highlight-card .img-box {
  background-color: #FFFDF7;
  border-radius: var(--agrion-radius);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid #F5EEDB;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.category-highlight-card:hover .img-box {
  background-color: #FFF8E7;
  border-color: #FDE68A;
}

.category-highlight-card .img-box img {
  max-height: 160px;
  width: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.category-highlight-card:hover .img-box img {
  transform: scale(1.05);
}

/* ==========================================================================
   SELO ARQUITETÔNICO DE METADADOS DA FÁBRICA (SOBRE NÓS)
   ========================================================================== */
.experience-badge {
  background-color: var(--agrion-base);
  color: #FFFFFF;
  padding: 24px 28px;
  border-radius: var(--agrion-radius);
  border-left: 4px solid var(--agrion-primary);
  text-align: left;
}

/* ==========================================================================
   DIFERENCIAIS — ARQUITETURA DE GRADE LINEAR (DIVIDE-X)
   ========================================================================== */
.differential-item {
  padding: 32px 28px;
  transition: background-color 0.25s ease;
  position: relative;
}

.differential-item:hover {
  background-color: #FFFDF9;
}

.differential-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--agrion-base);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  display: block;
}

/* ==========================================================================
   CATÁLOGO DE PRODUTOS — ATELIER GRID
   ========================================================================== */
.product-card-agro {
  background: #FFFFFF;
  border: 1px solid var(--agrion-border);
  border-radius: var(--agrion-radius);
  overflow: hidden;
  transition: border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card-agro:hover {
  border-color: var(--agrion-primary);
}

.product-card-agro .img-holder {
  background-color: #FFFDF7;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 24px;
  border-bottom: 1px solid var(--agrion-border);
}

.product-card-agro .img-holder img {
  max-height: 190px;
  width: auto;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.product-card-agro:hover .img-holder img {
  transform: scale(1.05);
}

/* ==========================================================================
   FILTROS DE CATEGORIA (ESTILO RÉGUA EDITORIAL)
   ========================================================================== */
.category-btn-pill {
  padding: 12px 20px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--agrion-radius);
  border: 1px solid var(--agrion-border);
  background: #FFFFFF;
  color: #576574;
  transition: all 0.2s ease;
  cursor: pointer;
}

.category-btn-pill:hover {
  border-color: var(--agrion-base);
  color: var(--agrion-base);
}

.category-btn-pill.active {
  background-color: var(--agrion-base);
  color: #FFFFFF;
  border-color: var(--agrion-base);
}

/* ==========================================================================
   CARROSSEL INFINITO MARCAS PARCEIRAS
   ========================================================================== */
.marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  user-select: none;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.marquee-track {
  display: flex;
  width: max-content;
}

.marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  animation: marqueeLoop 24s linear infinite;
  will-change: transform;
}

.marquee-track:hover .marquee-group {
  animation-play-state: paused;
}

@keyframes marqueeLoop {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ==========================================================================
   MODAL DE FICHA TÉCNICA
   ========================================================================== */
.modal-backdrop {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.modal-content-box {
  transform: scale(0.98);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: var(--agrion-radius);
  border: 1px solid var(--agrion-border);
}

.modal-backdrop.open .modal-content-box {
  transform: scale(1);
}

/* ==========================================================================
   INPUTS & FORMULÁRIOS CORPORATIVOS
   ========================================================================== */
.form-input-agro {
  background-color: #FFFFFF;
  border: 1px solid var(--agrion-border);
  border-radius: var(--agrion-radius);
  padding: 14px 16px;
  font-size: 0.9375rem;
  color: #1A1A1A;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.form-input-agro:focus {
  outline: none;
  border-color: var(--agrion-base);
  box-shadow: 0 0 0 1px var(--agrion-base);
}

/* ==========================================================================
   WHATSAPP FLUTUANTE
   ========================================================================== */
.whatsapp-floating {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #25D366;
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: var(--agrion-radius);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.25s ease;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.whatsapp-floating:hover {
  background-color: var(--agrion-base);
  border-color: var(--agrion-primary);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* ==========================================================================
   MAPA DO BRASIL INTERATIVO & REPRESENTANTES (VERMELHO & AMARELO DENDÊ)
   ========================================================================== */
#mapa {
  max-width: 100%;
  height: auto;
  max-height: 440px;
  display: block;
  margin: 0 auto;
  user-select: none;
}

#mapa a.estado {
  cursor: pointer;
  outline: none;
  transition: opacity 0.2s ease;
}

#mapa a.estado path {
  fill: #6B1A1A; /* Vinho / Bordô profundo */
  stroke: #FFFFFF;
  stroke-width: 1.1;
  transition: fill 0.25s ease;
}

#mapa a.estado .circle {
  fill: #6B1A1A;
  stroke: #FFFFFF;
  stroke-width: 1.1;
  transition: fill 0.25s ease;
}

#mapa a.estado text {
  fill: #FFFFFF;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 11px;
  font-weight: 700;
  pointer-events: none;
  user-select: none;
  transition: fill 0.2s ease;
}

/* Estados com representação ativa (BA, PB, MG, CE, ES, RJ, SP) — Vermelho Kidendê Vibrante */
#mapa a.estado[data-active-rep="true"] path {
  fill: #C01E1E; /* Vermelho Kidendê Oficial */
  stroke: #FDBB04;
  stroke-width: 1.2;
}

#mapa a.estado[data-active-rep="true"] .circle {
  fill: #C01E1E;
  stroke: #FDBB04;
}

/* Hover em qualquer estado — Amarelo Solar Dourado Radiante */
#mapa a.estado:hover path {
  fill: #FDBB04 !important; /* Amarelo Ouro Solar */
  stroke: #C01E1E !important;
}

#mapa a.estado:hover .circle {
  fill: #FDBB04 !important;
  stroke: #C01E1E !important;
}

#mapa a.estado:hover text {
  fill: #7F1D1D;
  font-weight: 800;
}

/* Estado Ativo Selecionado — Amarelo Solar com Borda Vermelha Grossa */
#mapa a.estado.active path {
  fill: #FDBB04 !important;
  stroke: #C01E1E !important;
  stroke-width: 2.2 !important;
}

#mapa a.estado.active .circle {
  fill: #FDBB04 !important;
  stroke: #C01E1E !important;
  stroke-width: 2.2 !important;
}

#mapa a.estado.active text {
  fill: #7F1D1D;
  font-weight: 800;
}

/* Chips de Filtro Rápido */
.rep-chip {
  padding: 6px 14px;
  border-radius: var(--agrion-radius);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background-color: #FFFFFF;
  color: #475569;
  border: 1px solid var(--agrion-border);
  transition: all 0.2s ease;
  cursor: pointer;
}

.rep-chip:hover {
  border-color: var(--agrion-base);
  color: var(--agrion-base);
  background-color: #FFFDF9;
}

.rep-chip.active {
  background-color: var(--agrion-base);
  color: #FFFFFF;
  border-color: var(--agrion-base);
}

/* Card de Representante */
.rep-card {
  background: #FFFFFF;
  border: 1px solid var(--agrion-border);
  border-radius: var(--agrion-radius);
  padding: 24px;
  transition: border-color 0.2s ease;
  position: relative;
}

.rep-card:hover {
  border-color: var(--agrion-primary);
}

.rep-card.highlighted {
  border-color: var(--agrion-base);
  background: #FFFDF9;
}

/* ==========================================================================
   Seletor de Apresentação de Embalagem (Unidade / Fardo / Caixa)
   ========================================================================== */
.product-card-agro .img-holder {
  position: relative;
  background-color: #FAFAF9;
  border-bottom: 1px solid var(--agrion-border);
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem 2.5rem 1rem;
}

.product-card-agro .img-holder img {
  max-height: 190px;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.format-pills-bar {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  z-index: 5;
  padding: 0 8px;
}

.fmt-pill-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.95);
  color: #44403c;
  border: 1px solid #d6d3d1;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
  cursor: pointer;
  line-height: 1.2;
}

.fmt-pill-btn:hover {
  background: #ffffff;
  border-color: var(--agrion-base);
  color: var(--agrion-base);
}

.fmt-pill-btn.active {
  background: var(--agrion-base);
  color: #ffffff;
  border-color: var(--agrion-base);
  box-shadow: 0 1px 4px rgba(192, 30, 30, 0.35);
}

.modal-fmt-pill {
  font-family: 'DM Sans', sans-serif;
  border-radius: 2px;
  border-color: #d6d3d1;
  background: #ffffff;
  color: #44403c;
  cursor: pointer;
}

.modal-fmt-pill:hover {
  border-color: var(--agrion-base);
  color: var(--agrion-base);
}

.modal-fmt-pill.active {
  background: var(--agrion-base) !important;
  color: #ffffff !important;
  border-color: var(--agrion-base) !important;
}

/* ==========================================================================
   Carrossel de Produtos para "TODOS OS PRODUTOS" (Passando 4 por vez)
   ========================================================================== */
.products-carousel-viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 6px 2px 14px 2px;
}

.products-carousel-track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 24px !important;
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

/* Largura dos cards no modo carrossel (4 por tela no desktop) */
.products-carousel-track .product-card-agro {
  flex: 0 0 calc((100% - (3 * 24px)) / 4) !important;
  min-width: calc((100% - (3 * 24px)) / 4) !important;
  max-width: calc((100% - (3 * 24px)) / 4) !important;
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .products-carousel-track .product-card-agro {
    flex: 0 0 calc((100% - 24px) / 2) !important;
    min-width: calc((100% - 24px) / 2) !important;
    max-width: calc((100% - 24px) / 2) !important;
  }
}

@media (max-width: 640px) {
  .products-carousel-track .product-card-agro {
    flex: 0 0 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
  }
}

/* Setas flutuantes laterais do carrossel de produtos */
.products-carousel-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFFFFF;
  color: #C01E1E;
  border: 2px solid #E5E7EB;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 30;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.products-carousel-arrow:hover {
  background: #C01E1E;
  color: #FFFFFF;
  border-color: #C01E1E;
  box-shadow: 0 6px 20px rgba(192, 30, 30, 0.35);
  transform: translateY(-50%) scale(1.08);
}

.products-carousel-arrow:active {
  transform: translateY(-50%) scale(0.96);
}

.products-carousel-arrow--prev {
  left: -24px;
}

.products-carousel-arrow--next {
  right: -24px;
}

@media (max-width: 1280px) {
  .products-carousel-arrow--prev {
    left: 4px;
  }
  .products-carousel-arrow--next {
    right: 4px;
  }
}

@media (max-width: 640px) {
  .products-carousel-arrow {
    display: none;
  }
}

/* Dots da Paginação do Carrossel */
.products-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background-color: #D6D3D1;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  padding: 0;
}

.products-carousel-dot:hover {
  background-color: #A8A29E;
  transform: scale(1.2);
}

.products-carousel-dot.active {
  width: 26px;
  background-color: #C01E1E;
  border-radius: 6px;
}

/* ==========================================================================
   Hero Slider 100% Width e 600px de Altura
   ========================================================================== */
.hero-section-600 {
  width: 100%;
  height: 600px;
  min-height: 600px;
  background-color: #580F0F;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slider-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #580F0F;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  will-change: transform;
}

.hero-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

/* Slide Ativo (no centro da tela) */
.hero-slide.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  z-index: 2;
  transition: transform 0.75s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Slide saindo para a esquerda (ao avançar) */
.hero-slide.slide-to-left {
  transform: translateX(-100%);
  opacity: 1;
  visibility: visible;
  z-index: 1;
  transition: transform 0.75s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Slide saindo para a direita (ao voltar) */
.hero-slide.slide-to-right {
  transform: translateX(100%);
  opacity: 1;
  visibility: visible;
  z-index: 1;
  transition: transform 0.75s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Posicionamento instantâneo fora da tela (sem transição) */
.hero-slide.prepare-right {
  transform: translateX(100%);
  opacity: 1;
  visibility: visible;
  z-index: 2;
  transition: none !important;
}

.hero-slide.prepare-left {
  transform: translateX(-100%);
  opacity: 1;
  visibility: visible;
  z-index: 2;
  transition: none !important;
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}

@media (max-width: 1024px) {
  .hero-slide-img {
    object-position: 80% center;
  }
}

@media (max-width: 768px) {
  .hero-slide-img {
    object-position: center bottom;
  }
}



/* Scrim Gradient Vermelho Escuro com Alta Transparência */
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(88, 15, 15, 0.76) 0%,
    rgba(88, 15, 15, 0.62) 32%,
    rgba(127, 29, 29, 0.38) 55%,
    rgba(127, 29, 29, 0.12) 75%,
    rgba(88, 15, 15, 0.0) 100%
  );
}

@media (max-width: 1024px) {
  .hero-slide-overlay {
    background: linear-gradient(
      90deg,
      rgba(88, 15, 15, 0.80) 0%,
      rgba(88, 15, 15, 0.65) 40%,
      rgba(127, 29, 29, 0.30) 70%,
      rgba(88, 15, 15, 0.05) 100%
    );
  }
}

@media (max-width: 640px) {
  .hero-slide-overlay {
    background: linear-gradient(
      180deg,
      rgba(88, 15, 15, 0.82) 0%,
      rgba(88, 15, 15, 0.60) 50%,
      rgba(127, 29, 29, 0.25) 80%,
      rgba(88, 15, 15, 0.08) 100%
    );
  }
}

.hero-text-shadow {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}


/* Setas Laterais de Controle do Slide (Esquerda e Direita) */
.hero-arrow-btn {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 5, 5, 0.45);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  backdrop-filter: blur(6px);
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.hero-arrow-btn:hover {
  background: var(--agrion-primary);
  border-color: var(--agrion-primary);
  color: #580F0F;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 16px rgba(253, 187, 4, 0.35);
}

@media (max-width: 640px) {
  .hero-arrow-btn {
    width: 38px;
    height: 38px;
  }
}

/* Botão Branco Vazado para Fundo Escuro */
.thm-btn--outline-white {
  background-color: transparent;
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.thm-btn--outline-white:hover {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  color: #580F0F !important;
}

.thm-btn--outline-white .btn-arrow-icon {
  color: #FFFFFF;
}

.thm-btn--outline-white:hover .btn-arrow-icon {
  color: #580F0F;
}



