/********** Template CSS **********/

:root {
    --primary: #FF3E41;
    --secondary: #51CFED;
    --light: #F8F2F0;
    --dark: #060315;
}

body {
    font-family: "Poppins", sans-serif !important;
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.fw-medium {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}


@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 5px;
        top: -6px;
        left: 50%;
        background: #FFFFFF;
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }

    .nav-item-pai {
        border-radius: 10px;
    }
    .nav-item-pai:hover {
        background-color: rgba(211, 211, 211, .2);
        border-radius: 10px;
    }
}


.header-banner .banner img {
    position: relative;
    width: 100%;
    height: 380px;
    object-fit: cover;
}


/*** Header ***/
@media (max-width: 768px) {
    .header-banner .banner {
        position: relative;
        min-height: 500px;
    }

    .header-banner .banner img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-banner .banner h5,
    .header-banner .banner p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-banner .banner h1 {
        font-size: 30px;
        font-weight: 600;
    }
}


.page-header {
    background: linear-gradient(rgba(6, 3, 21, .5), rgba(6, 3, 21, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service, Price & Team ***/
.service-item,
.price-item,
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item img,
.team-item img {
    transition: .5s;
}

.service-item:hover img,
.team-item:hover img {
    transform: scale(1.1);
}

.service-item a.btn-slide,
.price-item a.btn-slide,
.team-item div.btn-slide {
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-size: 0;
    height: 40px;
}

.service-item a.btn-slide i,
.service-item a.btn-slide span,
.price-item a.btn-slide i,
.price-item a.btn-slide span,
.team-item div.btn-slide i,
.team-item div.btn-slide span {
    position: relative;
    height: 50px;
    top: -12px;
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 0 35px 35px 0;
    transition: .5s;
    z-index: 2;
}

.team-item div.btn-slide span a i {
    padding: 0 10px;
}

.team-item div.btn-slide span a:hover i {
    background: var(--secondary);
}

.service-item a.btn-slide span,
.price-item a.btn-slide span,
.team-item div.btn-slide span {
    padding-left: 0;
    left: -100%;
    z-index: 1;
}

.service-item:hover a.btn-slide i,
.price-item:hover a.btn-slide i,
.team-item:hover div.btn-slide i {
    border-radius: 0;
}

.service-item:hover a.btn-slide span,
.price-item:hover a.btn-slide span,
.team-item:hover div.btn-slide span {
    left: 0;
}

.service-item a.btn-slide:hover i,
.service-item a.btn-slide:hover span,
.price-item a.btn-slide:hover i,
.price-item a.btn-slide:hover span {
    background: var(--secondary);
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item {
    position: relative;
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    animation: pulse 1s ease-out .5s;
}

.testimonial-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border: 5px solid var(--light);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--light);
    border-color: var(--primary);
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact-page {
        max-width: 100% !important;
    }

    .contact-page .contact-form {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-page .contact-form {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-page .contact-form {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer {
    background: linear-gradient(rgba(6, 3, 21, .5), rgba(6, 3, 21, .5)), url(../img/map.webp) center center no-repeat;
    background-size: cover;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.new-footer {
  /*background-color: #0B1A4D; */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.9rem;
}

.new-footer a {
   color: inherit;
   transition: color 0.3s ease, text-decoration 0.3s ease;
}

.new-footer a:hover {
  color: #f0a500 !important;
}


.btn-search {
    width: 100px;
    border-radius: 20px;
}

/*** Search button ***/

.search-box {
  margin: 0;
  padding: 0;
  height: 40px;
  display: flex;
  align-items: center;
}


.search-container {
  display: flex;
  align-items: center;
  background-color: #2a2a6e;
  border-radius: 25px;
  padding: 5px 15px;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  height: 35px;
  }

.search-container:hover {
  filter: brightness(0.95); /* escurece em 5% */
}

.search-input {
  background: transparent;
  border: none;
  color:white;
  flex: 1;
  padding-left: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  outline: none;
  height: 100%;
  display: flex;
  align-items: center;

}

.search-button {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1.2rem;
  height: 100%;
  display: flex;
  align-items: center;
}

.search-input::placeholder {
  color: #f5f5f5;
}

.search-container-wrapper {
  width: 100%;
  margin-top: 8px;
}

#logoAndLupa {
    gap: 8rem;
}

@media (min-width: 360px) {
    #logoAndLupa {
        gap: 9rem;
    }
}

@media (min-width: 400px) {
    #logoAndLupa {
        gap: 12rem;
    }
}

@media (min-width: 500px) {
    #logoAndLupa {
        gap: 20rem;
    }
}

@media (min-width: 700px) {
    #logoAndLupa {
        gap: 33rem;
    }
}

@media (min-width: 992px) {
    #logoAndLupa {
        gap: 35rem;
    }
}

@media (min-width: 1000px) {
    #logoAndLupa {
        gap: 49rem;
    }
}




@media(max-width: 662px) {
    .btn-search {
        position: relative;
        left: 0;
        border-radius: 20px;
    }

    .input-search{
        border-radius: 20px 0 0 20px !important;
        font-size: 0.85rem;
    }
}

@media(max-width: 500px) {
    .btn-search {
        position: relative;
        left: 0;
        border-radius: 20px;
    }
    .input-search{
        border-radius: 20px 0 0 20px !important;
        font-size: 0.85rem;
    }
}

.category-title {
    font-size: 22px;
    font-weight: 700px;
    margin-top: 12px;
}

.box-categorie {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.box-categorie a {
    text-decoration: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.box-categorie {
    border: 1px solid #00000012;
}

.box-categorie i {
    font-size: 30px;
}

.owl-prev, .owl-next {
    position: absolute;
    color: #FF3E41;
    transition: all .3s ease;
    top: 44%;
}

.owl-prev:hover, .owl-next:hover {
    color: #dd3033;
}

.owl-prev {
    left: 0px;
}

.owl-next {
    right: 0px;
}

.owl-dots {
    margin-top: 20px;
}

.categories {
    position: relative;
    /*top: -170px;*/
    z-index: 2;
}

@media(min-width: 662px) {
    .categories {
        height: 20px;
    }

}

.box-promo h1,
.box-promo h2,
.box-promo h3,
.box-promo h4,
.box-promo h5,
.box-promo h6,
.box-promo p,
.box-promo span,
.box-promo ul li {
    color: #ffff !important;
}

.img_ads_middle {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
}

.ads img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    margin: 30px 0;
}

.btn-cart:hover {
    /* transform: scale(1.05); */
    /* transition: all 0.5s ease; */
}

.img-prod {
    width: 100%;
    object-fit: cover;
    height: 200px;
    margin-bottom: 8px;
}

.img-single {
    width: 100%;
    object-fit: contain;
    height: 580px;
}


.ot-flaticon-add {
    position: relative;
    left: 50%;
    bottom: 170px;
    background: #ffffff52;
    padding: 10px;
    border-radius: 10px;
}

/* Termos de Uso COOKIES  */
.cookieConsentContainer {
    z-index: 999;
    width: 350px;
    min-height: 20px;
    box-sizing: border-box;
    padding: 30px 30px 30px 30px;
    background: #232323;
    overflow: hidden;
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: none
}


.cookieConsentContainer .cookieTitle a {
    font-family: inherit;
    color: #fff;
    font-size: 22px;
    line-height: 20px;
    display: block
}


.cookieConsentContainer .cookieDesc p {
    margin: 0;
    padding: 0;
    font-family: inherit;
    color: #fff;
    font-size: 13px;
    line-height: 20px;
    display: block;
    margin-top: 10px
}


.cookieConsentContainer .cookieDesc a {
    font-family: inherit;
    color: #fff;
    text-decoration: underline
}


.cookieConsentContainer .cookieButton a {
    display: inline-block;
    font-family: inherit;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-top: 14px;
    background: #000;
    box-sizing: border-box;
    padding: 15px 24px;
    text-align: center;
    transition: background .3s
}


.cookieConsentContainer .cookieButton a:hover {
    cursor: pointer;
    background: #FFF;
    color: #000;
}


@media (max-width:980px) {
    .cookieConsentContainer {
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important
    }
}

/* -// Termos de Uso COOKIES //-  */


.logo img {
    max-width: 200px;
}

.video #youtube-video iframe {
    width: 100%;
    height: 450px;
    margin-bottom: 30px;
}

.img-fit-gallery {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.overlay {
    position: relative;
    top: 75px;
    right: 20px;
}

.form-step {
    display: block;
}


.form-step-inactive {
    display: none;
}

.testimonial-carousel .owl-nav {
    display: flex;
    justify-content: space-between;
}

/* Página de categorias */
.bg-main {
   background: #fafafa;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.banner-content {
    position: relative;
    z-index: 1;
}

.banner-title {
    color: #fff !important;
}

.card-title {
    color: initial;
}

.custom-input-group {
    border-radius: 0.5rem;
    overflow: hidden;
}

.custom-input,
.custom-select {
    height: 50px;
    border-radius: 0.5rem;
    border: 1px solid #00000017;
    background-color: #fff !important;
}

.custom-input:focus,
.custom-select:focus {
    box-shadow: none;
    border-color: #ff3e41;
}

.input-group-text {
    border-left: none;
    background-color: transparent !important;
    padding: 0.75rem 1rem;
}

.custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23343a40' width='18px' height='18px'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 18px 18px;
    padding-right: 2.5rem;
}

.fa-search {
    font-size: 1.25rem;
}

.custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: none;
    padding-right: 2.5rem;
    position: relative;
}

.select-wrapper {
    position: relative;
    display: inline-block;
}

.select-wrapper::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    pointer-events: none;
}

.select-wrapper.open::after {
    content: '\f077';
}

#ordenar {
    padding-left: 2.5rem;
}

.sort-icon::before {
    content: '\f160';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    pointer-events: none;
}

.accordion-item {
    border: 1px solid #e0e0e0;
    margin-bottom: 10px;
    border-radius: 4px;
}

.accordion-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px;
    background-color: #f8f9fa;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.accordion-button:hover {
    background-color: #e9ecef;
}

.accordion-button:focus {
    outline: none;
    box-shadow: 0 0 0 2px #ff676740;
}

.accordion-button span {
    flex-grow: 1;
    text-align: left;
}

.accordion-button .fa-chevron-down {
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed) .fa-chevron-down {
    transform: rotate(180deg);
}

.accordion-body {
    padding: 15px;
    transition: all 0.3s ease;
    background-color: #fff;
}

.accordion-collapse {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-collapse.show {
    max-height: 1000px;
}

.card {
    margin-top: -150px;
    padding: 16px;
    border-color: #00000017;
    border-radius: 8px;
}

.card-container {
    border-radius: 10px;
}

.filters-content {
    background: #fff;
    padding: 4px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.category-carousel {
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.subcategory-title {
    font-weight: 400;
    font-size: 16px;
}

.cards-title {
    font-size: 20px;
}

.subcategory-img {
    border-radius: 50%;
}

.link-category {
    color: #ff3e41;
}

.sticky-top {
    position: sticky !important;
    top: 0px !important;
    z-index: 1020;
    background-color: #fff;
    transition: all ease .3s;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.sticky-filters {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1020;
    background-color: #fff;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.select-wrapper {
    position: relative;
}

.select-wrapper .fas {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
    color: #FF3E41;
}

.select-wrapper select {
    padding-left: 20px;
    font-size: 14px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.pro-container {
    background-color: #444;
}

.pro-verified-badge {
    background-color: #007bff;
    padding: 10px;
    border-radius: 5px;
}

.pro-verified-badge span {
    width: 100%;
}

.image-container img {
    border-radius: 10px;
    width: 70px;
    height: 70px;
    object-fit: cover;
    max-width: 110px;
}

.pro-verified-content {
    display: flex;
    gap: 10px;
}

.pro-verified-container { 
    display: flex;
    flex-direction: column;
    background: #102547;
    width: 100%;
    padding: 20px;
    border-radius: 6px;
    background-image: linear-gradient(87deg, #102547, #10254780), url("https://www.futuraexpress.com.br/blog/wp-content/uploads/2020/09/O-que-e-Mockup.jpg");
}

.pro-verified-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    padding: 8px 12px;
    background: #004b8b36;
    color: #fff;
    border: 1px solid #ffffff2b;
    backdrop-filter: blur(4px);
}

.pro-verified-badge-prod {
    display: flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    padding: 8px 12px;
     background-color: #102547;
    color: #fff;
    border: 1px solid #ffffff2b;
    backdrop-filter: blur(4px);
}


.image-container img {
    width: 100%;
    max-width: 110px;
    max-height: 110px;
    border-radius: 8px;
    object-fit: cover;
}

.faq {
    padding: 60px 0px;
}

.categories {
    margin-top: 100px;
}

.hero-category {
    background-image: url('https://www.macrogalpoes.com.br/imagens/produtos-acessorios/galpao-maxi-home.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    width: 100%;
}

.products-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.highlighted-products-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px;
}

.service-item {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    height: 100%;
    padding: 22px;
}

.link-category {
    font-size: 14px;
}

.badge-container span {
    font-size: 12px;
}

.product-cta-slide {
    display: flex;
}

.product-cta {
    display: none;
    justify-content: flex-end;
}

.pagination .page-item.active .page-link {
    background-color: #FF3E41;
    border-color: #FF3E41;
}
.pagination .page-link {
    padding: 12px 20px;
    color: #333;
}
.pagination .page-link:hover {
    color: #FF3E41;
    background-color: #f4f6f7;
}

/* Container fixo na parte inferior */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #002b55; /* substitui bg-blue-850 */
    color: white;
    padding: 12px 16px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

/* Conteúdo flexível e centralizado */
.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    text-align: center;
}

/* Texto */
.cookie-text {
    margin: 0;
    flex: 1;
    font-size: 0.95rem;
}

/* Link de política */
.cookie-link {
    text-decoration: underline;
    font-weight: 600;
    color: white;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: #FF5B00 !important;
}

/* Botões */
.cookie-button {
    background-color: white;
    color: #002b55;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-button:hover {
    color: #FF5B00;
}

/* Area de upload de imagem */
.image-upload-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    background-color: #f8f9fa;
    overflow: hidden;
    position: relative;
}

.img-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.upload-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 720px) {
    .hero-category {
        min-height: 330px;
    }

    .banner-title {
        margin-top: -70px;
    }

    .cards-title {
        font-size: 16px;
    }

    .subcategory-title {
        font-size: 14px;
    }

    .products-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .highlighted-products-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .products-content {
        gap: 6px;
    }

    .img-prod {
        width: 100%;
        object-fit: cover;
        height: 100px;
    }

    .service-item {
        padding: 12px;
    }

    .product-location {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .product-cta-slide {
        display: none;
    }

    .product-cta {
        display: flex;
        flex-direction: column;
        font-size: 14px;
    }

    .product-cta a {
        font-size: 12px;
    }

    .product-cta span {
        color:
    }

    .btn-filter {
        color: #2e2e2e;
        background: none;
        border: none;
        padding: 0;
        font: inherit;
        cursor: pointer;
        outline: inherit;
    }

    .filters-dropdown {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        z-index: 1000;
        padding: 15px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .filters-dropdown.show {
        display: flex;
    }

    .filters-dropdown .select-wrapper {
        margin-bottom: 10px;
    }
}

@media (min-width: 720px) and (max-width: 1200px) {
    .highlighted-products-content {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }
}

