/* ============================================================
   Centrolift — Elementor Widgets CSS
   Design System custom properties:
     --cl-orange: #F28524
     --cl-anthracite: #232323
     --cl-mech-grey: #707070
     --cl-white: #FFFFFF
     --cl-studio: #F0F2F5
     --cl-studio-dark: #E2E5EB
   ============================================================ */

/* -------------------------------------------------------------------------
   1. Shared Variables & Reset
   ------------------------------------------------------------------------- */
:root {
    --cl-orange: #F28524;
    --cl-anthracite: #232323;
    --cl-mech-grey: #707070;
    --cl-white: #FFFFFF;
    --cl-studio: #F0F2F5;
    --cl-studio-dark: #E2E5EB;
    --cl-radius-sm: 8px;
    --cl-radius: 12px;
    --cl-radius-lg: 20px;
    --cl-shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --cl-shadow: 0 4px 24px rgba(0,0,0,0.08);
    --cl-shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
    --cl-transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* -------------------------------------------------------------------------
   2. Part Card Shared Styles (Pecas)
   ------------------------------------------------------------------------- */
.cl-part-card {
    background: var(--cl-white);
    border-radius: var(--cl-radius);
    overflow: hidden;
    box-shadow: var(--cl-shadow-sm);
    transition: box-shadow var(--cl-transition), transform var(--cl-transition);
    display: flex;
    flex-direction: column;
}
.cl-part-card:hover {
    box-shadow: var(--cl-shadow);
    transform: translateY(-2px);
}
.cl-part-card__thumbnail {
    position: relative;
    width: 100%;
    padding-top: 75%;
    background: var(--cl-studio);
    overflow: hidden;
}
.cl-part-card__thumbnail img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    transition: transform var(--cl-transition);
}
.cl-part-card:hover .cl-part-card__thumbnail img {
    transform: scale(1.05);
}
.cl-part-card__code {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--cl-anthracite);
    color: var(--cl-white);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    z-index: 1;
}
.cl-part-card__stock {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 1;
}
.cl-part-card__stock--available {
    background: #e8f5e9;
    color: #2e7d32;
}
.cl-part-card__stock--low {
    background: #fff3e0;
    color: #e65100;
}
.cl-part-card__stock--out {
    background: #ffebee;
    color: #c62828;
}
.cl-part-card__body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.cl-part-card__family {
    font-size: 12px;
    font-weight: 600;
    color: var(--cl-orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.cl-part-card__title {
    font-size: 16px;
    font-weight: 600;
    color: var(--cl-anthracite);
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.cl-part-card__title a {
    color: inherit;
    text-decoration: none;
}
.cl-part-card__title a:hover {
    color: var(--cl-orange);
}
.cl-part-card__footer {
    padding: 0 16px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cl-part-card__cta {
    font-size: 13px;
    font-weight: 600;
    color: var(--cl-orange);
    text-decoration: none;
}
.cl-part-card__cta:hover {
    text-decoration: underline;
}

/* -------------------------------------------------------------------------
   3. Icons List
   ------------------------------------------------------------------------- */
.cl-icons-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}
.cl-icons-list__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    flex: 1 1 0;
    min-width: 180px;
    position: relative;
}
.cl-icons-list__item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--cl-studio-dark);
}
.cl-icons-list__item:last-child::after {
    display: none;
}
.cl-icons-list__icon {
    flex-shrink: 0;
    color: var(--cl-orange);
    line-height: 1;
}
.cl-icons-list__icon svg {
    width: 32px;
    height: 32px;
}
.cl-icons-list__label {
    font-size: 14px;
    font-weight: 500;
    color: var(--cl-anthracite);
}

/* -------------------------------------------------------------------------
   4. Images Gallery
   ------------------------------------------------------------------------- */
.cl-images-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.cl-images-gallery--cols-2 { grid-template-columns: repeat(2, 1fr); }
.cl-images-gallery--cols-4 { grid-template-columns: repeat(4, 1fr); }
.cl-images-gallery__item {
    position: relative;
    border-radius: var(--cl-radius-sm);
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--cl-studio);
    cursor: pointer;
}
.cl-images-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--cl-transition);
}
.cl-images-gallery__item:hover img {
    transform: scale(1.1);
}
.cl-images-gallery__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    transition: opacity var(--cl-transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.cl-images-gallery__item:hover .cl-images-gallery__overlay {
    opacity: 1;
}
.cl-images-gallery__overlay svg {
    color: var(--cl-white);
    width: 32px;
    height: 32px;
}

/* -------------------------------------------------------------------------
   5. Banners (Small / Medium / Large)
   ------------------------------------------------------------------------- */
.cl-banner-small,
.cl-banner-medium,
.cl-banner-large {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--cl-radius);
    overflow: hidden;
    display: flex;
    align-items: center;
}
.cl-banner-small {
    min-height: 200px;
    padding: 24px;
}
.cl-banner-medium {
    min-height: 360px;
    padding: 32px;
}
.cl-banner-large {
    min-height: 500px;
    padding: 48px;
}
.cl-banner-small__overlay,
.cl-banner-medium__overlay,
.cl-banner-large__overlay {
    position: absolute;
    inset: 0;
    background: rgba(35,35,35,0.45);
    z-index: 1;
}
.cl-banner-small__content,
.cl-banner-medium__content,
.cl-banner-large__content {
    position: relative;
    z-index: 2;
    max-width: 480px;
}
.cl-banner-small__content { max-width: 360px; }
.cl-banner-large__content { max-width: 600px; }
.cl-banner-small__kicker,
.cl-banner-medium__kicker,
.cl-banner-large__kicker {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--cl-orange);
    display: block;
    margin-bottom: 8px;
}
.cl-banner-small__title,
.cl-banner-medium__title,
.cl-banner-large__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--cl-white);
    margin: 0 0 12px;
    line-height: 1.2;
}
.cl-banner-medium__title { font-size: 36px; }
.cl-banner-large__title { font-size: 48px; }
.cl-banner-small__desc,
.cl-banner-medium__desc,
.cl-banner-large__desc {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    margin: 0 0 20px;
    line-height: 1.5;
}
.cl-banner-medium__desc { font-size: 16px; }
.cl-banner-large__desc { font-size: 18px; }
.cl-banner-small__badge,
.cl-banner-medium__badge,
.cl-banner-large__badge {
    display: inline-block;
    background: var(--cl-orange);
    color: var(--cl-white);
    font-size: 20px;
    font-weight: 800;
    padding: 8px 20px;
    border-radius: var(--cl-radius-sm);
    margin-bottom: 16px;
}
.cl-banner-medium__badge { font-size: 24px; padding: 10px 24px; }
.cl-banner-large__badge { font-size: 28px; padding: 12px 28px; }
.cl-banner-small__btn,
.cl-banner-medium__btn,
.cl-banner-large__btn {
    display: inline-block;
    background: var(--cl-orange);
    color: var(--cl-white);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: var(--cl-radius-sm);
    text-decoration: none;
    transition: background var(--cl-transition);
}
.cl-banner-small__btn:hover,
.cl-banner-medium__btn:hover,
.cl-banner-large__btn:hover {
    background: #e0751a;
    color: var(--cl-white);
}

/* -------------------------------------------------------------------------
   6. Icon Box
   ------------------------------------------------------------------------- */
.cl-icon-box {
    background: var(--cl-white);
    border-radius: var(--cl-radius);
    padding: 24px;
    transition: box-shadow var(--cl-transition), transform var(--cl-transition);
}
.cl-icon-box-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    border-radius: var(--cl-radius);
}
.cl-icon-box--icon-left .cl-icon-box-inner {
    flex-direction: row;
    align-items: flex-start;
}
.cl-icon-box--align-left { text-align: left; }
.cl-icon-box--align-center { text-align: center; }
.cl-icon-box--align-right { text-align: right; }
.cl-icon-box--icon-top.cl-icon-box--align-center .cl-icon-box-inner {
    align-items: center;
}
.cl-icon-box-icon {
    line-height: 1;
    color: var(--cl-orange);
    flex-shrink: 0;
}
.cl-icon-box-icon svg {
    width: 48px;
    height: 48px;
}
.cl-icon-box-content {
    flex: 1;
    min-width: 0;
}
.cl-icon-box-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--cl-anthracite);
    margin: 0 0 6px;
}
.cl-icon-box-desc {
    font-size: 14px;
    color: var(--cl-mech-grey);
    line-height: 1.5;
}
.cl-icon-box:hover {
    transform: translateY(-4px);
}

/* -------------------------------------------------------------------------
   7. Counter
   ------------------------------------------------------------------------- */
.cl-counter {
    text-align: center;
}
.cl-counter__icon {
    color: var(--cl-orange);
    margin-bottom: 12px;
    line-height: 1;
}
.cl-counter__icon svg {
    width: 48px;
    height: 48px;
}
.cl-counter__number {
    font-size: 48px;
    font-weight: 800;
    color: var(--cl-anthracite);
    line-height: 1;
    margin-bottom: 8px;
}
.cl-counter__suffix {
    font-size: 32px;
}
.cl-counter__label {
    font-size: 14px;
    font-weight: 500;
    color: var(--cl-mech-grey);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.cl-counter__number-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}
.cl-counter--with-icon .cl-counter__number-wrapper { justify-content: center; }

/* -------------------------------------------------------------------------
   8. Image Box
   ------------------------------------------------------------------------- */
.cl-image-box {
    border-radius: var(--cl-radius);
    overflow: hidden;
    background: var(--cl-white);
    box-shadow: var(--cl-shadow-sm);
    transition: box-shadow var(--cl-transition), transform var(--cl-transition);
}
.cl-image-box:hover {
    box-shadow: var(--cl-shadow);
    transform: translateY(-2px);
}
.cl-image-box__image {
    width: 100%;
    position: relative;
    overflow: hidden;
}
.cl-image-box__image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--cl-transition);
}
.cl-image-box:hover .cl-image-box__image img {
    transform: scale(1.05);
}
.cl-image-box__body {
    padding: 20px;
}
.cl-image-box__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--cl-anthracite);
    margin-bottom: 8px;
}
.cl-image-box__desc {
    font-size: 14px;
    color: var(--cl-mech-grey);
    line-height: 1.5;
}

/* -------------------------------------------------------------------------
   9. Bubbles (Circular Stats)
   ------------------------------------------------------------------------- */
.cl-bubbles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}
.cl-bubble {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.cl-bubble__circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--cl-white);
    border: 4px solid var(--cl-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: background var(--cl-transition);
}
.cl-bubble__circle:hover {
    background: var(--cl-orange);
}
.cl-bubble__circle:hover .cl-bubble__value {
    color: var(--cl-white);
}
.cl-bubble__value {
    font-size: 28px;
    font-weight: 800;
    color: var(--cl-anthracite);
    transition: color var(--cl-transition);
}
.cl-bubble__label {
    font-size: 13px;
    font-weight: 600;
    color: var(--cl-mech-grey);
    text-transform: uppercase;
}

/* -------------------------------------------------------------------------
   10. Slides (Hero Slider)
   ------------------------------------------------------------------------- */
.cl-slides {
    position: relative;
    overflow: hidden;
    border-radius: var(--cl-radius-lg);
}
.cl-slides__track {
    display: flex;
    transition: transform 0.5s ease;
}
.cl-slide {
    flex: 0 0 100%;
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cl-slide--kenburns .cl-slide__bg {
    animation: clKenBurns 20s ease-in-out infinite alternate;
}
@keyframes clKenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}
.cl-slide__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.cl-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(35,35,35,0.7) 0%, rgba(35,35,35,0.2) 100%);
}
.cl-slide__content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 48px;
    text-align: left;
}
.cl-slide__content--center { text-align: center; margin: 0 auto; }
.cl-slide__content--right { text-align: right; margin-left: auto; }
.cl-slide__title {
    font-size: 48px;
    font-weight: 800;
    color: var(--cl-white);
    margin-bottom: 16px;
    line-height: 1.1;
}
.cl-slide__subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
    line-height: 1.5;
}
.cl-slide__btn {
    display: inline-block;
    background: var(--cl-orange);
    color: var(--cl-white);
    font-size: 15px;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: var(--cl-radius-sm);
    text-decoration: none;
    transition: background var(--cl-transition);
}
.cl-slide__btn:hover {
    background: #e0751a;
}
.cl-slides__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--cl-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cl-anthracite);
    box-shadow: var(--cl-shadow);
    transition: background var(--cl-transition);
}
.cl-slides__arrow:hover {
    background: var(--cl-orange);
    color: var(--cl-white);
}
.cl-slides__arrow--prev { left: 20px; }
.cl-slides__arrow--next { right: 20px; }
.cl-slides__dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}
.cl-slides__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    transition: background var(--cl-transition), width var(--cl-transition);
}
.cl-slides__dot--active {
    background: var(--cl-orange);
    width: 28px;
    border-radius: 5px;
}

/* -------------------------------------------------------------------------
   11. Journey (Horizontal Timeline)
   ------------------------------------------------------------------------- */
.cl-journey {
    position: relative;
    padding: 40px 0;
}
.cl-journey__track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0;
    padding-bottom: 20px;
}
.cl-journey__step {
    flex: 1 0 auto;
    min-width: 200px;
    text-align: center;
    scroll-snap-align: center;
    cursor: pointer;
    position: relative;
}
.cl-journey__dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--cl-studio-dark);
    margin: 0 auto 12px;
    transition: background var(--cl-transition);
    position: relative;
    z-index: 2;
}
.cl-journey__step--active .cl-journey__dot {
    background: var(--cl-orange);
}
.cl-journey__line {
    position: absolute;
    top: 8px;
    left: 50%;
    right: -50%;
    height: 2px;
    background: var(--cl-studio-dark);
    z-index: 1;
}
.cl-journey__step:last-child .cl-journey__line {
    display: none;
}
.cl-journey__step--active .cl-journey__line {
    background: var(--cl-orange);
}
.cl-journey__label {
    font-size: 13px;
    font-weight: 600;
    color: var(--cl-mech-grey);
}
.cl-journey__step--active .cl-journey__label {
    color: var(--cl-anthracite);
}
.cl-journey__content-panel {
    display: none;
    padding: 24px;
    background: var(--cl-studio);
    border-radius: var(--cl-radius);
    margin-top: 24px;
}
.cl-journey__content-panel--active {
    display: block;
}

/* -------------------------------------------------------------------------
   12. Process (Vertical Alternating Steps)
   ------------------------------------------------------------------------- */
.cl-process {
    position: relative;
    padding: 20px 0;
}
.cl-process::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--cl-studio-dark);
    transform: translateX(-50%);
}
.cl-process__step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 48px;
    position: relative;
}
.cl-process__step:nth-child(odd) {
    flex-direction: row;
}
.cl-process__step:nth-child(even) {
    flex-direction: row-reverse;
}
.cl-process__step:last-child {
    margin-bottom: 0;
}
.cl-process__number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--cl-orange);
    color: var(--cl-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    z-index: 2;
}
.cl-process__content {
    width: 45%;
    padding: 0 40px;
}
.cl-process__step:nth-child(odd) .cl-process__content {
    text-align: right;
}
.cl-process__step:nth-child(even) .cl-process__content {
    text-align: left;
}
.cl-process__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--cl-anthracite);
    margin-bottom: 8px;
}
.cl-process__desc {
    font-size: 14px;
    color: var(--cl-mech-grey);
    line-height: 1.5;
}
.cl-process__spacer {
    width: 45%;
}

/* -------------------------------------------------------------------------
   13. Testimonials (Carousel Cards)
   ------------------------------------------------------------------------- */
.cl-testimonials {
    position: relative;
}
.cl-testimonials__track {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
}
.cl-testimonial-card {
    flex: 0 0 100%;
    padding: 32px;
    background: var(--cl-white);
    border-radius: var(--cl-radius);
    box-shadow: var(--cl-shadow-sm);
}
.cl-testimonial-card__stars {
    color: var(--cl-orange);
    margin-bottom: 16px;
    display: flex;
    gap: 4px;
}
.cl-testimonial-card__text {
    font-size: 16px;
    font-style: italic;
    color: var(--cl-anthracite);
    line-height: 1.6;
    margin-bottom: 20px;
}
.cl-testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.cl-testimonial-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--cl-studio);
}
.cl-testimonial-card__name {
    font-size: 15px;
    font-weight: 600;
    color: var(--cl-anthracite);
}
.cl-testimonial-card__role {
    font-size: 13px;
    color: var(--cl-mech-grey);
}
.cl-testimonials__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cl-white);
    border: 1px solid var(--cl-studio-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cl-anthracite);
    transition: all var(--cl-transition);
    z-index: 2;
}
.cl-testimonials__arrow:hover {
    background: var(--cl-orange);
    color: var(--cl-white);
    border-color: var(--cl-orange);
}
.cl-testimonials__arrow--prev { left: -20px; }
.cl-testimonials__arrow--next { right: -20px; }
.cl-testimonials__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.cl-testimonials__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cl-studio-dark);
    border: none;
    cursor: pointer;
}
.cl-testimonials__dot--active {
    background: var(--cl-orange);
}

/* -------------------------------------------------------------------------
   14. Newsletter
   ------------------------------------------------------------------------- */
.cl-newsletter {
    background: var(--cl-studio);
    border-radius: var(--cl-radius-lg);
    padding: 48px;
    display: flex;
    align-items: center;
    gap: 40px;
}
.cl-newsletter__content {
    flex: 1;
}
.cl-newsletter__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--cl-anthracite);
    margin-bottom: 8px;
}
.cl-newsletter__desc {
    font-size: 15px;
    color: var(--cl-mech-grey);
    margin-bottom: 20px;
}
.cl-newsletter__form {
    display: flex;
    gap: 8px;
    max-width: 480px;
}
.cl-newsletter__input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid var(--cl-studio-dark);
    border-radius: var(--cl-radius-sm);
    font-size: 14px;
    font-family: inherit;
    background: var(--cl-white);
    outline: none;
    transition: border-color var(--cl-transition);
}
.cl-newsletter__input:focus {
    border-color: var(--cl-orange);
}
.cl-newsletter__btn {
    padding: 12px 28px;
    background: var(--cl-orange);
    color: var(--cl-white);
    border: none;
    border-radius: var(--cl-radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--cl-transition);
}
.cl-newsletter__btn:hover {
    background: #e0751a;
}
.cl-newsletter__image {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: var(--cl-radius);
    overflow: hidden;
}
.cl-newsletter__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* -------------------------------------------------------------------------
   15. Pecas Tabs
   ------------------------------------------------------------------------- */
.cl-pecas-tabs__nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--cl-studio-dark);
    margin-bottom: 24px;
}
.cl-pecas-tabs__nav-btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--cl-mech-grey);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    transition: color var(--cl-transition), border-color var(--cl-transition);
}
.cl-pecas-tabs__nav-btn:hover {
    color: var(--cl-anthracite);
}
.cl-pecas-tabs__nav-btn--active {
    color: var(--cl-orange);
    border-bottom-color: var(--cl-orange);
}
.cl-pecas-tabs__panel {
    display: none;
}
.cl-pecas-tabs__panel--active {
    display: block;
}
.cl-pecas-tabs__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* -------------------------------------------------------------------------
   16. Pecas Carousel
   ------------------------------------------------------------------------- */
.cl-pecas-carousel {
    position: relative;
}
.cl-pecas-carousel__track {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
}
.cl-pecas-carousel .cl-part-card {
    flex: 0 0 calc(25% - 15px);
    margin-right: 20px;
    min-width: 0;
}
.cl-pecas-carousel__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cl-white);
    border: 1px solid var(--cl-studio-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cl-anthracite);
    transition: all var(--cl-transition);
    z-index: 2;
}
.cl-pecas-carousel__arrow:hover {
    background: var(--cl-orange);
    color: var(--cl-white);
    border-color: var(--cl-orange);
}
.cl-pecas-carousel__arrow--prev { left: -20px; }
.cl-pecas-carousel__arrow--next { right: -20px; }
.cl-pecas-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.cl-pecas-carousel__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cl-studio-dark);
    border: none;
    cursor: pointer;
}
.cl-pecas-carousel__dot--active {
    background: var(--cl-orange);
}

/* -------------------------------------------------------------------------
   17. Pecas Grid
   ------------------------------------------------------------------------- */
.cl-pecas-grid {
    display: grid;
    gap: 20px;
}
.cl-pecas-grid--cols-1 { grid-template-columns: repeat(1, 1fr); }
.cl-pecas-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.cl-pecas-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.cl-pecas-grid--cols-4 { grid-template-columns: repeat(4, 1fr); }
.cl-pecas-grid--cols-5 { grid-template-columns: repeat(5, 1fr); }
.cl-pecas-grid--cols-6 { grid-template-columns: repeat(6, 1fr); }

/* -------------------------------------------------------------------------
   18. Pecas List
   ------------------------------------------------------------------------- */
.cl-pecas-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cl-pecas-list__item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    background: var(--cl-white);
    border-radius: var(--cl-radius-sm);
    box-shadow: var(--cl-shadow-sm);
    transition: box-shadow var(--cl-transition);
}
.cl-pecas-list__item:hover {
    box-shadow: var(--cl-shadow);
}
.cl-pecas-list__image {
    width: 64px;
    height: 64px;
    border-radius: var(--cl-radius-sm);
    overflow: hidden;
    background: var(--cl-studio);
    flex-shrink: 0;
}
.cl-pecas-list__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}
.cl-pecas-list__info {
    flex: 1;
    min-width: 0;
}
.cl-pecas-list__title {
    font-size: 15px;
    font-weight: 600;
    color: var(--cl-anthracite);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cl-pecas-list__meta {
    font-size: 12px;
    color: var(--cl-mech-grey);
}

/* -------------------------------------------------------------------------
   19. Marcas Grid
   ------------------------------------------------------------------------- */
.cl-marcas-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.cl-marcas-grid--cols-4 { grid-template-columns: repeat(4, 1fr); }
.cl-marcas-grid--cols-5 { grid-template-columns: repeat(5, 1fr); }
.cl-marca-card {
    background: var(--cl-white);
    border: 1px solid var(--cl-studio-dark);
    border-radius: var(--cl-radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    text-decoration: none;
    transition: box-shadow var(--cl-transition), border-color var(--cl-transition);
}
.cl-marca-card:hover {
    box-shadow: var(--cl-shadow);
    border-color: var(--cl-orange);
}
.cl-marca-card__logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: var(--cl-studio);
    border-radius: var(--cl-radius-sm);
}
.cl-marca-card__name {
    font-size: 13px;
    font-weight: 600;
    color: var(--cl-anthracite);
}
.cl-marca-card__count {
    font-size: 12px;
    color: var(--cl-mech-grey);
}

/* -------------------------------------------------------------------------
   20. Marcas Carousel
   ------------------------------------------------------------------------- */
.cl-marcas-carousel {
    position: relative;
}
.cl-marcas-carousel__track {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
}
.cl-marcas-carousel .cl-marca-card {
    flex: 0 0 calc(16.666% - 17px);
    margin-right: 20px;
    min-width: 0;
}
.cl-marcas-carousel__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cl-white);
    border: 1px solid var(--cl-studio-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cl-anthracite);
    transition: all var(--cl-transition);
    z-index: 2;
}
.cl-marcas-carousel__arrow:hover {
    background: var(--cl-orange);
    color: var(--cl-white);
    border-color: var(--cl-orange);
}
.cl-marcas-carousel__arrow--prev { left: -20px; }
.cl-marcas-carousel__arrow--next { right: -20px; }

/* -------------------------------------------------------------------------
   21. Recently Viewed
   ------------------------------------------------------------------------- */
.cl-recently-viewed {
    position: relative;
}
.cl-recently-viewed__track {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
}
.cl-recently-viewed .cl-part-card {
    flex: 0 0 calc(25% - 15px);
    margin-right: 20px;
    min-width: 0;
}
.cl-recently-viewed__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cl-white);
    border: 1px solid var(--cl-studio-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cl-anthracite);
    transition: all var(--cl-transition);
    z-index: 2;
}
.cl-recently-viewed__arrow:hover {
    background: var(--cl-orange);
    color: var(--cl-white);
    border-color: var(--cl-orange);
}
.cl-recently-viewed__arrow--prev { left: -20px; }
.cl-recently-viewed__arrow--next { right: -20px; }
.cl-recently-viewed__loading {
    text-align: center;
    padding: 40px;
    color: var(--cl-mech-grey);
}
.cl-recently-viewed__empty {
    text-align: center;
    padding: 40px;
    color: var(--cl-mech-grey);
    font-size: 14px;
}

/* -------------------------------------------------------------------------
   22. Posts Grid
   ------------------------------------------------------------------------- */
.cl-posts-grid {
    display: grid;
    gap: 24px;
}
.cl-posts-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.cl-posts-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.cl-posts-grid--cols-4 { grid-template-columns: repeat(4, 1fr); }
.cl-post-card {
    background: var(--cl-white);
    border-radius: var(--cl-radius);
    overflow: hidden;
    box-shadow: var(--cl-shadow-sm);
    transition: box-shadow var(--cl-transition), transform var(--cl-transition);
}
.cl-post-card:hover {
    box-shadow: var(--cl-shadow);
    transform: translateY(-2px);
}
.cl-post-card__image {
    width: 100%;
    padding-top: 60%;
    position: relative;
    overflow: hidden;
    background: var(--cl-studio);
    border-radius: 8px;
}
.cl-post-card__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--cl-transition);
}
.cl-post-card:hover .cl-post-card__image img {
    transform: scale(1.05);
}
.cl-post-card__body {
    padding: 16px;
}
.cl-post-card__category {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--cl-orange);
    margin-bottom: 8px;
}
.cl-post-card__title {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 8px;
}
.cl-post-card__title a {
    color: var(--cl-anthracite);
    text-decoration: none;
}
.cl-post-card__title a:hover {
    color: var(--cl-orange);
}
.cl-post-card__excerpt {
    font-size: 14px;
    color: var(--cl-mech-grey);
    line-height: 1.5;
    margin: 0 0 12px;
}
.cl-post-card__meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--cl-mech-grey);
    margin-bottom: 12px;
}
.cl-post-card__readmore {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #F28524;
    border: 1px solid #F28524;
    padding: 6px 16px;
    border-radius: var(--cl-radius-sm);
    text-decoration: none;
    transition: all var(--cl-transition);
}
.cl-post-card__readmore:hover {
    background: #F28524;
    color: var(--cl-white);
}

/* -------------------------------------------------------------------------
   23. Posts Carousel
   ------------------------------------------------------------------------- */
.cl-posts-carousel {
    position: relative;
    overflow: hidden;
}
.cl-posts-carousel__track {
    display: flex;
    transition: transform 0.4s ease;
}
.cl-posts-carousel .cl-post-card {
    flex: 0 0 calc(33.333% - 16px);
    margin-right: 24px;
    min-width: 0;
}
.cl-posts-carousel__arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cl-white);
    border: 1px solid var(--cl-studio-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cl-anthracite);
    transition: all var(--cl-transition);
    z-index: 2;
}
.cl-posts-carousel__arrow:hover {
    background: var(--cl-orange);
    color: var(--cl-white);
    border-color: var(--cl-orange);
}
.cl-posts-carousel__arrow--prev { left: 0; }
.cl-posts-carousel__arrow--next { right: 0; }
.cl-posts-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.cl-posts-carousel__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cl-studio-dark);
    border: none;
    cursor: pointer;
}
.cl-posts-carousel__dot--active {
    background: var(--cl-orange);
}

/* -------------------------------------------------------------------------
   24. Loading & Skeleton States
   ------------------------------------------------------------------------- */
.cl-skeleton {
    background: linear-gradient(90deg, var(--cl-studio) 25%, var(--cl-studio-dark) 50%, var(--cl-studio) 75%);
    background-size: 200% 100%;
    animation: clSkeleton 1.5s infinite;
    border-radius: 4px;
}
@keyframes clSkeleton {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ============================================================
   25. RESPONSIVE BREAKPOINTS
   ============================================================ */

/* --- 1200px --- */
@media (max-width: 1200px) {
    .cl-pecas-tabs__grid,
    .cl-pecas-grid--cols-4,
    .cl-pecas-grid--cols-5,
    .cl-pecas-grid--cols-6 { grid-template-columns: repeat(3, 1fr); }
    .cl-pecas-carousel .cl-part-card,
    .cl-recently-viewed .cl-part-card { flex: 0 0 calc(33.333% - 14px); }
    .cl-posts-grid--cols-4 { grid-template-columns: repeat(3, 1fr); }
    .cl-marcas-grid { grid-template-columns: repeat(4, 1fr); }
    .cl-marcas-carousel .cl-marca-card { flex: 0 0 calc(25% - 15px); }
}

/* --- 992px --- */
@media (max-width: 992px) {
    .cl-icons-list__item::after { display: none; }
    .cl-newsletter {
        flex-direction: column;
        text-align: center;
        padding: 32px;
    }
    .cl-newsletter__form { margin: 0 auto; }
    .cl-newsletter__image { width: 120px; height: 120px; }
    .cl-slide { min-height: 400px; }
    .cl-slide__title { font-size: 36px; }
    .cl-slide__content { max-width: 480px; padding: 32px; }
    .cl-banner-large { min-height: 400px; padding: 32px; }
    .cl-banner-large__title { font-size: 36px; }
    .cl-pecas-tabs__grid,
    .cl-pecas-grid--cols-3,
    .cl-pecas-grid--cols-4 { grid-template-columns: repeat(2, 1fr); }
    .cl-pecas-carousel .cl-part-card,
    .cl-recently-viewed .cl-part-card { flex: 0 0 calc(50% - 10px); }
    .cl-posts-grid--cols-3,
    .cl-posts-grid--cols-4 { grid-template-columns: repeat(2, 1fr); }
    .cl-posts-carousel .cl-post-card { flex: 0 0 calc(50% - 12px); }
    .cl-marcas-grid { grid-template-columns: repeat(3, 1fr); }
    .cl-marcas-carousel .cl-marca-card { flex: 0 0 calc(33.333% - 14px); }
    .cl-process::before { left: 24px; }
    .cl-process__number { left: 24px; }
    .cl-process__step:nth-child(odd),
    .cl-process__step:nth-child(even) {
        flex-direction: row;
    }
    .cl-process__content {
        width: 100%;
        padding-left: 64px;
        padding-right: 0;
        text-align: left !important;
    }
    .cl-process__spacer { display: none; }
}

/* --- 768px --- */
@media (max-width: 768px) {
    .cl-icons-list__item {
        flex: 1 1 calc(50% - 16px);
        min-width: 0;
    }
    .cl-images-gallery,
    .cl-images-gallery--cols-2,
    .cl-images-gallery--cols-4 { grid-template-columns: repeat(2, 1fr); }
    .cl-banner-medium { min-height: 280px; padding: 24px; }
    .cl-banner-medium__title { font-size: 26px; }
    .cl-banner-large { min-height: 320px; padding: 24px; }
    .cl-banner-large__title { font-size: 28px; }
    .cl-banner-large__desc { font-size: 15px; }
    .cl-slide { min-height: 320px; }
    .cl-slide__title { font-size: 28px; }
    .cl-slide__subtitle { font-size: 15px; }
    .cl-slides__arrow { width: 36px; height: 36px; }
    .cl-counter__number { font-size: 36px; }
    .cl-process__step { margin-bottom: 32px; }
    .cl-pecas-grid--cols-2,
    .cl-pecas-grid--cols-3,
    .cl-pecas-grid--cols-4 { grid-template-columns: repeat(2, 1fr); }
    .cl-posts-grid--cols-2,
    .cl-posts-grid--cols-3 { grid-template-columns: repeat(1, 1fr); }
    .cl-marcas-grid { grid-template-columns: repeat(2, 1fr); }
    .cl-bubbles { gap: 20px; }
    .cl-bubble__circle { width: 100px; height: 100px; }
    .cl-bubble__value { font-size: 24px; }
    .cl-testimonials__arrow--prev { left: -10px; }
    .cl-testimonials__arrow--next { right: -10px; }
    .cl-pecas-carousel__arrow--prev,
    .cl-recently-viewed__arrow--prev { left: -10px; }
    .cl-pecas-carousel__arrow--next,
    .cl-recently-viewed__arrow--next { right: -10px; }
    .cl-marcas-carousel__arrow--prev { left: -10px; }
    .cl-marcas-carousel__arrow--next { right: -10px; }
    .cl-pecas-list__item { flex-wrap: wrap; }
}

/* --- 480px --- */
@media (max-width: 480px) {
    .cl-icons-list__item { flex: 1 1 100%; }
    .cl-images-gallery,
    .cl-images-gallery--cols-2,
    .cl-images-gallery--cols-4 { grid-template-columns: repeat(1, 1fr); }
    .cl-banner-small { min-height: 160px; padding: 20px; }
    .cl-banner-medium { min-height: 220px; padding: 20px; }
    .cl-banner-large { min-height: 260px; padding: 20px; }
    .cl-banner-large__title { font-size: 24px; }
    .cl-slide { min-height: 260px; }
    .cl-slide__title { font-size: 22px; }
    .cl-slide__subtitle { font-size: 14px; }
    .cl-slide__content { padding: 20px; }
    .cl-newsletter { padding: 24px; }
    .cl-newsletter__form { flex-direction: column; }
    .cl-newsletter__title { font-size: 22px; }
    .cl-pecas-tabs__nav { flex-wrap: wrap; }
    .cl-pecas-tabs__nav-btn { flex: 1; padding: 10px 12px; font-size: 12px; }
    .cl-pecas-grid--cols-2,
    .cl-pecas-grid--cols-3,
    .cl-pecas-grid--cols-4 { grid-template-columns: repeat(1, 1fr); }
    .cl-pecas-carousel .cl-part-card,
    .cl-recently-viewed .cl-part-card { flex: 0 0 100%; }
    .cl-marcas-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .cl-marcas-carousel .cl-marca-card { flex: 0 0 calc(50% - 10px); }
    .cl-journey__step { min-width: 140px; }
.cl-post-card__image { padding-top: 50%; }
.cl-testimonials__arrow { display: none; }
}

/* ================================================================
   Widget: Pesquisa Rapida (cl_search_input)
   ================================================================ */
.cl-search-wrap { position: relative; width: 100%; }

.cl-search-form { position: relative; width: 100%; }

.cl-search-row {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

.cl-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    z-index: 2;
    pointer-events: none;
    line-height: 0;
}

.cl-search-input {
    flex: 1;
    width: 100%;
    height: 50px;
    padding: 0 16px;
    border: 2px solid #E2E5EB;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    color: #232323;
    background: #fff;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.cl-search-icon + .cl-search-input { padding-left: 46px; }

.cl-search-input:focus {
    border-color: #F28524;
    box-shadow: 0 0 0 3px rgba(242,133,36,0.12);
}

.cl-search-btn {
    flex-shrink: 0;
    margin-left: 8px;
    height: 50px;
    padding: 0 24px;
    border: none;
    border-radius: 8px;
    background: #F28524;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

.cl-search-btn:hover { background: #F5A623; transform: translateY(-1px); }

/* --- Dropdown de resultados --- */
.cl-search-results {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    border: 1px solid #E2E5EB;
    border-radius: 8px;
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.cl-search-results.is-active { display: block; }

.cl-search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    cursor: pointer;
    transition: background 0.15s;
    text-decoration: none;
    border-bottom: 1px solid #f4f4f4;
}

.cl-search-result-item:last-child { border-bottom: none; }

.cl-search-result-item:hover { background: #F0F2F5; }

.cl-search-result-thumb {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #e8e8e8;
    flex-shrink: 0;
    background: #fafafa;
}

.cl-search-result-info {
    flex: 1;
    min-width: 0;
}

.cl-search-result-title {
    font-size: 13px;
    font-weight: 600;
    color: #232323;
    margin: 0 0 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cl-search-result-code {
    font-size: 11px;
    color: #707070;
    font-family: monospace;
}

.cl-search-result-stock {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    flex-shrink: 0;
}

.cl-search-result-stock--disponivel { background: #E6F9F0; color: #14B869; }
.cl-search-result-stock--consulta { background: #FFF8E6; color: #F59E0B; }

.cl-search-loading {
    padding: 16px;
    text-align: center;
    font-size: 13px;
    color: #999;
}

.cl-search-no-results {
    padding: 20px;
    text-align: center;
    color: #888;
    font-size: 13px;
}

.cl-search-error {
    padding: 16px;
    text-align: center;
    color: #e53935;
    font-size: 13px;
}

/* Mobile */
@media (max-width: 768px) {
    .cl-search-btn { padding: 0 16px; font-size: 13px; }
    .cl-search-input { font-size: 14px; }
}
