        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .nav-link.active {
            font-weight: bold;
        }

        .card-service {
            transition: transform 0.3s ease-in-out;
        }

        .card-service:hover {
            transform: translateY(-10px);
        }

        .section-heading {
            text-align: center;
            margin-bottom: 50px;
            font-weight: 300;
        }

        /* Ajustes para o layout do carrossel no topo */
        .carousel-item {
            height: 500px;
            /* Altura padrão para desktop */
            background-color: #777;
            position: relative;
            /* Para posicionar o caption */
        }

        .carousel-item img {
            object-fit: cover;
            height: 100%;
            width: 100%;
        }

        .carousel-caption {
            top: 50%;
            transform: translateY(-50%);
            bottom: auto;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
            color: white;
            /* Garante que o texto seja branco */
            text-align: center;
        }

        /* MEDIA QUERIES PARA RESPONSIVIDADE DO CARROSSEL */
        @media (max-width: 768px) {

            /* Para tablets e celulares */
            .carousel-item {
                height: 350px;
                /* Altura menor para mobile */
            }

            .carousel-caption {
                top: 50%;
                /* Centraliza verticalmente */
                transform: translateY(-50%);
                padding: 0 15px;
                /* Adiciona padding para o texto não colar nas bordas */
            }

            .carousel-caption h1 {
                font-size: 1.8rem;
                /* Reduz o tamanho da fonte para títulos */
            }

            .carousel-caption p {
                font-size: 1rem;
                /* Reduz o tamanho da fonte para parágrafos */
                display: -webkit-box;
                -webkit-line-clamp: 3;
                /* Limita o texto a 3 linhas */
                -webkit-box-orient: vertical;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .carousel-caption .btn {
                padding: 8px 15px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 576px) {

            /* Para celulares menores */
            .carousel-item {
                height: 300px;
                /* Mais uma redução de altura */
            }

            .carousel-caption h1 {
                font-size: 1.5rem;
                /* Ajuste fino */
            }

            .carousel-caption p {
                font-size: 0.9rem;
                /* Ajuste fino */
                -webkit-line-clamp: 2;
                /* Limita o texto a 2 linhas em telas muito pequenas */
            }
        }

        /* Estilos dos produtos */
        .product-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }

        .product-card {
            width: 100%;
            max-width: 300px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease-in-out;
        }

        .product-card:hover {
            transform: scale(1.05);
        }

        .product-card img {
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
            height: 200px;
            object-fit: contain;
            /* CORRIGIDO AQUI */
            padding: 10px;
            /* Adicionado para evitar que a imagem cole nas bordas */
        }

        /* Estilos da grade de marcas */
        .brand-card {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease-in-out;
        }

        .brand-card:hover {
            transform: translateY(-10px);
        }

        .brand-card img {
            width: 100%;
            height: 100px;
            object-fit: contain;
            padding: 10px;
        }

        .btn-custom {
            background-color: #0d6efd;
            border-color: #0d6efd;
            color: white;
        }

        .btn-custom:hover {
            background-color: #0a58ca;
            border-color: #0a58ca;
            color: white;
        }

        /* Estilos da nova seção de Contato */
        .map-container {
            width: 100%;
            height: 300px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        .social-buttons .btn {
            font-size: 1.5rem;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .social-buttons .btn-facebook {
            background-color: #3b5998;
            color: white;
        }

        .social-buttons .btn-instagram {
            background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
            color: white;
        }

        .social-buttons .btn-youtube {
            background-color: #ff0000;
            color: white;
        }

        .social-buttons .btn-whatsapp {
            background-color: #25d366;
            color: white;
        }

        /* Estilos da Logo no cabeçalho */
        .navbar-brand .brand-logo-text {
            display: flex;
            align-items: center;
            color: white;
            font-size: 1.25rem;
            font-weight: bold;
        }

        .navbar-brand .brand-logo-text img {
            height: 40px;
            margin-right: 10px;
        }

        /* Oculta a logo em telas pequenas (mobile) */
        @media (max-width: 768px) {
            .navbar-brand .brand-logo-text img {
                display: none;
            }
        }

        /* Novos estilos para preços em promoção */
        .old-price {
            text-decoration: line-through;
            color: #6c757d;
            /* cinza */
            font-size: 0.9em;
            margin-right: 8px;
        }

        .promo-price {
            color: #dc3545;
            /* vermelho */
            font-weight: bold;
            font-size: 1.2em;
        }
