a.cta-href {
    font-size: 2.3rem;
    text-decoration: none;
    transition: all 0.2s ease;
    margin: 0 auto;
    margin-top: 2.6rem;
    display: block;
    padding: 0px 42px !important;
    border: 3px solid var(--color-red);
    border-top-left-radius: 0px;
}

a.cta-href:hover {
    color: var(--color-red);
    background-color: var(--color-white);
    transform: scale(1.05);
}

.hero-banner {
    height: 85vh;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5)), url(/assets/img/banner/hero.webp);
    background-size: cover;
    background-position: center;
    padding-bottom: 80px;
}

.hero-banner .container {
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-selects-wrapper {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-banner button {
    font-size: 1.3rem;
    padding: 15px 30px;
    padding-right: 50px;
    border-radius: 12px;
    color: var(--color-gray);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: white;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%23b11721' d='M137.4 374.6c12.5 12.5 32.8 12.5 45.3 0l128-128c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8L32 192c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9l128 128z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    cursor: pointer;
}

.hero-banner .dropdown-item { 
    font-weight: 700;
}

/* featured products */

#featured-slide {
    padding: 0px 70px;
}

.splide__slide {
    padding: 15px;
}

.product-card {
    border-radius: 20px;
    border: 1px solid var(--color-white);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card .product-info {
    padding: 14px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-card .product-info h3 {
    margin: 0;
    text-align: center;
    color: var(--color-gray);
    font-weight: 700;
    font-size: 1.3rem;
}

.product-card .product-price {
    background-color: var(--color-red);
    color: var(--color-white);
    padding: 14px 18px;
    text-align: center;
    font-size: 1.5rem;
    margin-top: auto;
}

.product-card .product-image-container {
    width: 100%;
    height: auto;
    overflow: hidden;
    background-color: #f5f5f5;
}

.product-card .product-image-container:hover img {
    transform: scale(1.1);
}

.product-card .product-image-container img {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
    object-position: center top;
    transition: all 0.3s ease;
}

.product-card .product-brand-name {
    display: flex;
    justify-content: center;
    font-size: 0.8rem;
    flex-wrap: wrap;
    text-align: center;
    gap: 5px;
}

.product-card .product-brand-name span {
    color: var(--color-gray);
    font-weight: 400;
}

.product-card .product-brand-name span:only-child {
    width: 100%;
    text-align: center;
}

.featured-products a.cta-href {
    background-color: var(--color-gray);
    border-color: var(--color-gray);
}

.featured-products a.cta-href:hover {
    background-color: var(--color-white);
    color: var(--color-gray);
}

/* Fix Splide Grid - Remove height restriction */
#featured-slide .splide__slide__row {
    height: auto !important;
}

/* Splide Arrows - Custom SVG Icons */
.splide__arrow {
    background: transparent !important;
    width: 35px !important;
    height: 35px !important;
    opacity: 1 !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

.splide__arrow svg {
    display: none !important;
}

.splide__arrow--prev {
    background-image: url('/assets/img/icons/arrow-left.svg') !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.splide__arrow--next {
    background-image: url('/assets/img/icons/arrow-right.svg') !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.splide__arrow:hover {
    background-color: transparent !important;
    opacity: 0.7 !important;
}

.splide__arrow:disabled {
    opacity: 0.3 !important;
}


/* sub banner */

.sub-banner {
    padding: 7px 0;
    height: 300px;
    width: 100%;
    background: var(--color-red);
    margin: 6rem 0;
}


.sub-banner h3 {
    font-weight: 700;
    font-size: 4rem;
    color: var(--color-white);
    margin: 0;
    margin-right: auto;
}

.sub-banner h3 span {
    background-color: var(--color-gray);
    padding: 0px 20px;
    border-radius: 20px;
}

/* main-categories */
.main-categories {
    margin: 6rem 0;
}

.main-categories h1 {
    background: var(--color-gray);
    margin: 0 auto;
    margin-bottom: 5rem;
}

.category-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    height: 250px;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: rgba(50, 50, 93, 0.35) 0px 10px 20px -2px, rgba(0, 0, 0, 0.4) 0px 5px 10px -3px;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.category-card .category-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px;
    color: var(--color-white);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) -1%, rgba(0, 0, 0, .8) 50%, transparent 100%);
    z-index: 1;
}

.section-separator-upper {
    border: none;
    height: 5px;
    opacity: 1;
    background: var(--color-gray);
    width: 87%;
    margin: 0 auto;
}

.section-separator-lower {
    border: none;
    height: 5px;
    opacity: 1;
    background: var(--color-red);
    width: 87%;
    margin: 0 auto;
}

/* filter section */

.filter-section {
    margin: 4rem 0;
}

.filter-container {
    padding: 50px 20px;
    background-color: var(--color-gray);
    border-radius: 20px;
    width: fit-content;
    max-width: 100%;
}

.filter-container h4 {
    margin-bottom: 1.3rem;
}

.filter-container .brands-list {
    margin-bottom: 1.3rem;
}

.filter-container .brands-list li::marker {
    color: var(--color-white);
}

.filter-container .brands-list li {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.filter-container .brands-list li a {
    text-decoration: none;
    color: var(--color-white);
    font-weight: 700;
}

/* Year Range Inputs - Pill Style */
.year-range-inputs {
    display: flex;
    margin-bottom: 1.3rem;
    background-color: var(--color-white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.year-input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 8px 15px;
    position: relative;
    background-color: var(--color-light-gray);
}

.year-input-wrapper:first-child {
    border-right: 2px solid var(--color-gray);
}

.year-input-wrapper label {
    color: var(--color-white);
    font-size: 0.95rem;
    font-weight: 700;
    margin-right: 8px;
    white-space: nowrap;
    margin-bottom: 0;
}

.year-input-wrapper input {
    border: none;
    outline: none;
    background: transparent;
    color: var(--color-white);
    font-size: 0.95rem;
    font-weight: 600;
    width: 100%;
    padding: 0;
    font-weight: 400;
}

.year-input-wrapper input::placeholder {
    color: var(--color-white);
    font-weight: 400;
}

.year-input-wrapper input::-webkit-outer-spin-button,
.year-input-wrapper input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.year-input-wrapper input[type=number] {
    -moz-appearance: textfield;
}

/* KM Range Slider */
.km-range-slider {
    margin-bottom: 1.3rem;
}

.km-values {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 0 5px;
}

.km-values span {
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 700;
}

.range-slider-container {
    position: relative;
    height: 6px;
    margin: 0 5px;
}

.range-slider-track {
    position: absolute;
    width: 100%;
    height: 6px;
    background: var(--color-light-gray);
    border-radius: 3px;
    z-index: 1;
}

.range-slider-fill {
    position: absolute;
    height: 6px;
    background: var(--color-red);
    border-radius: 3px;
    z-index: 2;
}

.range-input {
    position: absolute;
    width: 100%;
    height: 6px;
    background: transparent;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    z-index: 3;
}

.range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: var(--color-white);
    border: 3px solid var(--color-red);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.range-input::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: var(--color-white);
    border: 3px solid var(--color-red);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.range-input::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.range-input::-moz-range-thumb:hover {
    transform: scale(1.1);
}

.filter-card {
    background-color: var(--color-light-gray);
    border-radius: 15px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    position: relative;
    overflow: hidden;
}

.filter-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.filter-card .filter-card-info {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: var(--color-lighter-gray);
    color: var(--color-gray);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-section .col-6 {
    padding: 10px;
}

/* Botão toggle filtros mobile */
.btn-filter-toggle {
    background-color: var(--color-red);
    color: var(--color-white);
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
}

.btn-filter-toggle:hover {
    background-color: var(--color-gray);
    transform: scale(1.05);
}

.btn-filter-toggle i {
    font-size: 1.2rem;
}

/* Botão aplicar filtros mobile */
.btn-apply-filters {
    width: 100%;
    background-color: var(--color-red);
    color: var(--color-white);
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.btn-apply-filters:hover {
    background-color: var(--color-gray);
    transform: scale(1.02);
}

/* Offcanvas customização para filtros */
#filterOffcanvas {
    width: 320px;
}

.filter-offcanvas-close-btn {
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
}

.filter-offcanvas-close-btn i {
    font-size: 1.8rem;
    color: var(--color-white);
    transition: all 0.3s ease;
}

.filter-offcanvas-close-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.filter-offcanvas-close-btn:hover i {
    color: var(--color-red);
    transform: rotate(90deg);
}

@media (min-width: 992px) {
    #filterOffcanvas {
        position: static !important;
        visibility: visible !important;
        background-color: transparent !important;
        border: none !important;
        transform: none !important;
    }

    #filterOffcanvas .offcanvas-body {
        padding: 0 !important;
    }
}

/* news-register section */
.news-register {
    background-color: var(--color-white);
    display: flex;
    align-items: center;
}


.news-register h1 {
    background: var(--color-red);
}

.newsletter-form-container {
    background-color: var(--color-lighter-gray);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    margin: 0 auto;
}

.form-floating-custom {
    position: relative;
    margin-bottom: 0;
}

.form-floating-custom input,
.form-floating-custom select {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    border: 2px solid var(--color-gray);
    border-radius: 12px;
    background-color: var(--color-lighter-gray);
    color: var(--color-gray);
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-floating-custom input:focus,
.form-floating-custom select:focus {
    border-color: var(--color-red);
    box-shadow: 0 0 0 3px rgba(177, 23, 33, 0.1);
}

.form-floating-custom label {
    position: absolute;
    left: 15px;
    top: -10px;
    transform: translateY(0);
    font-size: 0.85rem;
    color: var(--color-gray);
    pointer-events: none;
    transition: all 0.3s ease;
    background-color: var(--color-lighter-gray);
    padding: 0 8px;
}

.form-floating-custom input:focus+label,
.form-floating-custom select:focus+label {
    color: var(--color-red);
}

.form-floating-custom input.error,
.form-floating-custom select.error {
    border-color: #dc3545;
}

.form-floating-custom input.error:focus,
.form-floating-custom select.error:focus {
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.error-message {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
    font-family: 'Poppins', sans-serif;
}

.error-message.show {
    display: block;
}

.form-floating-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 320 512'%3E%3Cpath fill='%23b11721' d='M137.4 374.6c12.5 12.5 32.8 12.5 45.3 0l128-128c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8L32 192c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9l128 128z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 14px;
    padding-right: 40px;
    cursor: pointer;
}

.btn-newsletter-submit {
    background-color: var(--color-red);
    color: var(--color-white);
    border: 2px solid var(--color-red);
    padding: 2px 23px;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 11px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-newsletter-submit:hover {
    background-color: var(--color-white);
    color: var(--color-red);
    transform: scale(1.05);
}

.newsletter-disclaimer {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--color-gray);
    text-align: center;
    margin-top: 30px;
    margin-bottom: 0;
    line-height: 1.5;
}

.newsletter-icon-wrapper {
    margin-bottom: 30px;
}

.newsletter-icon-wrapper i {
    font-size: 8rem;
    color: #25D366;
}

.newsletter-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    color: var(--color-gray);
    text-align: center;
    line-height: 1.6;
    margin: 0;
    padding: 0 20px;
}

/* bottom banner */

.bottom-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/assets/img/banner/bottom-banner.webp);
    background-position: right;
    background-size: cover;
    height: 655px;
    width: 100%;
    margin: 6rem 0;
    color: var(--color-white);
    position: relative;
}

.bottom-banner h5 {
    font-size: 3.6rem;
    font-weight: 700;
    margin: 0;
}

.bottom-banner span {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.6rem;
    font-weight: 400;
}

.bottom-banner span span {
    background-color: var(--color-red);
    font-weight: 700;
    font-style: italic;
    border-radius: 7px;
    padding: 0px 11px;
}

.bottom-banner span span:last-of-type {
    background-color: transparent;
    padding: 0;
}

.bottom-banner a {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    font-weight: 700;
    padding: 3px 15px;
    border-radius: 50px;
    font-size: 1.7rem;
    margin-top: 2.4rem;
    color: var(--color-white);
    text-decoration: none;
    display: block;
    width: fit-content;
}

.bottom-banner hr {
    border: none;
    height: 10px;
    background-color: var(--color-gray);
    opacity: 1;
    width: 55%;
    margin: 0;
    margin-right: auto;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    position: absolute;
    bottom: -5px;
    left: 0;
}

/* blog section */
.blog-section {
    margin: 6rem 0;
}

.blog-section h1 {
    background: var(--color-red);
    margin-bottom: 5rem;
}

#blog-slide {
    padding: 0px 70px;
}

#blog-slide .splide__slide {
    padding: 30px 15px;
    transition: none;
}

.blog-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    cursor: pointer;
    position: relative;
    aspect-ratio: 5 / 4.2;
    transform: scale(0.85);
    will-change: transform;
}

.blog-card-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 70%, transparent 100%);
    z-index: 2;
    transition: background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: background-color;
}

.blog-card-title {
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
    transition: font-size 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}


/* Active blog card */
#blog-slide .splide__list {
    align-items: center;
}

#blog-slide .splide__slide.is-active .blog-card {
    transform: scale(1);
}

#blog-slide .splide__slide.is-active .blog-card-content {
    background: var(--color-red);
    box-shadow: rgba(0, 0, 0, 1) 0px -25px 20px -20px;
    padding: 25px 30px;
}

#blog-slide .splide__slide.is-active .blog-card-title {
    font-size: 1.8rem;
}

#blog-slide .splide__slide.is-active .blog-progress-bar {
    opacity: 1;
}

/* feedbacks */
.feedbacks {
    margin: 6rem 0;
}

.feedbacks h1 {
    background: var(--color-gray);
    margin-bottom: 5rem;
}

#testimonials-slide {
    padding: 0px 70px;
}

#testimonials-slide .splide__slide {
    padding: 15px;
}

.testimonial-card {
    background-color: var(--color-white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: rgba(50, 50, 93, 0.35) 0px 10px 20px -2px, rgba(0, 0, 0, 0.4) 0px 5px 10px -3px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--color-red);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    color: var(--color-gray);
    font-size: 1.55rem;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
}

.testimonial-rating i {
    color: var(--color-red);
    font-size: 1.2rem;
}

.testimonial-rating i.far {
    color: #ddd;
}

.testimonial-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.4;
    color: var(--color-gray);
    margin: 0;
    font-weight: 400;
}

@media (max-width: 1475px) {

    .product-card .product-brand-name {
        font-size: .9rem;
    }

    .product-card .product-image-container img {
        object-position: center;
    }

    .product-card .product-info h3 {
        font-size: 2rem;
    }

    .product-card .product-price {
        padding: 13px;
        font-size: 1.7rem;
    }

    .sub-banner h3 {
        font-size: 3.7rem;
    }
}

@media (max-width: 1399px) {
    .sub-banner h3 {
        font-size: 3.2rem;
    }
}

@media (min-width: 1200px) and (max-width: 1350px) {
    .product-card .product-info h3 {
        font-size: 1.69rem;
    }

    .product-card .product-brand-name {
        font-size: .82rem;
    }
}

@media (max-width: 1265px) {
    #blog-slide .splide__slide.is-active .blog-card-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 1199px) {
    .sub-banner h3 {
        font-size: 2.66rem;
    }

    .category-card {
        height: 200px;
    }
}

@media (max-width: 991px) {
    h1 {
        background-color: var(--color-red);
        padding: 4px 24px !important;
        border-radius: 10px;
        font-size: 2.3rem;
        text-align: center;
        font-weight: 700;
        color: var(--color-white);
        width: fit-content;
        margin: 30px auto 26px auto;
    }

    .hero-banner button {
        font-size: 1.1rem;
        padding: 10px 15px;
        padding-right: 42px;
        border-radius: 12px;
    }

    #featured-slide {
        padding: 0px 35px;
    }

    .product-card .product-info h3 {
        font-size: 1.7rem;
    }

    .product-card .product-brand-name {
        font-size: .84rem;
    }

    a.cta-href {
        font-size: 2rem;
    }

    /* Filter container mobile */
    .filter-container {
        padding: 0px
    }

    .sub-banner h3 {
        margin: 0 auto;
        margin-bottom: 40px;
    }

    .sub-banner {
        padding: 55px 0;
        height: auto;
    }

    .category-card {
        height: 165px;
    }

    .sub-banner {
        margin-bottom: 3rem;
    }

    .main-categories {
        margin: 3.5rem 0;
    }

    .main-categories h1 {
        background: var(--color-gray);
        margin-bottom: 3rem;
    }

    .bottom-banner {
        height: 500px;
    }

    .bottom-banner h5 {
        font-size: 3rem;
    }

    .bottom-banner span {
        font-size: 1.4rem;
    }

    .bottom-banner a {
        font-size: 1.5rem;
        margin-top: 2rem;
    }

    #blog-slide {
        padding: 0px 50px;
    }

    .blog-card-title {
        font-size: 1.3rem;
    }

    #blog-slide .splide__slide.is-active .blog-card-title {
        font-size: 1.6rem;
    }

    .blog-section,
    .feedbacks {
        margin: 1.8rem 0;
    }

    .blog-section h1,
    .feedbacks h1 {
        margin-bottom: 2rem;
    }

    /* News register responsivo */
    .newsletter-icon-wrapper i {
        font-size: 6rem;
    }

    .newsletter-description {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .form-floating-custom input,
    .form-floating-custom select {
        font-size: 1rem;
        padding: 12px;
    }

    .form-floating-custom label {
        font-size: 0.8rem;
    }

    .filter-section {
        margin-bottom: 2rem;
    }

}

@media (max-width: 800px) {
    .blog-card {
        max-width: 420px;
    }

    .product-card .product-info h3 {
        font-size: 1.6rem;
    }

    .product-card .product-brand-name {
        font-size: .81rem;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 1.9rem;
    }

    .hero-banner {
        height: 75vh;
        padding-bottom: 30px;
    }

    .hero-selects-wrapper {
        gap: 12px;
    }

    .hero-banner button {
        
        font-size: 1rem;
        padding: 10px 15px;
        padding-right: 40px;
    }

    a.cta-href {
        font-size: 1.68rem;
    }


    .sub-banner h3 {
        font-size: 2.2rem;
    }

    .sub-banner h3 span {
        border-radius: 10px;
    }

    .sub-banner .img-fluid {
        max-width: 480px;
    }

    .main-categories .col-md-3 {
        padding: 10px;
    }

    .bottom-banner {
        height: 400px;
        margin: 4rem 0;
    }

    .bottom-banner h5 {
        font-size: 2.4rem;
    }

    .bottom-banner span {
        font-size: 1.2rem;
    }

    .bottom-banner a {
        font-size: 1.3rem;
        margin-top: 1.5rem;
    }

    .bottom-banner hr {
        width: 65%;
    }

    #blog-slide {
        padding: 0px 40px;
    }

    .blog-card-title {
        font-size: 1.2rem;
    }

    #blog-slide .splide__slide.is-active .blog-card-title {
        font-size: 1.5rem;
    }

    /* News register */
    .newsletter-icon-wrapper {
        margin-bottom: 20px;
    }

    .newsletter-icon-wrapper i {
        font-size: 5rem;
    }

    .newsletter-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 620px) {
    .btn-newsletter-submit {
        font-size: 1.3rem;
    }

    /* News register responsivo */
    .newsletter-icon-wrapper i {
        font-size: 5.5rem;
    }

    .newsletter-description {
        font-size: 0.9rem;
    }

    /* Testimonials responsivo */
    #testimonials-slide {
        padding: 0px 0px;
        display: flex;
        flex-direction: column;
    }

    #testimonials-slide .splide__track {
        order: 1;
    }

    #testimonials-slide .splide__arrows {
        order: 2;
        position: static;
        display: flex;
        justify-content: space-around;
        gap: 20px;
        margin-top: 8px;
    }

    #testimonials-slide .splide__slide {
        padding: 15px 0px;
    }

    #testimonials-slide .splide__arrow {
        position: static;
        transform: none;
    }

    .testimonial-card {
        padding: 25px 20px;
    }

    .testimonial-name {
        font-size: 1.3rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        height: 70vh;

    }

    .hero-selects-wrapper {
        gap: 10px;
    }

    .hero-banner button {
      
        font-size: 0.9rem;
        padding: 8px 12px;
        padding-right: 35px;
        border-radius: 10px;
    }

    .sub-banner {
        margin: 4rem 0;
    }

    .sub-banner h3 {
        font-size: 1.9rem;
    }

    .sub-banner .img-fluid {
        max-width: 440px;
    }

    .bottom-banner {
        height: 350px;
    }

    .bottom-banner h5 {
        font-size: 2rem;
    }

    .bottom-banner span {
        font-size: 1rem;
    }

    .bottom-banner a {
        font-size: 1.2rem;
        padding: 3px 12px;
        margin-top: 1.2rem;
    }

    .bottom-banner hr {
        width: 70%;
        height: 8px;
    }

    .newsletter-form-container {
        padding: 35px 20px;
    }

    .news-register h1 {
        margin-bottom: 40px !important;
    }

    .btn-newsletter-submit {
        font-size: 1.2rem;
    }

    /* News register mobile */
    .newsletter-icon-wrapper {
        margin-bottom: 15px;
    }

    .newsletter-icon-wrapper i {
        font-size: 4.5rem;
    }

    .newsletter-description {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .form-floating-custom input,
    .form-floating-custom select {
        font-size: 0.95rem;
        padding: 12px;
    }

    #blog-slide {
        padding: 0px 30px;
    }

    .blog-card-title {
        font-size: 1.1rem;
    }

    #blog-slide .splide__slide.is-active .blog-card-title {
        font-size: 1.4rem;
    }

    #blog-slide .splide__slide.is-active .blog-card-content {
        padding: 15px
    }

    /* News register mobile */
    .newsletter-icon-wrapper {
        margin-bottom: 15px;
    }

    .newsletter-icon-wrapper i {
        font-size: 4.5rem;
    }

    .newsletter-description {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .form-floating-custom input,
    .form-floating-custom select {
        font-size: 0.95rem;
        padding: 12px;
    }
}

@media (max-width: 495px) {
    .product-card .product-price {
        padding: 13px;
        font-size: 1.5rem;
    }

    .splide__arrow--next {
        right: -0.1rem !important;
    }

    .splide__arrow--prev {
        left: -0.1rem !important;
    }


    .sub-banner h3 {
        font-size: 1.76rem;
    }

    .sub-banner .img-fluid {
        max-width: 400px;
    }

    .bottom-banner {
        height: 300px;
    }

    .bottom-banner h5 {
        font-size: 1.6rem;
    }

    .bottom-banner span {
        font-size: 0.9rem;
    }

    .bottom-banner a {
        font-size: 1.1rem;
        padding: 2px 10px;
        margin-top: 1rem;
    }

    .bottom-banner hr {
        width: 75%;
        height: 7px;
    }

    .btn-newsletter-submit {
        font-size: 1.1rem;
    }

    /* News register pequeno */
    .newsletter-icon-wrapper i {
        font-size: 3.8rem;
    }

    .newsletter-description {
        font-size: 0.82rem;
    }

    #blog-slide {
        padding: 0px 25px;
    }

    .blog-card-title {
        font-size: 1rem;
    }

    #blog-slide .splide__slide.is-active .blog-card-title {
        font-size: 1.3rem;
    }

}

@media (max-width: 460px) {
    h1 {
        font-size: 1.5rem;
        padding: 8px 24px !important;
    }

    .product-card .product-price {
        padding: 13px;
        font-size: 1.3rem;
    }

    .product-card .product-info {
        padding: 10px;
    }

    .product-card .product-info h3 {
        font-size: 1.5rem;
    }

        .product-card .product-brand-name {
        font-size: .72rem;
    }

    /* .product-card .product-brand-name {
        flex-direction: column;
        align-items: center;
        gap: 0px;
        margin-bottom: 3px;
    } */

    #featured-slide {
        padding: 0px 15px;
    }

    a.cta-href {
        font-size: 1.2rem;
        padding: 3px 24px !important;
        margin-top: 1.1rem;
    }

    .sub-banner h3 {
        font-size: 1.3rem;
    }

    .sub-banner .img-fluid {
        max-width: 320px;
    }

    .sub-banner {
        margin: 2.5rem 0;
    }

    .bottom-banner {
        height: 280px;
        margin: 3rem 0;
    }

    .bottom-banner h5 {
        font-size: 1.4rem;
    }

    .bottom-banner span {
        font-size: 0.85rem;
    }

    .bottom-banner span span {
        padding: 0px 8px;
        border-radius: 5px;
    }

    .bottom-banner a {
        font-size: 1rem;
        padding: 2px 10px;
        margin-top: 0.8rem;
    }

    .bottom-banner hr {
        width: 80%;
        height: 6px;
    }

    .category-card {
        height: unset;
        aspect-ratio: 16 / 14;
    }

    .category-card .category-name {
        font-size: 1.6rem;
    }

    .btn-newsletter-submit {
        font-size: 1rem;
    }

    /* News register extra pequeno */
    .newsletter-icon-wrapper i {
        font-size: 3.2rem;
    }

    .newsletter-description {
        font-size: 0.78rem;
        padding: 0 5px;
    }

    .form-floating-custom input,
    .form-floating-custom select {
        font-size: 0.9rem;
        padding: 10px;
    }

    .form-floating-custom label {
        font-size: 0.75rem;
    }

    /* Testimonials extra pequeno */
    .testimonial-card {
        padding: 20px 15px;
    }

    .testimonial-header {
        gap: 15px;
    }

    .testimonial-avatar {
        width: 60px;
        height: 60px;
    }

    .testimonial-name {
        font-size: 1.2rem;
    }

    .testimonial-rating i {
        font-size: 1rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    /* News register extra pequeno */
    .newsletter-icon-wrapper i {
        font-size: 3.5rem;
    }

    .newsletter-description {
        font-size: 0.8rem;
        padding: 0 5px;
    }

    .form-floating-custom input,
    .form-floating-custom select {
        font-size: 0.9rem;
        padding: 10px;
    }

    .form-floating-custom label {
        font-size: 0.75rem;
    }

    #blog-slide {
        padding: 0px 20px;
    }

    .blog-card-title {
        font-size: 0.95rem;
    }

    #blog-slide .splide__slide.is-active .blog-card-title {
        font-size: 1.2rem;
    }

    /* News register extra pequeno */
    .newsletter-icon-wrapper i {
        font-size: 3.5rem;
    }

    .newsletter-description {
        font-size: 0.8rem;
        padding: 0 5px;
    }

    .form-floating-custom input,
    .form-floating-custom select {
        font-size: 0.9rem;
        padding: 10px;
    }

    .form-floating-custom label {
        font-size: 0.75rem;
    }
}

@media (max-width: 355px) {
    .splide__arrow {
        width: 25px !important;
        height: 25px !important;
    }

    .sub-banner h3 {
        font-size: 1.1rem;
    }

    .sub-banner .img-fluid {
        max-width: 300px;

    }

    .bottom-banner {
        height: 250px;
        margin: 2.5rem 0;
    }

    .bottom-banner h5 {
        font-size: 1.2rem;
    }

    .bottom-banner span {
        font-size: 0.75rem;
    }

    .bottom-banner span span {
        padding: 0px 6px;
    }

    .bottom-banner a {
        font-size: 0.9rem;
        padding: 2px 8px;
        margin-top: 0.6rem;
    }

    .bottom-banner hr {
        width: 85%;
        height: 5px;
    }

    .category-card .category-name {
        font-size: 1.36rem;
    }

    #blog-slide {
        padding: 0px 15px;
    }

    .blog-card-title {
        font-size: 0.85rem;
    }

    #blog-slide .splide__slide.is-active .blog-card-title {
        font-size: 1.1rem;
    }
}

/* Ajustes para o filtro da p�gina index no desktop */
@media (min-width: 992px) {
    #homeFilterOffcanvas.offcanvas-start {
        position: static !important;
        transform: none !important;
        visibility: visible !important;
        width: 100% !important;
        border: none !important;
        background-color: transparent !important;
    }

    #homeFilterOffcanvas .offcanvas-body {
        padding: 0 !important;
    }
}
