/* CSS FOOTER */

/* =========================
   CS FOOTER (isolado)
   ========================= */

.cs-footer {
  border-top: 1px solid rgba(0, 0, 0, .18);
  background: #fff;
}

/* wrapper próprio (não usa .container global) */
.cs-footer .csf-wrap {
  max-width: 1440px;
  margin: 0 auto;
}

/* TOP */
.cs-footer .csf-top {
  padding: 44px 0 36px;
}

.cs-footer .csf-top__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding: 0 20px;
}

/* brand */
.cs-footer .csf-logo {
  height: 42px;
  width: auto;
  max-width: 170px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, .12);
  background: #fff;
  padding: 8px 14px;
  object-fit: contain;
  display: block;
}

/* IMPORTANTE: trava logo SEM mexer no header */
.cs-footer .csf-brand__logo img,
.cs-footer .csf-brand__logo .custom-logo {
  width: 100%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  display: block;
}

/* quando WP gera <a class="custom-logo-link"> dentro */
.cs-footer .csf-brand__logo .custom-logo-link {
  display: block;
  max-width: 200px;
}

.cs-footer .csf-brand__text {
  margin-top: 14px;
  max-width: 360px;
  color: rgba(0, 0, 0, .65);
  line-height: 1.5;
  font-size: 14px;
}

.cs-footer .csf-social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.cs-footer .csf-social__btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .12);
  display: grid;
  place-items: center;
  text-decoration: none;
  background: #fff;
  color: rgba(0, 0, 0, .7);
  font-weight: 700;
  transition: linear 0.2s;
}

.csf-social__btn svg {
  width: 25px;
}

.csf-social__btn:hover {
  background: #fdfdfd;
  transform: scale(0.9);
}

/* colunas */
.cs-footer .csf-col__title {
  font-size: 22px;
  font-weight: 800;
  margin: 6px 0 14px;
  color: rgba(0, 0, 0, .75);
}

.cs-footer .csf-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.cs-footer .csf-menu a {
  text-decoration: none;
  color: rgba(0, 0, 0, .65);
}

.cs-footer .csf-menu a:hover {
  color: rgba(0, 0, 0, .9);
}

/* MID */
.cs-footer .csf-mid {
  border-top: 1px solid rgba(0, 0, 0, .18);
  padding: 18px 0;
}

.cs-footer .csf-mid__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  align-items: center;
  padding: 0 20px;
}

.cs-footer .csf-contact p {
  margin: 6px 0;
  color: rgba(0, 0, 0, .65);
  font-size: 14px;
}

.cs-footer .csf-contact a {
  color: rgba(0, 0, 0, .65);
  text-decoration: none;
}


.cs-footer .csf-contact a:hover {
  color: rgba(0, 0, 0, .9)
}

.cs-footer .csf-badges,
.cs-footer .csf-pay {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.cs-footer .csf-chip {
  min-width: 56px;
  height: 52px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, .12);
  display: grid;
  place-items: center;
  padding: 0 14px;
  font-size: 12px;
  color: rgba(0, 0, 0, .7);
  background: #fff;
}

.csf-chip img {
  width: 60px
}

.csf-chip .visacard {
  width: 30px;
}

.csf-chip .multibanco {
  width: 20px;
}

.cs-footer .csf-chip:hover {
  background: #efefef;
}

/* BOTTOM */
.cs-footer .csf-bottom {
  background: #C892C6;
  color: #fff;
  padding: 12px 0;
}


.bf {
  color: #fff;
}

.bf:hover {
  color: #ececec;
}

.cs-footer .csf-bottom__inner p {
  margin: 0;
  text-align: center;
  font-size: 14px;
}

/* mobile */
@media (max-width: 980px) {
  .cs-footer .csf-top__grid {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 0 20px 0 20px;
  }

.csf-brand__text {
  display: none;
}

.cs-footer .csf-bottom__inner p {
  font-size: 12px;
}

.cs-footer .csf-social {
  padding-top: 15px;
}

  .cs-footer .csf-mid__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 26px;
  }

  .cs-footer .csf-brand__text {
    max-width: 100%;
  }

.cs-footer .csf-menu a{
    display: inline-block;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: rgba(0,0,0,.65);
    line-height: 1.25;
    transition: color .2s ease;
    
  }

  .cs-footer .csf-menu a:hover{
    color: rgba(0,0,0,.9);
  }


}

/* ===== Accordion Footer (mobile premium) ===== */

/* Desktop: normal (sem acordeão) */
.cs-footer .csf-acc__btn {
  all: unset;
  display: block;
  width: 100%;
}

.cs-footer .csf-acc__icon {
  display: none;
  /* desktop não mostra seta */
}

.cs-footer .csf-acc__panel {
  overflow: visible;
  max-height: none;
}

/* Mobile: acordeão */
@media (max-width: 980px) {
  .cs-footer .csf-acc__btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
  }

  /* Remove flash escuro ao clicar */
  .cs-footer .csf-acc__btn {
    background: transparent;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    /* remove highlight mobile */
  }

  .cs-footer .csf-acc__btn:focus {
    outline: none;
    box-shadow: none;
  }

  .cs-footer .csf-acc__btn:active {
    background: transparent;
  }


  .cs-footer .csf-acc__icon {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(130, 22, 22, 0.55);
    border-bottom: 2px solid rgba(0, 0, 0, .55);
    transform: rotate(45deg);
    transition: transform .25s ease;
  }

  .cs-footer .csf-acc__panel {
    overflow: hidden;
    max-height: 0;
    transition: max-height .30s ease;
    /* suavidade */
  }

  .cs-footer .csf-acc.is-open .csf-acc__icon {
    transform: rotate(-135deg);
  }
}