/* RESET E CONFIGURAÇÕES BÁSICAS */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fcfcfc;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* 1. CABEÇALHO */
.header-mu {
    background-color: #f7f7f7;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ESTILO DO LOGO IMAGEM */
.logo-container {
    /* Define o alinhamento e o container do logo */
    display: flex;
    align-items: center;
}

.header-logo {
    height: 40px; /* Altura ideal para o cabeçalho */
    width: auto;
    vertical-align: middle;
}

.header-content nav a {
    text-decoration: none;
    color: #333;
    margin-left: 20px;
    font-weight: 500;
}

/* 2. SEÇÃO HERO */
.hero-mu {
    background-color: #fefefe;
    padding: 60px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.text-box {
    flex: 1;
    max-width: 50%;
}

.text-box h1 {
    font-size: 2.8em;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 15px;
    text-align: left;
}

.text-box p {
    font-size: 1.3em;
    color: #555;
    margin-bottom: 30px;
    text-align: left;
}

.image-box {
    flex: 1;
    max-width: 50%;
    text-align: center;
}

.image-box img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* BOTÃO CTA DESTAQUE */
.cta-button-mu {
    display: inline-block;
    padding: 15px 30px;
    background-color: #FF5C8A; /* Rosa/Vermelho forte da marca */
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
    text-align: center;
}

.cta-button-mu:hover {
    background-color: #e64574;
}

/* 3. SEÇÃO DE VALOR */
.value-proposition {
    background-color: #fafafa;
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #eee;
}

.value-proposition h2 {
    font-size: 2em;
    color: #1a1a1a;
}

.value-proposition .subtitle {
    font-size: 1.2em;
    color: #777;
    margin-bottom: 40px;
}

.benefits-grid {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-bottom: 40px;
}

.benefit-item {
    flex: 1;
    padding: 20px;
    border: 1px dashed #FF5C8A;
    border-radius: 8px;
    background-color: #fff;
}

.benefit-item h3 {
    color: #FF5C8A;
    font-size: 1.4em;
}

.secondary-cta-mu {
    background-color: #1a1a1a; /* CTA Escuro para contraste */
}

.secondary-cta-mu:hover {
    background-color: #4a4a4a;
}

/* 4. SEÇÃO DE PRODUTOS */
.products-section {
    padding: 60px 0;
    text-align: center;
}

.products-section h2 {
    margin-bottom: 40px;
}

.product-offers {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.product-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    width: 300px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.product-card img {
    max-width: 100%;
    border-radius: 4px;
    margin-bottom: 15px;
}

.price-old {
    text-decoration: line-through;
    color: #999;
    margin: 5px 0;
}

.price-new {
    color: #FF5C8A;
    font-weight: bold;
    font-size: 1.5em;
    margin: 5px 0 15px;
}

.badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #4CAF50; /* Verde de desconto */
    color: white;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 0.9em;
    font-weight: bold;
}

.buy-button {
    background-color: #38c172; /* Botão de compra */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
    width: 100%;
}

.buy-button:hover {
    background-color: #2ca05d;
}

.stock-warning {
    color: #d9534f;
    margin-top: 30px;
    font-weight: bold;
}

/* 5. RODAPÉ */
.footer-mu {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9em;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .text-box, .image-box {
        max-width: 100%;
        text-align: center;
    }

    .text-box h1, .text-box p {
        text-align: center;
    }

    .benefits-grid {
        flex-direction: column;
    }
    
    .product-card {
        width: 100%;
        max-width: 350px;
    }

    .header-content {
        flex-direction: column;
    }

    .header-content nav {
        margin-top: 10px;
    }
}