* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }

body { background-color: #f9fbfc; color: #333; line-height: 1.7; }

.container { max-width: 680px; margin: 0 auto; padding: 20px; }

/* Header com Fundo referente ao Produto */
.header-product {
    /* Alterado para um azul claro suave (AliceBlue) com transparência */
    
    
    background-size: cover;
    background-position: center;
    padding: 50px 0;
    border-bottom: 4px solid #007bff;
    text-align: center;
    background-color: #e3f2fd; /* Cor de fundo de segurança caso a imagem falhe */
}

.brand {
    font-weight: 800;
    font-size: 1.8rem;
    color: #1a2a3a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand span { color: #007bff; }

.badge { background: #ffedeb; color: #d93025; padding: 5px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: bold; display: inline-block; margin-bottom: 10px; }

h1 { font-size: 2rem; line-height: 1.2; color: #1a2a3a; margin-bottom: 15px; text-align: center; }

.meta { font-size: 0.85rem; color: #6c757d; border-bottom: 1px solid #dee2e6; padding-bottom: 15px; margin-bottom: 20px; text-align: center; }

.info-box { background: #fff; border: 1px solid #ced4da; border-left: 5px solid #007bff; padding: 20px; border-radius: 5px; margin: 25px 0; }

/* Container Flex para alinhar lado a lado */
.benefits-wrapper {
    display: flex;
    align-items: center; /* Alinha verticalmente ao centro */
    justify-content: space-between;
    gap: 30px; /* Espaço entre a lista e a imagem */
    margin: 40px 0;
}

.benefits-list {
    flex: 1; /* Ocupa o espaço restante */
    list-style: none;
    padding: 0;
}

.benefits-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
}

.product-image-side {
    flex: 0 0 45%; /* Define que a imagem ocupa 45% da largura */
    text-align: center;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    /* Adiciona uma sombra leve para destacar a garrafa do fundo */
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1)); 
}

/* Seção de Chamada para Ação */
.cta-section { background: #fff; border: 2px solid #007bff; padding: 30px; border-radius: 10px; text-align: center; margin-top: 40px; }
.cta-section h3 { margin-bottom: 15px; color: #007bff; font-size: 1.4rem; }

.btn { 
    display: block; 
    background: #28a745; 
    color: #fff; 
    padding: 20px; 
    text-decoration: none; 
    font-weight: bold; 
    font-size: 1.3rem; 
    border-radius: 8px; 
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4); 
    transition: 0.3s; 
}
.btn:hover { background: #218838; transform: translateY(-2px); }

.guarantee { margin-top: 15px; font-size: 0.85rem; color: #555; font-weight: bold; }

/* Rodapé */
footer { background: #f1f3f5; color: #6c757d; text-align: center; padding: 40px 20px; font-size: 0.75rem; margin-top: 50px; }
.footer-links { margin-bottom: 20px; }
.footer-links a { color: #007bff; text-decoration: none; margin: 0 8px; }
.disclaimer { max-width: 600px; margin: 0 auto; line-height: 1.5; }

/* Cookie Banner Style */
.cookie-container {
    position: fixed;
    bottom: -100px; /* Começa escondido */
    left: 0;
    right: 0;
    background: #1a2a3a;
    color: #fff;
    padding: 15px 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    transition: 0.5s;
    z-index: 9999;
}

.cookie-container.show {
    bottom: 0; /* Sobe quando a classe .show é adicionada */
}

.cookie-content {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.cookie-content p {
    font-size: 0.85rem;
    margin: 0;
    padding-right: 20px;
}

.cookie-content a {
    color: #007bff;
    text-decoration: underline;
}

.cookie-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.cookie-btn:hover {
    background: #218838;
}

/* Ajuste para celular */
@media (max-width: 600px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-content p {
        margin-bottom: 10px;
        padding-right: 0;
    }
}


/* Responsividade para Celulares */
@media (max-width: 600px) {
    .benefits-wrapper {
        flex-direction: column; /* Empilha um embaixo do outro no celular */
        text-align: center;
    }

    .product-image-side {
        flex: 0 0 100%;
        order: -1; /* Opcional: faz a imagem aparecer ANTES da lista no celular */
        margin-bottom: 20px;
    }

    .benefits-list {
        text-align: left; /* Mantém o texto da lista legível à esquerda */
    }
}