body.is-open{
    overflow: hidden;
}
.space-between {
    display: flex;
    justify-content: space-between;
}
.text-center {
    justify-content: center;
    text-align: center;
}
.header-container {
    display: flex;
    flex-direction: column;
}
.header {
    background-color: var(--theme-bkg-color-header, var(--theme-color-1));
    /* background-color: var(--theme-color-1); */
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.header-brand {
    padding: 15px 0;
}
.header-brand img {
    width: 100%;
    max-height: 80px;
    transition: max-height 0.5s ease;
}
.header-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--theme-text-color-header, var(--theme-text-color-1));
}
.header-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.2;
}
.header-contact-item span {
    display: flex;
    font-size: 14px;
    /* color: var(--theme-text-color-1); */
    line-height: 1.3;
}
.header-contact-item svg {
    width: 32px;
    height: 32px;
    /* fill: var(--theme-text-color-1); */
}
.hamburguer-button {
    width: 32px;
    height: 32px;
    /* color: var(--theme-text-color-1); */
}
.hamburguer-button svg {
    width: 100%;
    height: auto;
}

.header-menu {
    background: var(--theme-color-2);
}
.header-menu-items {
    display: flex;
    align-items: center;
}
.header-menu-items a {
    display: block;
    color: var(--theme-text-color-2);
    padding: 15px;
}

/* .header--fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
} */
.header--fixed.is-sticky {
    animation: slideDown .5s ease forwards;
}
.header--fixed.is-sticky .header-brand img {
    max-height: 40px;
}
body.sticky {
    padding-top: 100px;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* banner */
.banner {
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80vh;
    min-height: 500px;
    background-color: #EEE;
}

.banner-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    animation: pulseImg 10s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulseImg {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}


/* search */
.search-box {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    padding: 0 10px;
    z-index: 5;
}
.search-purpose-opts {
    display: flex;
    gap: 8px;
}
.search-purpose-opts label {
    display: flex;
    justify-content: center;
    flex: 1;
    /* background-color: color-mix(in srgb, var(--theme-color-1) 45%, white); */
    background-color: #EEE;
    border: 1px solid var(--input-border-color);
    border-radius: 6px;
    padding: 10px 15px;
    /* color: var(--theme-text-color-1); */
    cursor: pointer;
    transition: all .3s ease-in-out;
}
.search-box .search-purpose-opts {
    justify-content: center;
    background-color: #FFF;
    border-radius: 6px;
    align-self: center;
    margin-bottom: 10px;
    padding: 8px;
}
.search-box .search-purpose-opts label {
    background: transparent;
    border: none;
    color: #464646;
}

.search-box .search-purpose-opts label:hover:has(:not(:checked)) {
    background-color: #EEE;
}
.search-purpose-opts label:has(:checked) {
    background-color: var(--theme-color-1);
    border-color: transparent;
    color: var(--theme-text-color-1);
}
.search-content {
    /* min-height: 150px; */
    background-color: #FFF;
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
    border-radius: 6px;
}
.search-form {
    background-color: var(--theme-color-1);
    border-radius: 6px 6px 0 0;
    padding: 20px;
}
.search-form__items {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.search-form__item {
    flex: 1;
}

.search-quick-opts {
    padding: 15px 20px;
}
.search-quick__content {
    overflow: hidden;
    overflow-x: auto;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    scroll-behavior: smooth;
    scrollbar-width: none;
}
.search-quick__content::-webkit-scrollbar {
    display: none;
}
.search-quick__btn {
    flex: 1;
    background-color: var(--btn-quick-search-bg, var(--theme-color-1)); /*var(--b-quick-search-color, var(--theme-color-1));*/
    color: var(--btn-quick-search-color, var(--theme-text-color-1));
}
.search-quick__btn:hover {
    background: color-mix(in srgb, var(--btn-quick-search-bg, var(--theme-color-1)) 85%, black);
}
.f-item-b {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 42px;
    background-color: #FFF;
    border: 1px solid #CCC;
    border-radius: 4px;
    padding: 10px 5px 10px 10px;
    text-align: left;

    svg {
        width: 24px;
        height: 24px;
    }
}
/* .f-item-b > span:first-child {
    flex: 1;
} */
.section-block {
    padding: 70px 0;
}
.section-block:nth-child(2n) {
    background-color: #EEE;
}
.section-block__header {
    margin-bottom: 35px;
    text-align: center;
    line-height: 1.5;
}
.section-title {
    margin-bottom: 0.313rem;
    font-size: 26px;
}


/* FOOTER */
.footer {
    background-color: var(--theme-color-1);
}
.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 0 70px;
    text-align: center;
}
.footer-logo {
    height: 60px;
    margin-bottom: 10px;
}
.footer-section h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--theme-text-color-1);
}
.footer-section p,
.footer-section ul li a,
.footer-section .contacts-list,
.footer-brand {
    font-size: 0.9rem;
    color: var(--theme-text-color-1);
}

/* Copyright */
.footer-bottom {
    position: relative;
    text-align: center;
    padding: 40px 0;
    color: var(--theme-text-color-1);
    font-size: 0.9rem;
    width: 100%;
}

/* --- Redes sociais --- */
.footer-social, .nav-social {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 15px;
}

.footer-social a, .nav-social a {
    width: 50px;
    height: 50px;
    border: 3px solid var(--theme-text-color-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    font-size: 1.25rem;
    transition: 0.3s ease;
    color: #eee;
}

.footer-social a:hover, .nav-social a:hover{
    background: #fff;
    color: #111;
}

.footer-bottom * {
    position: relative;
    z-index: 1;
}
.footer-bottom:before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.footer-bottom__links {
    margin: 10px 0;
}

.footer-bottom__links a {
    color: var(--theme-text-color-1);
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

.footer-bottom__links a:hover {
    color: #2980b9;
    text-decoration: underline;
}
.footer-bottom__dev {
    display: flex;
    justify-content: center;
}
.footer-bottom__dev img {
    width: 120px;
}

/* contacts */
.contacts-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contacts-list__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.contacts-list__top {
    display: flex;
    align-items: center;
    gap: 5px;
}
.contacts-list__icon {
    display: inline-flex;
    width: 24px;
    height: 24px;
}
.contacts-list__value {
    font-size: 1.25rem;
}
.contacts-list__item.is-priority .contacts-list__value {
    font-size: 1.875rem;
    font-weight: 600;
}

/* nav-manu */
.nav-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    height: 100%;
}
.nav-menu {
    flex: 1;
}
.nav-menu__items {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.nav-menu__item {
    font-size: 1.125rem;
    font-weight: 400;
}
.nav-menu__item a {
    display: block;
}
.nav-menu__item a:hover {
    color: var(--theme-color-1);
}
.nav-social {
    margin-bottom: 20px;
}
.nav-social a {
    width: 40px;
    height: 40px;
    border-color: var(--theme-color-1);
    color: var(--theme-color-1);
}

/* WhatsApp base style */
.whatsapp {
    background: #3ABE4D;
    color: #FFF;
    transition: background .3s ease;
}
.whatsapp:hover {
    background: #075E54;
}

/* lazy images */
.lazy {
    opacity: 0;
}
.lazy.loaded {
    opacity: 1;
    transition: opacity 1s;
}
/* Filter button float */
.filter-nav {
    position: sticky;
    top: 0;
    background-color: #f1f3f5;
    padding: 10px 20px;
    z-index: 10;
}
.filter-nav__container {
    display: flex;
    gap: 10px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}
.filter-nav button {
    font-size: 0.875rem;
}
.filter-button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: #FFF;
    border: 1px solid #CCC;
    border-radius: 6px;
    /* box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px; */
    padding: 12px 15px 12px 10px;
    z-index: 10;

    svg {
        width: 20px;
    }
}
.filter-nav button {
    font-size: 0.875rem;

    svg {
        width: 18px;
        height: 18px;
    }
}
.filter-button.fixed {
position: fixed;
    bottom: 25px;
    left: 25px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}
.filter-badge {
    display: none;
    position: absolute;
    top: -7px;
    right: 5px;
    background: var(--theme-color-1);
    border-radius: 3px;
    font-size: 0.75rem;
    color: var(--theme-text-color-1);
    padding: 1px 5px;

    &.is-visible {
        display: flex;
    }
    &.is-animated {
        animation: badgePulse 280ms ease-out;
    }
}

.filter-free {
    max-width: 30vw;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 35px;

    .f-control {
        width: 100%;
    }
}

/* CIDADE MODAL */
[data-city] {
    display: none;

    &.is-visible {
        display: block;
    }
}
.location-info-empty {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-container {
    flex-direction: column;
    padding: 10px 20px 20px;
}
.orderby-button {
    background-color: #FFF;
    border: 1px solid #CCC;
}
/* label:has(input[name="filter_option"]:checked) {
background-color: red;
} */

@keyframes badgePulse {
  0% {
    transform: scale(0.7);
    opacity: 0.4;
  }
  70% {
    transform: scale(1.15);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}


/* AUTH */
.auth-content {
    
    
}

.auth-slider {
    overflow: hidden;
    position: relative;
    width: 200%;
    display: flex;
    transition: transform .5s ease;
}
.auth-slide {
    width: 50%;
    flex-shrink: 0;
    padding: 0 10px 15px;
    
}
.auth-slide[data-step="register"] {
    display: none;
    visibility: hidden;
    opacity: 0;
    transition: all .5s ease;
}
.auth-slider[data-step="login"] {
    transform: translateX(0%);
}
 .auth-slider[data-step="register"] {
    transform: translateX(-50%);
}
 .auth-slider[data-step="register"] .auth-slide[data-step="register"] {
    display: block;
    visibility: visible;
    opacity: 1;
}

.loader-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background-color: rgba(255, 255, 255, .8);
    backdrop-filter: blur(5px);
    padding: 20px;
    animation: fadeIn .2s ease-out;
}
.loader-icon {
    width: 64px;
    height: 64px;
    transform: scale(0.6);
    opacity: 0;
    transition: transform .18s ease, opacity .18s ease;
}
.loader-icon.show {
    transform: scale(1);
    opacity: 1;
}
.loader-icon.hide {
    transform: scale(0.3);
    opacity: 0;
}
.loader-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid #ccc;
  border-top-color: #000;
  border-radius: 50%;
  animation: spin .6s linear infinite;
  margin: 0 auto 8px;
}
.message-form {
    padding: 0 10px;
}

.separator {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
}
.separator:before, .separator:after {
    flex: 1;
    content: '';
    height: 2px;
    background-color: #CCC;
}
/* Schedule Dates */
.schedule-date-picker {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 10px;
}
.schedule-date-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #CCC;
    border-radius: 6px;
    padding: 10px;
    cursor: pointer;
    transition: all .3s ease;
}
.schedule-date-label span {
    font-size: 0.75rem;
}
.schedule-date-label strong {
    font-size: 1.25rem;
}
.schedule-date-item input:checked + .schedule-date-label {
    background: var(--theme-color-1);
    border-color: var(--theme-text-color-1);
    color: var(--theme-text-color-1);
}
.cookie-banner {
    position: fixed;
    bottom: 15px;
    right: -370px;
    width: 345px;
    background-color: #FFF;
    border-radius: 8px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
    padding: 15px 25px 20px;
    opacity: 0;
    transition: right .3s ease, opacity .6s ease;
    z-index: 1000;
}
.cookie-banner.show {
    right: 15px;
    opacity: 1;
}
.cookie-banner__text {
    margin-bottom: 15px;
    font-size: 0.75rem;
}
.cookie-banner__text a {
    color: var(--theme-color-1);
    text-decoration: underline;
}

/* 404 */
.error-page {
    width: 100%;
    max-width: 960px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 70px auto 70px;
    padding: 0 25px;
}
.error-page h1 {
    width: 100%;
    font-size: 3.75rem;
    font-weight: 500;
    text-align: center;
}
.error-page p {
    width: 100%;
    max-width: 340px;
    font-size: 1.125rem;
    text-align: center;
}
.error-page .btn {
    margin: 25px auto auto;
}
@media (max-width: 767px) {
    .cookie-banner {
        width: calc(100% - 30px);
    }
}
.form-terms {
    padding: 10px 10px 25px;
    font-size: 0.75rem;
    text-align: center;
}
.form-terms a {
    color: var(--theme-color-1);
    text-decoration: underline;
}

/* Basics animation */
.fade-out {
    animation: fadeOut .25s ease-in forwards;
}
@keyframes fadeIn {
  from { opacity: 0 }
  to   { opacity: 1 }
}

@keyframes fadeOut {
  to { opacity: 0 }
}

/* RESPONSIVE */
@media (max-width: 767px) {
    .no-mobile {
        display: none;
    }
}