body.is-open{
    overflow: hidden;
}
.header-container {
    display: flex;
    flex-direction: column;
}
.header {
    background-color: var(--theme-color-1);
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-brand {
    padding: 15px 0;
}
.header-brand img {
    width: 100%;
    height: 80px;
}
.header-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}
.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;
}

/* 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;
    justify-content: center;
    gap: 8px;
    background-color: #FFF;
    border-radius: 6px;
    align-self: center;
    margin-bottom: 10px;
    padding: 8px;
}
.search-purpose-opts label {
    border-radius: 6px;
    padding: 10px 15px;
    cursor: pointer;
    transition: all .3s ease-in-out;
}
.search-purpose-opts label:hover:not(.active) {
    background-color: #EEE;
}
.search-purpose-opts .active {
    background-color: var(--theme-color-1);
    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 {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 15px 20px;
}
.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;
}
.f-item-b span {
    flex: 1;
}
.section-block {
    padding: 70px 0;
}
.section-block:nth-child(2n) {
    background-color: #EEE;
}
.section-title {
    margin-bottom: 35px;
    font-size: 26px;
    text-align: center;
}


/* 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 {
    width: 150px;
}
.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 {
    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);
}
