/* =========================================================
   RESET BÁSICO
   ========================================================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:#202428;
  background:#ffffff;
}

/* =========================================================
   CONTAINER PADRÃO
   ========================================================= */
.container{
  max-width:1180px;
  margin:auto;
  padding:0 20px;
}

/* =========================================================
   TIPOGRAFIA
   ========================================================= */
h1,h2,h3,h4{
  font-weight:600;
  letter-spacing:-0.02em;
  color:#202428;
}

h1{ line-height:1.08; }
h2{ line-height:1.12; }
h3,h4{ line-height:1.2; }

p{
  line-height:1.6;
  color:#5f6670;
}

/* =========================================================
   BOTÕES
   ========================================================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:12px 22px;
  border-radius:999px;
  font-weight:700;
  letter-spacing:.2px;
  text-decoration:none;
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    filter .2s ease,
    background-color .2s ease,
    color .2s ease,
    border-color .2s ease;
}

.btn-primary{
  background:linear-gradient(135deg,#f8ba0c 0%,#ffcf42 100%);
  color:#262725;
}

.btn-secondary{
  border:2px solid #f8ba0c;
  color:#262725;
  background:transparent;
}

.btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 22px rgba(0,0,0,.14);
  filter:brightness(1.02);
}

/* =========================================================
   ANIMAÇÃO BASE
   ========================================================= */
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(20px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

section{
  animation:none;
}

.home-produtos-wrapper,
#home-diferenciais,
#home-sobre,
#home-cta{
  animation:fadeUp .8s ease both;
}

/* =========================================================
   TOPO / BANNER / SLIDER
   ========================================================= */
#section-slide{
  position:relative;
  overflow:hidden;
  background:transparent;
}

#section-slide::after{
  display:none !important;
  content:none !important;
}

#section-slide .owl-carousel,
#section-slide .owl-stage-outer,
#section-slide .owl-stage,
#section-slide .owl-item,
#section-slide .item,
#section-slide .banner-item{
  position:relative;
}

#section-slide .owl-item-text{
  position:absolute !important;
  left:0 !important;
  right:0 !important;
  top:auto !important;
  bottom:18px !important;
  transform:none !important;
  margin:0 !important;
  z-index:5 !important;
  width:100% !important;
  height:auto !important;
  pointer-events:none;
}

#section-slide .owl-item-text .owl-item-text-content{
  position:static !important;
  transform:none !important;
  margin:0 !important;
  padding:0 20px !important;
  width:100% !important;
  text-align:center !important;
  pointer-events:none;
}

#section-slide .owl-item-text .owl-item-text-content .botao-slide{
  position:static !important;
  transform:none !important;
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
  width:100% !important;
  margin:0 !important;
  pointer-events:auto;
}

#section-slide .btn-slide,
#section-slide .owl-item-text .owl-item-text-content .botao-slide .btn.btn-slide{
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:12px 34px;
  border-radius:999px;
  background:rgba(248,186,12,.82);
  color:#262725 !important;
  border:1px solid rgba(248,186,12,.42);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  font-weight:800;
  font-size:14px;
  letter-spacing:.4px;
  text-transform:uppercase;
  text-decoration:none;
  box-shadow:0 10px 24px rgba(0,0,0,.18);
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background-color .2s ease,
    border-color .2s ease,
    color .2s ease,
    filter .2s ease;
}

#section-slide .btn-slide:hover,
#section-slide .owl-item-text .owl-item-text-content .botao-slide .btn.btn-slide:hover{
  transform:translateY(-1px);
  box-shadow:0 14px 28px rgba(0,0,0,.22);
  background:rgba(248,186,12,.96);
  border-color:rgba(248,186,12,.96);
  color:#262725 !important;
  filter:brightness(1.02);
}

/* =========================================================
   HOME - BUSCA
   ========================================================= */
#home-search{
  padding:18px 0 26px !important;
}

#home-search .home-search-form{
  background:#f5f5f5 !important;
  border:1px solid rgba(20,24,32,.06) !important;
  border-radius:22px !important;
  padding:16px !important;
  box-shadow:
    0 14px 34px rgba(0,0,0,.08),
    0 3px 10px rgba(0,0,0,.04),
    inset 0 1px 0 rgba(255,255,255,.75) !important;
}

#home-search .home-search-link{
  display:flex !important;
  align-items:center !important;
  width:100% !important;
  min-height:64px !important;
  padding:0 24px !important;
  border-radius:999px !important;
  text-decoration:none !important;
  background:linear-gradient(180deg,#ffffff 0%,#fbfbfb 100%) !important;
  border:1.5px solid #f0b400 !important;
  color:#f0b400 !important;
  font-family:"Source Sans Pro",sans-serif !important;
  font-size:18px !important;
  font-weight:700 !important;
  letter-spacing:.2px !important;
  box-shadow:
    0 10px 24px rgba(0,0,0,.10),
    0 2px 6px rgba(0,0,0,.05),
    inset 0 1px 0 rgba(255,255,255,.92) !important;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease,
    color .22s ease !important;
}

#home-search .home-search-link:hover{
  transform:translateY(-1px) !important;
  box-shadow:
    0 16px 34px rgba(0,0,0,.12),
    0 4px 10px rgba(0,0,0,.06),
    inset 0 1px 0 rgba(255,255,255,.95) !important;
  border-color:#e3a800 !important;
  color:#d79f00 !important;
}

#home-search .home-search-link:focus{
  outline:none !important;
  box-shadow:
    0 0 0 4px rgba(248,186,12,.16),
    0 14px 30px rgba(0,0,0,.10) !important;
}

/* =========================================================
   HOME - CATEGORIAS
   ========================================================= */
.home-categorias-grid{
  margin-top:8px !important;
}

.home-categorias-grid > [class*="col-"]{
  display:flex !important;
}

.home-categorias-grid .categoria{
  width:100% !important;
  display:flex !important;
  flex-direction:column !important;
  height:100% !important;
  background:#ffffff !important;
  border:1px solid rgba(20,24,32,.08) !important;
  border-radius:18px !important;
  overflow:hidden !important;
  box-shadow:0 12px 28px rgba(0,0,0,.08) !important;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease !important;
}

.home-categorias-grid .categoria:hover{
  transform:translateY(-4px) !important;
  box-shadow:0 18px 36px rgba(0,0,0,.14) !important;
  border-color:rgba(248,186,12,.22) !important;
}

.home-categorias-grid .categoria > a{
  display:block !important;
}

.home-categorias-grid .categoria__nome{
  display:block !important;
  width:100% !important;
  height:210px !important;
  object-fit:cover !important;
  object-position:center center !important;
  margin:0 auto !important;
}

.home-categorias-grid .categoria__texto{
  display:flex !important;
  flex-direction:column !important;
  flex:1 !important;
  padding:18px 18px 20px !important;
  text-align:center !important;
}

.home-categorias-grid .categoria__texto h4{
  margin:0 0 10px !important;
  min-height:50px !important;
  font-family:"Source Sans Pro",sans-serif !important;
  font-size:18px !important;
  font-weight:800 !important;
  line-height:1.25 !important;
}

.home-categorias-grid .categoria__texto h4 a{
  color:#2747ff !important;
  text-decoration:none !important;
}

.home-categorias-grid .categoria__texto p{
  margin:0 !important;
  color:#5f656c !important;
  font-family:"Source Sans Pro",sans-serif !important;
  font-size:15px !important;
  line-height:1.7 !important;
  flex:1 !important;
}

/* =========================================================
   DESKTOP - AJUSTES HOME
   ========================================================= */
@media (min-width: 992px){

  #section-slide{
    margin-bottom:18px !important;
  }

  #home-search{
    padding-top:8px !important;
    padding-bottom:18px !important;
  }

  .home-categorias-grid{
    margin-top:10px !important;
    margin-bottom:28px !important;
  }

  .home-categorias-grid > .col-lg-3{
    padding-left:8px !important;
    padding-right:8px !important;
  }

  .home-categorias-grid .categoria{
    box-shadow:0 12px 26px rgba(0,0,0,.08) !important;
  }

  .home-categorias-grid .categoria__nome{
    height:170px !important;
  }

  .home-categorias-grid .categoria__texto{
    padding:14px 14px 16px !important;
  }

  .home-categorias-grid .categoria__texto h4{
    font-size:14px !important;
    min-height:38px !important;
    line-height:1.25 !important;
    margin-bottom:8px !important;
  }

  .home-categorias-grid .categoria__texto p{
    font-size:12px !important;
    line-height:1.5 !important;
  }

  #home-sobre{
    padding-top:18px !important;
    padding-bottom:24px !important;
  }

  #home-diferenciais{
    padding-top:18px !important;
    padding-bottom:24px !important;
  }

  #home-cta{
    padding-top:14px !important;
    padding-bottom:24px !important;
  }

  .home-produtos-wrapper,
  #home-produtos{
    padding-top:10px !important;
    padding-bottom:24px !important;
    margin-top:0 !important;
  }

  #home-contato,
  .home-contato{
    padding-top:22px !important;
    padding-bottom:28px !important;
  }

  #home-contato h2,
  .home-contato h2{
    margin-bottom:18px !important;
    font-size:22px !important;
    font-weight:800 !important;
    text-align:center !important;
  }

  #home-contato form,
  .home-contato form{
    max-width:860px !important;
    margin:0 auto !important;
  }

  #home-contato input,
  #home-contato textarea,
  .home-contato input,
  .home-contato textarea{
    background:transparent !important;
    border:0 !important;
    border-bottom:1.5px solid rgba(240,180,0,.55) !important;
    border-radius:0 !important;
    box-shadow:none !important;
    font-size:14px !important;
    padding-left:0 !important;
    padding-right:0 !important;
    color:#202428 !important;
  }

  #home-contato input::placeholder,
  #home-contato textarea::placeholder,
  .home-contato input::placeholder,
  .home-contato textarea::placeholder{
    color:#8d939a !important;
  }

  #home-contato input:focus,
  #home-contato textarea:focus,
  .home-contato input:focus,
  .home-contato textarea:focus{
    border-bottom-color:#f0b400 !important;
    box-shadow:none !important;
    outline:none !important;
  }

  #home-contato textarea,
  .home-contato textarea{
    min-height:90px !important;
    resize:vertical !important;
  }

  #home-contato .btn,
  #home-contato button,
  .home-contato .btn,
  .home-contato button{
    min-width:220px !important;
    min-height:42px !important;
    border-radius:999px !important;
    font-size:13px !important;
    font-weight:800 !important;
    margin-top:10px !important;
    box-shadow:0 8px 18px rgba(0,0,0,.10) !important;
  }
}

/* =========================================================
   TABLET / DESKTOP MÉDIO
   ========================================================= */
@media (min-width: 768px) and (max-width: 991px){

  .home-categorias-grid .categoria__nome{
    height:250px !important;
  }

  .home-categorias-grid .categoria__texto{
    padding:14px 18px 16px !important;
  }

  .home-categorias-grid .categoria__texto h4{
    margin:0 0 10px !important;
    min-height:42px !important;
  }

  .home-categorias-grid .categoria__texto p{
    line-height:1.5 !important;
  }
}

/* =========================================================
   MOBILE - HOME
   ========================================================= */
@media (max-width: 767px){

  #home-search{
    padding:16px 0 18px !important;
  }

  #home-search .home-search-form{
    padding:12px !important;
    border-radius:18px !important;
  }

  #home-search .home-search-link{
    min-height:56px !important;
    padding:0 18px !important;
    font-size:15px !important;
  }

  .home-categorias-grid .categoria{
    border-radius:16px !important;
  }

  .home-categorias-grid .categoria__nome{
    height:250px !important;
  }

  .home-categorias-grid .categoria__texto{
    padding:18px 16px 20px !important;
  }

  .home-categorias-grid .categoria__texto h4{
    min-height:auto !important;
    font-size:17px !important;
  }

  .home-categorias-grid .categoria__texto p{
    font-size:15px !important;
    line-height:1.65 !important;
  }
}

@media (max-width: 420px){
  .home-categorias-grid .categoria__nome{
    height:230px !important;
  }
}

/* =========================================================
   HOME - NOSSOS PRODUTOS (SELETOR REAL PELO DOM)
   ========================================================= */
@media (max-width: 767px){

  body#page_home #section-produtos .card{
    overflow:hidden !important;
  }

  body#page_home #section-produtos img.card-img-top{
    width:100% !important;
    height:450px !important;
    object-fit:cover !important;
    object-position:center top !important;
    display:block !important;
  }
}

@media (min-width: 768px){

  body#page_home #section-produtos img.card-img-top{
    width:100% !important;
    height:205px !important;
    object-fit:cover !important;
    object-position:center top !important;
    display:block !important;
  }

  body#page_home #section-produtos .row > [class*="col-"]{
    display:flex !important;
  }

  body#page_home #section-produtos .card.card-produtos{
    display:flex !important;
    flex-direction:column !important;
    width:100% !important;
    height:100% !important;
    overflow:hidden !important;
  }

  body#page_home #section-produtos .card-body{
    display:flex !important;
    flex-direction:column !important;
    height:100% !important;
  }

  body#page_home #section-produtos .card-content{
    display:flex !important;
    flex-direction:column !important;
    flex:1 !important;
    margin-top:0 !important;
  }

  body#page_home #section-produtos .card-title{
    min-height:58px !important;
    line-height:1.2 !important;
    margin-bottom:10px !important;
  }

  body#page_home #section-produtos .card-description{
    flex:1 !important;
    margin-bottom:14px !important;
    line-height:1.5 !important;
  }

  body#page_home #section-produtos .card-content > p:last-child{
    margin-top:auto !important;
  }
}

/* =========================================================
   PÁGINA PRODUTOS
   ========================================================= */
@media (max-width: 767px){

  body#page_produtos #section-produtos .container{
    padding-top:16px !important;
    margin-top:0 !important;
  }

  body#page_produtos #section-produtos .container > .row{
    display:flex !important;
    flex-direction:column !important;
  }

  body#page_produtos .produtos-sidebar{
    display:block !important;
    order:1 !important;
    padding-top:0 !important;
    margin-bottom:18px !important;
  }

  body#page_produtos #section-produtos .col-lg-8{
    order:2 !important;
    margin-bottom:0 !important;
  }

  body#page_produtos .produtos-sidebar .mt-2,
  body#page_produtos .produtos-sidebar .mt-4{
    margin-top:0 !important;
  }

  body#page_produtos .produtos-sidebar .mt-3{
    margin-top:0.75rem !important;
  }

  body#page_produtos .produtos-sidebar .py-0,
  body#page_produtos .produtos-sidebar .py-1{
    padding-top:0 !important;
    padding-bottom:0 !important;
  }

  body#page_produtos #section-produtos .card{
    overflow:hidden !important;
  }

  body#page_produtos #section-produtos img.card-img-top{
    width:100% !important;
    height:450px !important;
    object-fit:cover !important;
    object-position:center top !important;
    display:block !important;
  }
}
/* ========================================
   MOBILE - HOME + PÁGINA PRODUTOS
   ======================================== */
@media (max-width: 767px){

  .home-produtos-wrapper .card,
  #home-produtos .card,
  body#page_produtos #section-produtos .card{
    overflow: hidden !important;
  }

  .home-produtos-wrapper img.card-img-top,
  #home-produtos img.card-img-top,
  body#page_produtos #section-produtos img.card-img-top{
    width: 100% !important;
    height: 450px !important;
    object-fit: cover !important;
    object-position: center top !important;
    display: block !important;
  }

  /* mantém busca/categorias acima dos produtos na página produtos */
  body#page_produtos #section-produtos .container{
    padding-top: 16px !important;
    margin-top: 0 !important;
  }

  body#page_produtos #section-produtos .container > .row{
    display: flex !important;
    flex-direction: column !important;
  }

  body#page_produtos .produtos-sidebar{
    display: block !important;
    order: 1 !important;
    padding-top: 0 !important;
    margin-bottom: 18px !important;
  }

  body#page_produtos #section-produtos .col-lg-8{
    order: 2 !important;
    margin-bottom: 0 !important;
  }

  body#page_produtos .produtos-sidebar .mt-2,
  body#page_produtos .produtos-sidebar .mt-4{
    margin-top: 0 !important;
  }

  body#page_produtos .produtos-sidebar .mt-3{
    margin-top: 0.75rem !important;
  }

  body#page_produtos .produtos-sidebar .py-0,
  body#page_produtos .produtos-sidebar .py-1{
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}

/* ========================================
   WEB - HOME + PÁGINA PRODUTOS
   ======================================== */
@media (min-width: 768px){

  .home-produtos-wrapper img.card-img-top,
  #home-produtos img.card-img-top,
  body#page_produtos #section-produtos img.card-img-top{
    width: 100% !important;
    height: 205px !important;
    object-fit: cover !important;
    object-position: center top !important;
    display: block !important;
  }

  .home-produtos-wrapper .card,
  #home-produtos .card,
  body#page_produtos #section-produtos .card.card-produtos{
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
  }

  .home-produtos-wrapper .card-body,
  #home-produtos .card-body,
  body#page_produtos #section-produtos .card-body{
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    height: 100% !important;
  }

  .home-produtos-wrapper .card-content,
  #home-produtos .card-content,
  body#page_produtos #section-produtos .card-content{
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    margin-top: 0 !important;
  }

  .home-produtos-wrapper .card-title,
  #home-produtos .card-title,
  body#page_produtos #section-produtos .card-title{
    min-height: 58px !important;
    line-height: 1.2 !important;
    margin-bottom: 10px !important;
  }

  .home-produtos-wrapper .card-description,
  #home-produtos .card-description,
  .home-produtos-wrapper .card-text,
  #home-produtos .card-text,
  body#page_produtos #section-produtos .card-description{
    flex: 1 !important;
    margin-bottom: 14px !important;
    line-height: 1.5 !important;
  }

  .home-produtos-wrapper .card-content > p:last-child,
  #home-produtos .card-content > p:last-child,
  body#page_produtos #section-produtos .card-content > p:last-child{
    margin-top: auto !important;
  }

  /* alinhamento consistente da página produtos no desktop */
  body#page_produtos #section-produtos .col-lg-8 > .row{
    display: flex !important;
    flex-wrap: wrap !important;
  }

  body#page_produtos #section-produtos .col-lg-8 > .row > [class*="col-"]{
    display: flex !important;
  }
}
/* ========================================
   HOME - CORREÇÃO FINAL DAS IMAGENS
   ======================================== */

/* esconde linha/legenda logo após a imagem, se existir */
.home-produtos-wrapper .card img.card-img-top + small,
.home-produtos-wrapper .card img.card-img-top + .small,
.home-produtos-wrapper .card img.card-img-top + span,
.home-produtos-wrapper .card img.card-img-top + figcaption,
.home-produtos-wrapper .card img.card-img-top + p,
.home-produtos-wrapper .card .caption,
.home-produtos-wrapper .card .legenda,
.home-produtos-wrapper .card .wp-caption-text,

#home-produtos .card img.card-img-top + small,
#home-produtos .card img.card-img-top + .small,
#home-produtos .card img.card-img-top + span,
#home-produtos .card img.card-img-top + figcaption,
#home-produtos .card img.card-img-top + p,
#home-produtos .card .caption,
#home-produtos .card .legenda,
#home-produtos .card .wp-caption-text{
  display: none !important;
}

/* ---------- HOME MOBILE ---------- */
@media (max-width: 767px){

  .home-produtos-wrapper .card,
  #home-produtos .card{
    overflow: hidden !important;
  }

  .home-produtos-wrapper img.card-img-top,
  #home-produtos img.card-img-top{
    width: 100% !important;
    height: 450px !important;
    object-fit: cover !important;
    object-position: center top !important;
    display: block !important;
  }
}

/* ---------- HOME WEB ---------- */
@media (min-width: 768px){

  .home-produtos-wrapper img.card-img-top,
  #home-produtos img.card-img-top{
    width: 100% !important;
    height: 205px !important;
    object-fit: cover !important;
    object-position: center top !important;
    display: block !important;
  }

  .home-produtos-wrapper .card,
  #home-produtos .card{
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    overflow: hidden !important;
  }

  .home-produtos-wrapper .card-body,
  #home-produtos .card-body{
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
  }

  .home-produtos-wrapper .card-content,
  #home-produtos .card-content{
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    margin-top: 0 !important;
  }

  .home-produtos-wrapper .card-title,
  #home-produtos .card-title{
    min-height: 58px !important;
    line-height: 1.2 !important;
    margin-bottom: 10px !important;
  }

  .home-produtos-wrapper .card-description,
  #home-produtos .card-description,
  .home-produtos-wrapper .card-text,
  #home-produtos .card-text{
    flex: 1 !important;
    margin-bottom: 14px !important;
    line-height: 1.5 !important;
  }

  .home-produtos-wrapper .card-content > p:last-child,
  #home-produtos .card-content > p:last-child{
    margin-top: auto !important;
  }
}
/* =========================================================
   HOME - NOSSOS PRODUTOS
   SELETOR REAL PELO DOM
   ========================================================= */

/* ---------- HOME MOBILE ---------- */
@media (max-width: 767px){

  body#page_home #section-produtos .card{
    overflow: hidden !important;
  }

  body#page_home #section-produtos img.card-img-top{
    width: 100% !important;
    height: 450px !important;
    object-fit: cover !important;
    object-position: center top !important;
    display: block !important;
  }
}

/* ---------- HOME WEB ---------- */
@media (min-width: 768px){

  body#page_home #section-produtos img.card-img-top{
    width: 100% !important;
    height: 205px !important;
    object-fit: cover !important;
    object-position: center top !important;
    display: block !important;
  }

  body#page_home #section-produtos .row > [class*="col-"]{
    display: flex !important;
  }

  body#page_home #section-produtos .card.card-produtos{
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
  }

  body#page_home #section-produtos .card-body{
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
  }

  body#page_home #section-produtos .card-content{
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    margin-top: 0 !important;
  }

  body#page_home #section-produtos .card-title{
    min-height: 58px !important;
    line-height: 1.2 !important;
    margin-bottom: 10px !important;
  }

  body#page_home #section-produtos .card-description{
    flex: 1 !important;
    margin-bottom: 14px !important;
    line-height: 1.5 !important;
  }

  body#page_home #section-produtos .card-content > p:last-child{
    margin-top: auto !important;
  }
}
/* =========================================================
   ÍCONES REDES SOCIAIS - MAIS ESPAÇO
   ========================================================= */

/* bloco das redes */
.social-icons,
.redes-sociais,
.footer-social,
.header-social,
.menu-redes,
.midias-sociais{
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;           /* espaço entre os ícones */
  margin-left: 18px !important;   /* distância do menu */
}

/* links/ícones */
.social-icons a,
.redes-sociais a,
.footer-social a,
.header-social a,
.menu-redes a,
.midias-sociais a{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
}

/* se estiver usando lista */
.social-icons li,
.redes-sociais li,
.footer-social li,
.header-social li,
.menu-redes li,
.midias-sociais li{
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
/* =========================================================
   WHATSAPP FLUTUANTE - INTERATIVO (INCHA + BRILHA)
   ========================================================= */
button.btn.btn-success.btn-whatsapp[data-content="bloco_whats"]{
  position: fixed !important;
  right: 34px !important;
  bottom: 34px !important;
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  min-height: 56px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #25D366 !important;
  box-shadow: 0 10px 24px rgba(0,0,0,.18) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 999 !important;

  /* animação base */
  animation: whatsPulse 2.8s ease-in-out infinite;
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    filter .25s ease,
    background-color .25s ease !important;
}

/* remove qualquer pseudo-elemento estranho */
button.btn.btn-success.btn-whatsapp[data-content="bloco_whats"]::before,
button.btn.btn-success.btn-whatsapp[data-content="bloco_whats"]::after{
  display: none !important;
  content: none !important;
}

/* ícone branco centralizado */
button.btn.btn-success.btn-whatsapp[data-content="bloco_whats"] i.mdi.mdi-whatsapp{
  color: #ffffff !important;
  font-size: 28px !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

button.btn.btn-success.btn-whatsapp[data-content="bloco_whats"]{
  animation: whatsPulse 2.7s ease-in-out infinite;
}

/* HOVER DESKTOP */
button.btn.btn-success.btn-whatsapp[data-content="bloco_whats"]:hover{
  transform: scale(1.18) translateY(-2px) !important;
  box-shadow:
    0 18px 36px rgba(0,0,0,.28),
    0 0 0 4px rgba(37,211,102,.21) !important;
}

/* TOQUE MOBILE */
button.btn.btn-success.btn-whatsapp[data-content="bloco_whats"]:active{
  transform: scale(1.12) !important;
  box-shadow:
    0 14px 30px rgba(0,0,0,.25),
    0 0 0 3px rgba(37,211,102,.21) !important;
}

/* ANIMAÇÃO CONTÍNUA (RESPIRAÇÃO MAIS FOFA) */
@keyframes whatsPulse{
  0%{
    transform: scale(1);
  }
  50%{
    transform: scale(1.18);
  }
  100%{
    transform: scale(1);
  }
}

/* MOBILE */
@media (max-width: 767px){
  button.btn.btn-success.btn-whatsapp[data-content="bloco_whats"]{
    right: 20px !important;
    bottom: 20px !important;
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    min-height: 54px !important;
    animation-duration: 4s; /* mais suave no mobile */
  }

  button.btn.btn-success.btn-whatsapp[data-content="bloco_whats"] i.mdi.mdi-whatsapp{
    font-size: 26px !important;
  }
}
/* =========================================================
   PRODUTOS - TÍTULO DO BANNER
   BRANCO, MAS COM PESO ORIGINAL
   ========================================================= */
body#page_produtos h1.text-color-secondary.font-weight-bold[data-content="menu_produtos"]{
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  opacity: 1 !important;
  font-weight: 600 !important; /* mantém o peso mais próximo do original */
  text-shadow: 0 2px 10px rgba(0,0,0,.45) !important;
  position: relative !important;
  z-index: 5 !important;
}

/* fundo do banner um pouco mais escuro só para dar contraste */
body#page_produtos section#capa_menu_produtos{
  position: relative !important;
}

body#page_produtos section#capa_menu_produtos::before{
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: rgba(0,0,0,.22) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

body#page_produtos section#capa_menu_produtos > .container,
body#page_produtos section#capa_menu_produtos .capa-titulo-text-center,
body#page_produtos section#capa_menu_produtos h1{
  position: relative !important;
  z-index: 2 !important;
}
/* =========================================================
   BLOG - TÍTULO DO BANNER
   ========================================================= */

/* título */
body#page_blog h1.text-color-secondary.font-weight-bold[data-content="menu_blog"]{
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  opacity: 1 !important;
  font-weight: 600 !important;
  text-shadow: 0 2px 10px rgba(0,0,0,.45) !important;
  position: relative !important;
  z-index: 5 !important;
}

/* overlay do banner */
body#page_blog section#capa_menu_blog{
  position: relative !important;
}

body#page_blog section#capa_menu_blog::before{
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: rgba(0,0,0,.22) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

body#page_blog section#capa_menu_blog > .container,
body#page_blog section#capa_menu_blog .capa-titulo-text-center,
body#page_blog section#capa_menu_blog h1{
  position: relative !important;
  z-index: 2 !important;
}
/* =========================================================
   A EMPRESA - TÍTULO DO BANNER (SELETOR EXATO)
   ========================================================= */
body#page_a_empresa h1.text-color-secondary.font-weight-bold[data-content="menu_empresa"]{
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  opacity: 1 !important;
  font-weight: 600 !important; /* mantém mais próximo do original */
  text-shadow: 0 2px 10px rgba(0,0,0,.45) !important;
  position: relative !important;
  z-index: 5 !important;
}

/* escurece levemente o banner para dar contraste */
body#page_a_empresa section#capa_menu_empresa{
  position: relative !important;
}

body#page_a_empresa section#capa_menu_empresa::before{
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: rgba(0,0,0,.24) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

body#page_a_empresa section#capa_menu_empresa > .container,
body#page_a_empresa section#capa_menu_empresa .capa-titulo-text-center,
body#page_a_empresa section#capa_menu_empresa h1{
  position: relative !important;
  z-index: 2 !important;
}
/* =========================================================
   HOME - HOVER INTERATIVO NOS PRODUTOS
   ========================================================= */
@media (min-width: 768px){

  body#page_home #section-produtos .card{
    transition: transform .35s ease, box-shadow .35s ease !important;
  }

  body#page_home #section-produtos .card img{
    transition: transform .5s ease !important;
  }

  body#page_home #section-produtos .card:hover{
    transform: translateY(-6px) !important;
    box-shadow: 0 18px 36px rgba(0,0,0,.25) !important;
  }

  body#page_home #section-produtos .card:hover img{
    transform: scale(1.18) !important;
  }
}
/* =========================================================
   PÁGINA PRODUTOS - HOVER INTERATIVO
   ========================================================= */
@media (min-width: 768px){

  body#page_produtos #section-produtos .card{
    transition: transform .35s ease, box-shadow .35s ease !important;
  }

  body#page_produtos #section-produtos .card img{
    transition: transform .6s ease !important;
  }

  body#page_produtos #section-produtos .card:hover{
    transform: translateY(-5px) !important;
    box-shadow: 0 18px 36px rgba(0,0,0,.25) !important;
  }

  body#page_produtos #section-produtos .card:hover img{
    transform: scale(1.18) !important;
  }
}
/* =========================================================
   HOME - CATEGORIAS | INTERAÇÃO MOBILE
   ========================================================= */
@media (max-width: 767px){

  /* estado de toque */
  .home-categorias-grid .categoria:active,
  .home-categorias-grid .categoria:focus-within{
    transform: scale(0.97);
    box-shadow: 0 8px 18px rgba(0,0,0,.20);
  }

  .home-categorias-grid .categoria__nome{
    transition: transform .25s ease;
  }

  .home-categorias-grid .categoria:active .categoria__nome,
  .home-categorias-grid .categoria:focus-within .categoria__nome{
    transform: scale(1.10);
  }
}
/* =========================================================
   HOME - BANNER | MOVIMENTO CONTÍNUO (CSS ONLY)
   ========================================================= */
#section-slide .owl-item.active img,
#section-slide .owl-item.active .banner-item img{
  animation: bannerKenBurns 10s ease-in-out infinite alternate;
  transform-origin: center center;
}

@keyframes bannerKenBurns{
  from{
    transform: scale(1);
  }
  to{
    transform: scale(1.08);
  }
}
/* =========================================================
   HOME - BANNER | PARALLAX LEVE (CSS ONLY)
   ========================================================= */
#section-slide .owl-item.active{
  overflow: hidden;
}

#section-slide .owl-item.active img,
#section-slide .owl-item.active .banner-item img{
  will-change: transform;
  transition: transform 6s ease;
}
