        {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        header {
            text-align: center;
            padding: 2rem 0;
            margin-bottom: 2rem;
        }
        
        header h1 {
            font-size: 3.5rem;
            color: white;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
            margin-bottom: 1rem;
        }
        
        header p {
            font-size: 1.4rem;
            color: #f8f9fa;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* Estilos Adicionais para Ofertas */
        .ofertas-container {
            padding: 4rem 2rem;
            background: #f8f9fa;
            text-align: center;
            border-radius: 10px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.25);
        }

        .ofertas-header {
            max-width: 800px;
            margin: 0 auto 3rem;
        }

        .ofertas-header h2 {
            color: #2c3e50;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .btn-ofertas {
            display: inline-block;
            background: linear-gradient(to right, #3498db, #2c3e50);
            color: white;
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
        }

        .btn-ofertas:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(52, 152, 219, 0.6);
        }

        /* Container dos cards com posição relativa para os sinais + */
        .cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 4rem; /* Espaçamento dos Container */
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
        }

        .oferta-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            z-index: 1;
            
        }

        .oferta-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .oferta-card img {
            width: 220px;
            height: 220px;
            object-fit: contain;
            margin-bottom: 2rem;
            border-radius: 15px;
            transition: transform 0.3s ease;
        }

        .oferta-card:hover img {
            transform: scale(1.08);
        }

        .oferta-card h3 {
            color: #2c3e50;
            font-size: 1.8rem;
            margin-bottom: 1rem;
            font-weight: 800;
        }

        .oferta-card p {
            color: #64748b;
            line-height: 1.6;
            font-size: 1.1rem;
            max-width: 280px;
            margin: 0 auto;
        }
        
        /* Sinal de + entre os cards */
        .plus-sign {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 5rem;
            color: #3498db;
            z-index: 0;
            text-shadow: 0 2px 5px rgba(0,0,0,0.1);
            animation: pulse 2s infinite;
        }
        
        .plus-sign:nth-child(2) {
            left: calc(33.333% - 25px);
        }
        
        .plus-sign:nth-child(4) {
            left: calc(66.666% - 25px);
        }
        
        @keyframes pulse {
            0% { opacity: 0.7; transform: translateY(-50%) scale(1); }
            50% { opacity: 1; transform: translateY(-50%) scale(1.1); }
            100% { opacity: 0.7; transform: translateY(-50%) scale(1); }
        }
        
        .combo-highlight {
            position: absolute;
            top: -20px;
            right: -20px;
            background: linear-gradient(45deg, #e74c3c, #f39c12);
            color: white;
            font-weight: bold;
            padding: 10px 20px;
            border-radius: 30px;
            font-size: 1.1rem;
            transform: rotate(10deg);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            z-index: 2;
        }

        /* Responsividade */
        @media (max-width: 1024px) {
            .cards-container {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
            
            .oferta-card img {
                width: 180px;
                height: 180px;
            }
            
            .plus-sign {
                display: none; /* Oculta os sinais em telas menores */
            }
        }

        @media (max-width: 768px) {
            header h1 {
                font-size: 2.5rem;
            }
            
            header p {
                font-size: 1.1rem;
            }
            
            .ofertas-header h2 {
                font-size: 2rem;
            }
            
            .oferta-card {
                padding: 1.8rem;
            }
            
            .oferta-card h3 {
                font-size: 1.6rem;
            }
            
            .oferta-card p {
                font-size: 1rem;
            }
            
            .btn-ofertas {
                padding: 12px 30px;
            }
        }
        
        footer {
            text-align: center;
            padding: 2rem;
            color: white;
            font-size: 1.1rem;
        }
        
        .social-icons {
            margin-top: 1rem;
        }
        
        .social-icons a {
            display: inline-block;
            color: white;
            background: rgba(255,255,255,0.1);
            width: 45px;
            height: 45px;
            line-height: 45px;
            border-radius: 50%;
            margin: 0 10px;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background: #3498db;
            transform: translateY(-5px);
        }