        .gallery_div {
            padding-top: 10rem;
            padding-bottom: 3rem;
        }
        .gallery_div_grid{
            display: grid;
            gap: 2rem;
            grid-template-columns: repeat(2, 1fr);
        }
        
        .car-gallery-main {
            height: 400px;
            overflow: hidden;
            position: relative;
            border-radius: 8px;
        }
        
        .car-gallery-main img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity 0.5s ease;
        }
        
        .thumbnail-container {
            display: flex;
            gap: 10px;
            margin-top: 15px;
            overflow-x: auto;
            padding-bottom: 10px;
            flex-wrap: wrap; /* Permite que as imagens "quebrem" de linha */
        }
        
        
        .thumbnail {
            width: 80px;
            height: 60px;
            border-radius: 4px;
            overflow: hidden;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            flex-shrink: 0;
            width: calc(100% / 7 - 10px); /* 7 imagens por linha com um pequeno espaço */
            box-sizing: border-box;
        }
        
        .thumbnail.active {
            border-color: #333;
        }
        
        .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.5);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
        }
        
        .nav-btn:hover {
            background: rgba(0,0,0,0.8);
        }
        
        .prev-btn {
            left: 15px;
        }
        
        .next-btn {
            right: 15px;
        }
        
        .mt-2 {
            margin-top: 0.5rem;
        }
        
        .mt-4 {
            margin-top: 1rem;
        }
        
        .text-sm {
            font-size: 0.875rem;
            line-height: 1.25rem;
        }
        
        .text-gray-500 {
            color: #6b7280;
        }
        
        .ml-2 {
            margin-left: 0.5rem;
        }
        
        
        .div_icon_spec {
            padding: 1.5rem;
            border-radius: 0.5rem;
            box-shadow: 6px 6px 6px 6px rgba(0, 0, 0, 0.05);
            background-color: #fff;
            margin-top: 1.5rem;
        }
        
        .font-semibold {
            font-weight: 600;
        }
        
        .mb-4 {
            margin-bottom: 1rem;
        }
        
        .icon_spec_div {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-top: 20px;
        }
        
        .icon_spec_div_icon {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .icon_spec_div_icon_figure {
            margin-bottom: 56px;
            width: 24px;
            height: 24px;
            color: #333;
        }

        .div_btn_whatsapp {
            margin-top: 2rem;
            display: flex;
            flex-direction: column;
            flex-direction: row;
        }

        .py-3 {
            padding-top: 0.75rem;
            padding-bottom: 0.75rem;
        }
        
        .px-6 {
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }
        
        .rounded-lg {
            border-radius: 0.5rem;
        }
        
        .items-center {
            align-items: center;
        }
        
        .justify-center {
            justify-content: center;
        }
        
        .transition-colors {
            transition-property: background-color, border-color, color, fill, stroke;
            transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            transition-duration: 150ms;
        }
        
        .description-section {
            background-color: #f4f4f4;
            padding: 2rem;
            border-radius: 8px;
            margin-top: 3rem;
        }

        .description_div{
            padding-top: 3rem;
            padding-bottom: 3rem;
        }
        
        .max-w-none {
            max-width: none;
        }

        .promo_price{
            color: grey;
            font-size: 16px;
            text-decoration: line-through;
            margin-right: 5px;
        }
        
        @media (max-width: 768px) {
            .car-gallery-main {
                height: 300px;
            }
            
            .gallery_div_grid {
                grid-template-columns: 1fr;
            }
            
            .div_btn_whatsapp {
                flex-direction: column;
            }
        }