.produto{
    /**TOPO**/
    .topo{
        img{
            width: 100%;
            height: auto;
            display: block;
        }
    }

    /**PRODUTO E DESCRIÇÃO**/
    .intro{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        align-items: center;
        padding: 100px 10%;
        .galeria-wrapper {
            position: relative;
            .galeria-main {
                position: relative;
                width: 100%;
                aspect-ratio: 4/3;
                overflow: visible; 
                border-radius: var(--radius);
                background: var(--gray-light);
                box-shadow: 0 10px 30px rgba(105, 105, 105, 0.075);
            }   
            .galeria-main-img {
                width: 100%;
                height: 100%;
                object-fit: contain;
                display: block;
                cursor: zoom-in;
            }  
            .zoom-lens {
                position: absolute;
                border: 1px solid #ddd;
                background: rgba(255, 255, 255, 0.4);
                display: none;
                z-index: 10;
                pointer-events: none;
            }
            .zoom-result {
                position: absolute;
                top: 0;
                left: calc(100% + 30px); 
                width: 100%;
                height: 100%;
                border: 1px solid #eee;
                background-repeat: no-repeat;
                background-color: #fff;
                display: none;
                z-index: 900;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
                pointer-events: none;
            }  
            .galeria-thumbs {
                display: flex;
                gap: .6rem;
                margin-top: 2rem;
                justify-content: center;
                flex-wrap: wrap;
            }
            .galeria-thumb {
                width: 64px;
                height: 64px;
                border-radius: 6px;
                cursor: pointer;
                border: 2px solid transparent;
                opacity: .6;
                transition: var(--transition);
            }
            .galeria-thumb.active {
                border-color: var(--azulventex);
                opacity: 1;
            }
            .galeria-zoom-btn {
                position: absolute;
                bottom: .75rem;
                right: .75rem;
                background: rgba(255,255,255,.85);
                border: none;
                border-radius: 50%;
                width: 36px;
                height: 36px;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                color: var(--azulventex);
                z-index: 20;
            }    
            .galeria-nav {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                background: rgba(255,255,255,.8);
                border: none;
                border-radius: 50%;
                width: 38px;
                height: 38px;
                cursor: pointer;
                z-index: 20;
                font-size: 30px;
                color: #a8a8a8;
                transition: .3s;
                &:hover{
                    color: var(--azulventex);
                }
            }
            .galeria-nav--prev { 
                left: 1rem; 
            }
            .galeria-nav--next { 
                right: 1rem; 
            }                                                 
        }  
        .produto-descricao{
            h2{
                color: var(--azulventex);
                font-size: 1.8rem;
                margin: 0;
                font-weight: 800;
            }
            p{
                font-size: 1.1rem;
                line-height: 1.5;
                margin: 10px 0;
            }
            h3{
                color: var(--azulventex);
                font-size: 1.2rem;
                margin: 20px 0 5px;
                font-weight: 800;
            }  
            .cores-block{
                display: block;
                margin: 25px 0;
            }  
             .btn-acao{
                width: max-content;
                max-width: 100%;
                padding: 1rem 2rem;
             }        
        }      
    }

    /**DIFERENCIAIS**/
    .diferenciais-titulo { 
        text-align: center; 
        padding: 0 10%; 
        h2 { 
            font-weight: 800; 
            color: var(--azulventex); 
            font-size: 2.5rem;
        } 
    }
    .diferenciais { 
        background: var(--azulventex); 
        padding: 100px 10%;
        margin-top: 2rem; 
        .diferenciais-grid {
            display: grid; 
            grid-template-columns: repeat(3, 1fr); 
            gap: 20px;
            .diferencial-item { 
                padding: 40px 25px;
                text-align: center;
                transition: background 0.3s ease;
                border-radius: 15px;
                cursor: default;
                &:hover {
                    background: rgba(0, 0, 0, 0.2); 
                    .icon-wrapper{
                        background: #fff;
                        img{
                            filter: none;
                        }
                    }
                }
                .icon-wrapper{
                    background: #0c367a;
                    width: 80px;
                    height: 80px;
                    display: block;
                    margin: 0 auto 15px;
                    border-radius: 50%;
                    display: flex;
                    justify-content: center;
                    align-items: center;    
                    transition: .3s;            
                    img{
                        height: 35px;
                        filter: contrast(0) brightness(100);
                    }
                } 
                h5{
                    font-weight: 700;
                    margin: 0 0 5px;
                    line-height: 1.2;
                    font-size: 1.2rem;
                }
                p{
                    font-size: .9rem;
                    font-weight: 300;
                }                               
            }

        }        
    }    

    /**INFOS**/
    .infos {
        padding: 100px 10%;
        display: grid; 
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
        gap: 3rem; 
        align-items: start;

        h3 {
            color: var(--azulventex);
            font-size: 1.5rem;
            margin: 10px 0;
            font-weight: 700;
        }
        p {
            font-size: 1rem;
            line-height: 1.5;
            margin: 10px 0;
        }

        /* Bloco do Selo */
        .selo-block {
            .selo-content {
                display: flex;
                justify-content: flex-start;
                align-items: center;
                padding-top: 10px;

                .img-selo {
                    max-width: 140px;
                    height: auto;
                    object-fit: contain;
                }
            }
        }

    }
    .btn-acao { 
        display: block; 
        width: 100%; 
        padding: 1rem; 
        background: var(--azulventex); 
        color: #fff; 
        text-align: center; 
        text-decoration: none; 
        border-radius: 8px; 
        margin-bottom: .5rem; 
        border: none; 
        cursor: pointer;
        transition: .3s;

        &:hover {
            background: var(--azulsecundario);
        }
    }    
    .cor-swatch-duo {
        width: 40px; 
        height: 40px; 
        border-radius: 50%; 
        display: inline-block; 
        box-shadow: 1px 1px 8px -3px rgba(0,0,0,0.75);
        -webkit-box-shadow: 1px 1px 8px -3px rgba(0,0,0,0.75);
        -moz-box-shadow: 1px 1px 8px -3px rgba(0,0,0,0.75);
    }

    .cor-item { 
        display: flex; 
        align-items: center; 
        gap: .75rem; 
        margin-bottom: .5rem;
    }
    .modelos {
        padding: 80px calc(10% - 50px);
        color: #013d53;
        h2 {
                color: var(--azulventex);
                margin: 0 0 30px;
                font-weight: 700;
                font-size: 2.5rem;
                text-align: center;
        }  
        .modelos-carrossel {
            position: relative;
            margin: 0 50px;
        }
        .modelos-carrossel .slick-prev, .modelos-carrossel .slick-next {
            width: 36px;
            height: 36px;
            background: var(--azulventex);
            border-radius: 50%;
            z-index: 10;
            top: 185px;
            transition: background 0.2s;
        }
        .modelos-carrossel .slick-prev:hover, .modelos-carrossel .slick-next:hover {
            background: var(--azulsecundario);
        }
        .modelos-carrossel .slick-prev {
            left: -50px;
        }
        .modelos-carrossel .slick-next {
            right: -50px;
        }
        .modelos-carrossel .slick-prev::before, .modelos-carrossel .slick-next::before {
            font-weight: 900;
            font-family: "Font Awesome 6 Free";
            font-size: 14px;
            color: #fff;
            opacity: 1;
        }
        .modelos-carrossel .slick-prev::before {
            content: '\f053';
        }
        .modelos-carrossel .slick-next::before {
            content: '\f054';
        }
        .modelos-carrossel .slick-dots {
            display: none !important;
        }
        .motor-card {
            padding: 0 10px;
            box-sizing: border-box;
        }
        .motor-card__inner {
            background: #f0f0f0;
            border-radius: 16px;
            overflow: hidden;
            transition: box-shadow 0.3s;
        }
        .motor-card__inner:hover {
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        }
        .motor-card__foto {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 28px 20px 20px;
            min-height: 200px;
            background: #f0f0f0;
        }
        .motor-card__foto img {
            max-width: 100%;
            max-height: 180px;
            object-fit: contain;
            display: block;
        }
        .motor-card__barra {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: var(--azulventex);
            border-radius: 30px;
            margin: 0 12px 12px;
            padding: 10px 10px 10px 18px;
            gap: 8px;
            cursor: pointer;
        }
        .motor-card__nome {
            color: #fff;
            font-size: 0.95rem;
            font-weight: 600;
            flex: 1;
        }
        .motor-card__toggle {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: none;
            background: rgba(255,255,255,0.25);
            color: #fff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: background 0.2s;
        }
        .motor-card__toggle:hover {
            background: rgba(255,255,255,0.4);
        }
        .motor-card__toggle .fa-solid {
            display: inline-block;
            transition: transform 0.35s ease;
            font-size: 13px;
        }
        .motor-card__toggle.is-aberto .fa-solid {
            transform: rotate(180deg);
        }
        .motor-card__painel {
            padding: 0 16px 16px;
        }
        .motor-card__especificacoes {
            text-align: center;
            font-size: 0.82rem;
            color: #333;
            line-height: 1.7;
            margin-bottom: 16px;
        }
        .motor-card__especificacoes strong {
            display: block;
            font-size: 0.85rem;
            color: var(--azulventex);
            margin-bottom: 6px;
            letter-spacing: 0.04em;
        }
        .motor-card__btn {
            display: block;
            text-align: center;
            border: 2px solid var(--azulventex);
            color: var(--azulventex);
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            padding: 10px 16px;
            border-radius: 4px;
            text-decoration: none;
            transition: background 0.2s, color 0.2s;
            margin-top: 4px;
        }
        .motor-card__btn:hover {
            background: var(--azulventex);
            color: #fff;
        }              
    }

    @media (max-width: 1560px) {
        .intro{
            padding: 80px;
        }
        .diferenciais-titulo{
            padding: 0 80px;
        }
        .diferenciais{
            padding: 80px;
        }
        .infos{
            padding: 80px;
        }
        .modelos {
            padding: 70px calc(6% - 50px);
        }         
    }
    @media (max-width: 1024px){
        .intro{
            display: flex;
            flex-direction: column-reverse;
            padding: 60px;
            gap: 3rem;
        }
        .diferenciais-titulo{
            padding: 0 60px;
        }        
        .diferenciais {
            padding: 60px;
            .diferenciais-grid {
                grid-template-columns: repeat(1, 1fr);
                gap: 0;
            }
        }  
        .infos {
            padding: 60px;
            display: flex;
            flex-direction: column;
            gap: 30px;
            .actions-block{
                margin-top: 1rem;
            }
        }  
        .modelos{
            padding: 60px calc(60px - 40px);
            h2{
                font-size: 1.8rem;
            }
        }                    
    }
    @media (max-width: 900px) {
        .zoom-result {display: none !important;}
        .infos {
            grid-template-columns: 1fr;
            padding: 50px 5%;
            gap: 2rem;
        }        
    }
    @media (max-width: 480px){
        .intro{
            padding: 40px 30px;
            gap: 2rem;
            .produto-descricao {
                h2{
                    font-size: 1.6rem;
                }
                p {
                    font-size: 1rem;
                }
            }            
        }
        .diferenciais-titulo{
            padding: 0 20px;
            h2{
                font-size: 2rem;
            }
        }        
        .diferenciais {
            padding: 40px 30px;
        }  
        .infos {
            padding: 40px 30px;
            display: flex;
            flex-direction: column;
            gap: 30px;
        }  
        .modelos{
            padding: 40px 0;
            h2{
                font-size: 1.8rem;
            }
            .modelos-carrossel{
                margin: 0 30px;
            }
            .modelos-carrossel .slick-prev {
                left: -15px;
            }
            .modelos-carrossel .slick-next {
                right: -15px;
            }
        }                    
    }    
}

.bgcinza{
    background: #f9fafb;
}





.modal-video, .lightbox { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,.9); align-items: center; justify-content: center; }
.modal-video.open, .lightbox.open { display: flex; }
.modal-video__box { position: relative; width: 90%; max-width: 800px; aspect-ratio: 16/9; }
.lightbox img { max-width: 90%; max-height: 90%; object-fit: contain; }
.close-btn { position: absolute; top: 20px; right: 20px; color: #fff; cursor: pointer; border: none; background: rgba(255,255,255,0.1); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; z-index: 10000; transition: background 0.3s; }
.close-btn:hover { background: rgba(255,255,255,0.3); }
