<style>
    /* ===== RESET E ESTILOS GERAIS ===== */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        margin: 0;
        font-family: 'Arial', sans-serif;
        color: #333;
    }

    /* ===== HEADER ===== */
    .header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 30px;
        flex-wrap: wrap;
        background-color: white;
    }

    .logo img {
        height: 100px;
        width: auto;
    }

    /* Barra de busca */
    .search-container {
        flex: 1;
        max-width: 600px;
        margin: 0 20px;
        min-width: 200px;
    }
    
    .search-box-wrapper {
        position: relative;
        width: 100%;
    }
    
    .search-input {
        width: 100%;
        padding: 12px 20px 12px 50px;
        border: 2px solid #e0e0e0;
        border-radius: 30px;
        font-size: 16px;
        outline: none;
        transition: all 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        box-sizing: border-box;
    }
    
    .search-input:focus {
        border-color: #800020;
        box-shadow: 0 2px 15px rgba(128, 0, 32, 0.2);
    }
    
    .search-icon {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        color: #800020;
        pointer-events: none;
        transition: all 0.3s ease;
        font-size: 18px;
    }
    
    /* Resultados da busca */
    .search-results {
        margin-top: 20px;
        display: none;
        background: white;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        position: absolute;
        width: 100%;
        z-index: 10;
    }
    
    .result-item {
        display: flex;
        padding: 15px;
        border-bottom: 1px solid #eee;
        align-items: center;
        transition: background 0.2s;
    }
    
    .result-item:hover {
        background-color: #f9f9f9;
    }
    
    .result-image {
        width: 80px;
        height: 80px;
        object-fit: cover;
        margin-right: 15px;
        border-radius: 4px;
    }
    
    .result-info {
        flex: 1;
    }
    
    .result-title {
        font-weight: bold;
        margin-bottom: 5px;
        color: #333;
    }
    
    .result-price {
        color: #e53935;
        font-weight: bold;
    }
    
    .no-results {
        padding: 20px;
        text-align: center;
        color: #666;
    }

    /* Menu Desktop */
    .desktop-menu {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .menu-item {
        position: relative;
        cursor: pointer;
    }

    .menu-icon {
        font-size: 20px;
        color: black;
        padding: 10px;
        transition: all 0.3s;
    }

    .menu-icon:hover {
        color: #800020;
    }

    .submenu {
        display: none;
        position: absolute;
        right: 0;
        background-color: white;
        min-width: 200px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
        border-radius: 5px;
        z-index: 10;
    }

    .menu-item:hover .submenu {
        display: block;
    }

    .submenu a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        font-size: 14px;
        transition: background 0.3s;
    }

    .submenu a:hover {
        background-color: #eee7ee;
    }

    .submenu a i {
        margin-right: 8px;
        color: #800020;
    }

    /* Menu Mobile */
    .mobile-menu {
        display: none;
    }

    .dropbtn {
        background-color: black;
        color: white;
        padding: 10px 15px;
        font-size: 20px;
        border: none;
        cursor: pointer;
        border-radius: 5px;
        transition: all 0.3s;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        right: 0;
        background-color: white;
        min-width: 200px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
        border-radius: 5px;
        z-index: 1;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }

    /* ===== MENU SUPERIOR ===== */
    .custom-header-final {
        display: block;
        width: 100%;
        background-color: black;
        font-family: inherit;
        box-sizing: border-box;
    }

    .custom-header-final-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 15px 20px;
    }

    .custom-header-final-menu {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0 15px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .custom-header-final-item {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .custom-header-final-link i {
        margin-right: 8px;
    }

    .custom-header-final-link {
        color: white !important;
        text-decoration: none !important;
        text-align: center;
        padding: 8px 5px;
        display: block;
        transition: all 0.3s ease;
        font-size: 14px;
        line-height: 1.3;
        background: transparent !important;
    }

    .custom-header-final-item:hover .custom-header-final-link {
        color: #800020 !important;
        transform: translateY(-3px);
    }

    .custom-header-final-item:hover .custom-header-final-icon {
        color: #800020 !important;
    }

    .custom-header-final-separator {
        width: 1px;
        height: 25px;
        background-color: white;
        margin: 0 10px;
    }

    /* ===== CARROSSEL ===== */
    .carousel {
        position: relative;
        width: 100%;
        margin: auto;
        overflow: hidden;
        background-color: transparent;
    }

    .carousel-inner {
        display: flex;
        transition: transform 0.5s ease-in-out;
        width: 100%;
    }

    .carousel-item {
        min-width: 100%;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .carousel-item img {
        width: 100%;
        height: 600px;
        object-fit: cover;
        display: block;
    }

    .carousel-control-prev, .carousel-control-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: 24px;
        color: white;
        padding: 10px;
        cursor: pointer;
        user-select: none;
        background-color: rgba(0,0,0,0.3);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .carousel-control-prev {
        left: 20px;
    }

    .carousel-control-next {
        right: 20px;
    }

    /* ===== VITRINE DE PRODUTOS ===== */
    .product-showcase {
        padding: 0 20px;
        margin-top: 40px;
    }

    /* Filtro de categorias */
    .products-filter {
        margin-bottom: 30px;
        display: flex;
        justify-content: flex-end;
        padding-right: 20px;
    }

    .products-filter select {
        padding: 10px 15px;
        border: 1px solid #ddd;
        border-radius: 4px;
        background-color: #f8f8f8;
        font-size: 16px;
    }

    /* Seção de cada vitrine */
    .vitrine-section {
        margin-bottom: 50px;
    }

    /* Títulos centralizados */
    .vitrine-title {
        text-align: center;
        font-size: 28px;
        margin: 25px 0;
        position: relative;
        color: #333;
    }

    .vitrine-title:after {
        content: "";
        display: block;
        width: 80px;
        height: 3px;
        background-color: #800020;
        margin: 10px auto 0;
    }

    /* Grid de produtos */
    .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 25px;
        padding: 0 20px;
    }

    .product-card {
        background: white;
        border-radius: 8px;
        overflow: hidden;
        transition: transform 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .product-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .product-info {
        padding: 15px;
    }

    .product-title {
        font-size: 16px;
        margin-bottom: 8px;
        color: #333;
    }

    .product-price {
        font-weight: bold;
        margin-bottom: 10px;
        color: #800020;
    }

    .add-to-cart {
        width: 100%;
        padding: 10px;
        background: #333;
        color: white;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-size: 14px;
        transition: background 0.3s;
    }

    .add-to-cart:hover {
        background: #800020;
    }

    /* ===== RODAPÉ ===== */
    /* Primeira seção do rodapé */
    .main-footer {
        background-color: black;
        color: white;
        padding: 30px 0;
    }

    .footer-options {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .option {
        flex: 1;
        min-width: 200px;
        padding: 15px;
        text-align: center;
    }

    .option h4 {
        margin-top: 0;
        text-transform: uppercase;
        font-size: 16px;
        color: white;
        margin-bottom: 10px;
    }

    .option p {
        color: #ccc;
        font-size: 14px;
        margin-bottom: 0;
    }

    /* Divisor */
    .divider-container {
        background-color: black;
        padding: 10px 0;
    }

    .divider {
        border: none;
        height: 2px;
        background-color: white;
        width: 90%;
        max-width: 1200px;
        margin: auto;
    }

    /* Segunda seção do rodapé */
    .footer {
        background-color: black;
        color: white;
        padding: 30px 0 10px;
        width: 100%;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        width: 100%;
    }

    .footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;
    }

    .footer-section {
        flex: 1;
        min-width: 250px;
        margin-bottom: 20px;
        padding: 0 15px;
    }

    .footer-section h3 {
        color: white;
        margin-bottom: 15px;
        font-size: 1.2em;
    }

    .footer-section p,
    .footer-section ul {
        margin: 0;
        padding: 0;
        color: #ccc;
        font-size: 14px;
        line-height: 1.6;
    }

    .footer-section ul {
        list-style: none;
    }

    .footer-section a {
        color: #ccc;
        text-decoration: none;
        transition: all 0.3s ease;
        display: block;
        margin-bottom: 8px;
    }

    .footer-section a:hover {
        color: #800020;
        padding-left: 5px;
    }

    .footer-bottom {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid #444;
        margin-top: 20px;
        color: #ccc;
        font-size: 0.9em;
        width: 100%;
    }

    .social-links {
        display: flex;
        gap: 20px;
        padding: 0;
        margin: 15px 0 0 0;
    }

    .social-item {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .social-links img {
        width: 40px;
        height: auto;
        display: block;
        transition: transform 0.3s;
    }

    .social-links img:hover {
        transform: scale(1.1);
    }

    /* Linha de contatos + imagem */
    .contacts-row {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin-top: 20px;
        padding: 0 15px;
    }

    .contacts-info {
        flex: 1;
        min-width: 300px;
    }

    .contacts-image {
        flex: 1;
        min-width: 300px;
        text-align: right;
    }

    .contacts-image img {
        max-width: 100%;
        height: auto;
        max-height: 100px;
    }

    /* ===== RESPONSIVIDADE ===== */
    @media (max-width: 768px) {
        /* Header */
        .header-container {
            padding: 10px 15px;
            gap: 10px;
        }
        
        .logo img {
            height: 80px;
        }
        
        .search-container {
            margin: 10px 0 0 0;
            order: 3;
            width: 100%;
        }
        
        .dropdown {
            position: static;
        }
        
        .dropdown-content {
            width: 100%;
            box-sizing: border-box;
            right: auto;
            left: 0;
        }
        
        .custom-header-final-menu {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
        }
        
        .custom-header-final-separator {
            display: none;
        }
        
        .search-input {
            font-size: 14px;
            padding: 10px 15px 10px 40px;
        }
        
        .search-icon {
            left: 15px;
            font-size: 16px;
        }

        /* Carrossel */
        .carousel-item img {
            height: 250px;
            object-fit: contain;
        }

        .carousel-control-prev, .carousel-control-next {
            font-size: 18px;
            padding: 8px;
            width: 30px;
            height: 30px;
        }

        /* Produtos */
        .products-grid {
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        }
        
        .vitrine-title {
            font-size: 24px;
        }
        
        .products-filter {
            justify-content: center;
            padding-right: 0;
        }

        /* Rodapé */
        .option {
            border: none;
            padding: 10px;
            min-width: 150px;
        }

        .footer-section {
            text-align: center;
            margin-bottom: 30px;
        }
       
        .social-links {
            justify-content: center;
        }
       
        .contacts-row {
            flex-direction: column;
            text-align: center;
        }
       
        .contacts-image {
            text-align: center;
            margin-top: 15px;
        }
       
        .contacts-info,
        .contacts-image {
            min-width: 100%;
        }
    }

    @media (max-width: 480px) {
        .logo img {
            height: 60px;
        }
        
        .dropbtn {
            padding: 8px 12px;
            font-size: 18px;
        }

        .products-grid {
            grid-template-columns: 1fr;
        }

        .vitrine-title {
            font-size: 22px;
        }
    }
</style>
