:root {
    --vermelho: #E5002C;
    --azul: #003D6D;
    --amarelo: #FFB236;
    --offwhite: #FFF6F0;
    --black: #181818;
}
* {
    font-family: "Poppins", sans-serif;
}
body {
    position: relative;
}
header {
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    z-index: 5;
}
.topo-info {
    width: 100%;
    padding: 5px 0px;
    background-color: var(--azul);
    color: var(--offwhite);
    font-size: 13px;
}
.topo-info-mobile {
    width: 100%;
    padding: 5px 0px;
    background-color: var(--azul);
    color: var(--offwhite);
    font-size: 13px;
    display: none;
}
.main-header {
    background-color: #FFF;
}
.area-header {
    width: 100%;
    padding: 15px 0 0 0;
    position: relative;
}
.header-top {
    width: 100%;
    display: flex;
    align-items: center;
}
.search-menu {
    margin-left: 40px;
    width: 100%;
    display: flex;
    height: 45px;
}
.search-menu form {
    width: 100%;
}
.input-search-menu {
    width: 100%;
    height: 45px;
    padding-left: 10px;
}
#btn-search-menu {
    min-width: 120px;
    height: 45px;
}
.btn-wpp-menu {
    margin-left: 10px;
    height: 45px;
}
#btn-wpp-menu {
    min-width: 120px;
    width: 100%;
    height: 45px;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #359613;
    color: #FFF;
    border: 0;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
}
.header-bottom {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    padding: 10px 0 0 0;
}
.menu-desktop {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
}
.menu-desktop .nav-desktop {
    display: flex;
    height: 100%;
    padding: 0;
    list-style: none;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}
.menu-desktop .nav-desktop .link-menu {
    position: relative;
    padding: 0 5px;
    text-decoration: none;
    min-width: 100px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--vermelho);
    font-weight: 600;
}
.menu-desktop .nav-desktop .link-menu::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--vermelho);
    transition: width 0.5s ease;
}
.menu-desktop .nav-desktop .link-menu li {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
.menu-desktop .nav-desktop .link-menu:hover::after {
    width: 100%;
}
.submenu {
    position: absolute;
    bottom: 10px;
    right: 0;
    list-style: none;
    padding: 0;
    width: 100%;
    max-width: 1320px;
    background-color: var(--vermelho);
    box-shadow: 0px 5px 5px 0px #00000040;
    color: #FFF;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 250px;
    border-radius: 0 0 8px 8px;
    z-index: -5;
    transition: all 0.3s ease;
}
.submenu li {
    width: 100%;
    max-width: 300px;
    height: 45px;
}
.submenu .link-submenu {
    color: #FFF;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 10px;
    text-decoration: none;
}
.submenu .link-submenu::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #FFF;
    transition: width 0.5s ease;
}
.submenu .link-submenu:hover::after {
    width: 100%;
}
.sandwith {
    display: none;
    cursor: pointer;
}
.bar1, .bar2, .bar3 {
    width: 28px;
    height: 3px;
    background-color: var(--azul);
    margin: 4px 0;
    transition: 0.4s;
}
.change .bar1 {
    transform: translate(0, 6px) rotate(-45deg);
}
.change .bar2 {opacity: 0;}
.change .bar3 {
    transform: translate(0, -8px) rotate(45deg);
}
.side-menu {
    width: 100%;
    background-color: var(--vermelho);
    min-height: 460px;
    position: absolute;
    top: 65px;
    left: -110%;
    transition: all 0.3s ease;
    z-index: 15;
}
.open-side {
    left: 0;
}
.side-menu-nav {
    padding: 10px 0;
    list-style: none;
    margin: 0;
    background-color: var(--vermelho);
}
.side-menu-nav li {
    min-height: 45px;
    width: 100%;
}
.side-menu-nav a {
    min-height: 45px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    color: #FFF;
    text-decoration: none;
    border-bottom: 1px solid #d65959;
}
.side-submenu {
    background-color: #b80025;
    list-style: none;
    padding: 0;
    overflow: hidden;
    height: 0;
    transition: all 0.3s ease;
}
.open-sidemenu {
    height: auto;
}

.main-section {
    position: relative;
    width: 100%;
}
.conteudo-pagina {
    border: 1px solid #cecece;
    border-radius: 6px;
    padding: 15px;
}
.section-1 .swiper-1 {
    width: 100%;
    position: relative;
}
#area-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.gradient-slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    background-color: #00000060;
}
.area-slider-home {
	width: 100%;
    padding: 30px 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.slider-home-left {
	width: 50%;
}
.slider-home-right {
	width: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.h1-slide {
	line-height: 45px;
	color: #b80025;
	margin-bottom: 15px;
}
.h4-slide {
	color: #000;
	margin-bottom: 30px;
}
.link-slider-home {
	padding: 10px 10px;
	border: 2px solid #b80025;
    border-radius: 4px;
    font-size: 14px;
	color: #b80025;
    font-weight: 600;
    text-decoration: none;
	transition: 0.2s;
}
.link-slider-home:hover {
	background-color: #b80025;
	color: #FFF;
}
.slider-home-right img {
	object-fit: cover;
    width: 100%;
    height: 100%;
	border-radius: 6px;
}
.swiper-button-next, .swiper-button-prev {
    color: var(--vermelho);
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 35px;
}
.swiper-pagination-bullet-active {
    background-color: var(--vermelho);
}
.topo-section {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.section-2 .topo-section h3,
.section-5 .topo-section h3 {
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
}
.section-2 .topo-section .link-section {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: var(--vermelho);
    transition: 0.2s;
    font-weight: 600;
}
.section-2 .topo-section .link-section:hover {
    color: var(--azul);
}
.slider-categorias-home {
    width: 100%;
}
.destaques-row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.destaque-card {
    height: 300px;
    width: 100%;
    max-width: 500px;
    position: relative;
}
.destaque-card img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-slide {
    position: relative;
    height: 240px;
    padding: 15px;
    background-color: #e5e5e5;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.card-slide h5 {
    font-size: 18px;
    color: #FFF;
    font-weight: 700;
    position: relative;
    z-index: 3;
}
.btn-card {
    position: relative;
    z-index: 3;
    display: flex;
    font-size: 14px;
    font-weight: 600;
    gap: 5px;
    align-items: center;
    text-decoration: none;
    color: var(--vermelho);
}
.img-destaque-card {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    object-fit: cover;
    z-index: 1;
}
.gradient-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    background-color: #00000060;
    z-index: 2;
}
.section-3 {
    background-color: var(--vermelho);
}
.section-3 .topo-section h3,
.section-6 .topo-section h3 {
    color: var(--offwhite);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
}
.section-3 .topo-section .link-section {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: var(--offwhite);
    transition: 0.2s;
    font-weight: 600;
}
.lista-ofertas-home {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.card-oferta {
    background-color: var(--offwhite);
    min-height: 400px;
    padding: 15px;
    width: 100%;
}
.img-oferta {
    position: relative;
    width: 100%;
    height: 220px;
    border: 1px solid #e5e5e5;
    margin-bottom: 10px;
}
.img-oferta img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.info-oferta {
    width: 100%;
}
.info-oferta h5 {
    font-size: 16px;
    font-weight: 600;
}
.info-oferta p {
    font-size: 13px;
    margin-bottom: 15px;
    min-height: 60px;
}
.link-oferta {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    background-color: var(--azul);
    color: var(--offwhite);
    text-decoration: none;
    padding: 8px 15px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
}
.section-4 {
    width: 100%;
    background-color: var(--azul);
}
.section-4 .topo-section h3 {
    color: var(--amarelo);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
}
.section-4 .topo-section .link-section {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: var(--amarelo);
    transition: 0.2s;
    font-weight: 600;
}
.sobre-home {
    width: 100%;
    display: flex;
}
.info-sobre-home {
    display: flex;
    font-size: 16px;
    flex-direction: column;
    justify-content: center;
    color: var(--offwhite);
}
.mascote-sobre-home {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.lista-marcas-home {
    width: 100%;
}
.marca-item {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.section-6 {
    background-color: var(--vermelho);
}
.contact-map,
.contact-map iframe {
    width: 100%;
    height: 300px;
}
.default-header {
    width: 100%;
    background-color: var(--vermelho);
    padding: 20px 0;
    border-bottom: 3px solid var(--azul);
}
.default-header h2 {
    color: var(--offwhite);
    font-weight: 600;
}
.default-header p {
    color: var(--offwhite);
}
.area-contato {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.form-field  {
    margin-bottom: 18px;
}
.input-field {
    width: 100%;
    height: 45px;
    padding-left: 10px;
    border-radius: 4px;
    border: 2px solid var(--azul);
}
.textarea-field {
    width: 100%;
    padding: 10px;
    min-height: 100px;
    border-radius: 4px;
    border: 2px solid var(--azul);
}
.btn-contato {
    height: 42px;
    padding: 0 25px;
    border: 0;
    background-color: var(--azul);
    color: var(--offwhite);
    border-radius: 4px;
}
.lista-contato-card {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.contato-card {
    width: 100%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.contato-card-info {
    text-align: center;
}
.contato-card-info h5 {
    font-weight: 600;
    font-size: 18px;
}
.lista-categorias {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.title-produtos-categoria {
    font-size: 18px;
}
.listagem-produtos-categoria,
.listagem-produtos-relacionados {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    border-top: 2px solid var(--azul);
}
.card-produto {
    width: 100%;
    background-color: #FFF;
    color: var(--black);
    border-radius: 6px;
    border: 1px solid #dadada;
    padding: 15px;
    display: flex;
    text-decoration: none;
}
.img-card-produto {
    width: 120px;
    height: 120px;
}
.info-card-produto {
    width: 100%;
}
.info-card-produto h3,
.card-price {
    font-size: 14px;
    font-weight: 600;
}
.info-card-produto p {
    font-size: 13px;
    max-height: 60px;
    overflow: hidden;
}
.bottom-produto {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.bottom-produto .tag-buy {
    font-size: 13px;
    display: flex;
    align-items: center;
    color: var(--offwhite);
    padding: 5px;
    background-color: var(--azul);
    border-radius: 4px;
}
.area-single-produto {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.img-detaque-single-produto {
    width: 100%;
    position: relative;
}
.img-detaque-single-produto .img-principal {
    /* position: absolute; */
    width: 100%;
    max-height: 490px;
    object-fit: cover;
    border: 1px solid #dadada;
    border-radius: 4px;
}
.shop-single-produto {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contato-shop,
.wpp-shop {
    width: 48%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    color: var(--offwhite);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}
.contato-shop {
    background-color: var(--azul);
}
.wpp-shop {
    background-color: #359613;
}
.imagens-carrosel-produto {
    width: 100%;
    height: 100px;
    padding: 10px 0;
    display: flex;
    gap: 7px;
    overflow-x: auto;
    background-color: #e5e5e5;
}
.img-carrosel-produto {
    min-width: 80px;
    height: 100%;
    background-color: #FFF;
    border-radius: 4px;
    position: relative;
}
.img-carrosel-produto img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}
.lista-itens-encontrados {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.item-encontrado {
    width: 100%;
    padding: 10px;
    border: 2px solid #e5e5e5;
    border-radius: 4px;
    text-decoration: none;
    color: var(--black);
}
.item-encontrado:hover {
    border: 2px solid var(--azul);
}
footer {
    width: 100%;
    background-color: var(--azul);
    border-top: 3px solid var(--amarelo);
}
.row-footer {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.row-footer p {
    color: var(--offwhite);
    font-size: 14px;
}
.row-footer h5 {
    color: var(--amarelo);
    font-size: 16px;
    font-weight: 700;
}
.row-footer .links-atalhos,
.row-footer .links-sociais {
    padding: 0;
    list-style: none;
}
.row-footer .links-atalhos li,
.row-footer .links-sociais li {
    margin-bottom: 10px;
}
.row-footer .links-atalhos a,
.row-footer .links-sociais a {
    display: flex;
    align-items: center;
    color: var(--offwhite);
    text-decoration: none;
    font-size: 14px;
    transition: all ease 0.2s;
}
.row-footer .links-atalhos a:hover,
.row-footer .links-paginas a:hover,
.row-footer .links-sociais a:hover {
    color: var(--amarelo);
}
.row-footer .links-paginas {
    display: flex;
    width: 100%;
    align-items: center;
    height: 100%;
    color: var(--offwhite);
}
.row-footer .links-paginas a {
    color: var(--offwhite);
    font-size: 14px;
    text-decoration: none;
}
.row-footer .copy {
    display: flex;
    color: var(--offwhite);
    font-size: 12px;
    height: 100%;
    align-items: center;
}
/* RESPONSIVIDADE ============================== */
/* --------------------------------------------- */
@media (max-width: 1200px) {
    .mascote-sobre-home {
        justify-content: center;
    }
    .mascote-sobre-home img {
        height: 150px;
    }
}
@media (max-width: 991px) {
    .sobre-home {
        flex-direction: column;
    }
    .row-footer .copy,
    .row-footer .links-paginas {
        margin-top: 20px;
    }
    .shop-single-produto {
        flex-direction: column;
    }
    .contato-shop,
    .wpp-shop {
        width: 100%;
        margin-bottom: 10px;
    }
    .area-slider-home {
		height: inherit;
		flex-direction: column;
		gap: 40px;
	}
	.slider-home-left,
	.slider-home-right {
		width: 100%;
	}
	.slider-home-left {
		text-align: center;
	}
	.slider-home-right img {
		width: 100%;
		height: auto;
	}
}
@media (max-width: 960px) {
    .logo-menu img {
        width: 120px;
    }
    .menu-desktop {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header-top {
        justify-content: space-between;
    }
    .area-header {
        padding: 15px 0;
    }
    .header-bottom,
    .search-menu,
    .btn-wpp-menu {
        display: none;
    }
    .sandwith {
        display: inline-block;
    }
    .topo-info {
        display: none;
    }
    .topo-info-mobile {
        display: block;
    }
    .topo-section {
        flex-direction: column;
        gap: 10px;
    }
    .topo-section h3 {
        font-size: 18px;
    }
    .topo-section .link-section {
        font-size: 13px;
    }
    .col-oferta {
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {
    .swiper-button-next:after, .swiper-button-prev:after {
        font-size: 25px;
        font-weight: 700;
    }
}

@media (max-width: 540px) {
    .destaque-card {
        height: 260px;
    }
}

@media (max-width: 450px) {
    .destaque-card {
        height: 220px;
    }
}

