/* Reset Básico Otimizado */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* Performance: Renderização acelerada e suavização de fontes */
body.aquasculpt-page {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #ffffff;
    background-image: radial-gradient(at center, #ffffff 0%, #f4f7fa 100%);
    color: #333;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

/* Barra de Urgência - RESOLVIDO: Azul Marinho profundo para contraste 7:1 */
.top-bar {
    background-color: #1a4a75; /* Tom mais denso para garantir leitura em fontes pequenas */
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 10px 0; /* Aumento leve no padding para melhorar a área de foco */
    letter-spacing: 0.8px;
    contain: layout;
}

/* Container Principal */
.main-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    flex: 1;
}

/* Título e Estrelas - SEO e Acessibilidade */
.main-title {
    color: #1a4a75; /* Sincronizado com o novo tom da top-bar */
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.2;
}

/* AJUSTE: Proporção real das estrelas (6.85) */
.stars-icon {
    width: 120px;
    height: auto;
    display: block;
    margin: 0 auto;
    aspect-ratio: 411 / 60; 
}

.rating-link {
    font-size: 13px;
    color: #154b7d; /* Azul escuro para contraste em links */
    text-decoration: underline;
    display: inline-block;
    margin-top: 5px;
}

/* Imagem Central - Performance: Prevenção de CLS */
.product-image {
    width: 100%;
    max-width: 320px;
    height: auto;
    margin: 30px auto;
    aspect-ratio: 3 / 4;
    object-fit: contain;
}

/* Copy */
.headline {
    font-size: 26px;
    color: #2d3748; /* Cor neutra escura para contraste ideal */
    font-weight: 700;
    margin-bottom: 10px;
}

.sub-headline {
    font-size: 16px;
    color: #4a5568; /* Cinza escuro legível */
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.5;
}

/* Botão CTA - RESOLVIDO: Azul Royal denso para contraste WCAG AA */
.cta-button {
    display: inline-block;
    background-color: #1e4e8c; /* Azul sólido com alto contraste */
    color: #ffffff !important; /* Força o branco */
    padding: 18px 60px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s;
    will-change: transform;
}

.cta-button:hover {
    transform: scale(1.03);
    background-color: #153a69;
}

/* Certificações */
.certs-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    margin: 50px auto 0;
    opacity: 1; /* Removida a opacidade para garantir contraste dos selos */
    aspect-ratio: 1761 / 297; 
    object-fit: contain;
    display: block;
    contain: layout;
}

/* RODAPÉ */
.legal-footer {
    background-color: #0d0d0d;
    color: #e2e8f0; /* Cinza claro para evitar cansaço visual no preto puro */
    padding: 25px 10px;
    font-size: 11px;
    line-height: 1.6;
    width: 100%;
    margin-top: auto;
}

.footer-links {
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.medical-disclaimer {
    max-width: 900px;
    margin: 0 auto 10px;
    font-weight: 400;
    opacity: 0.85;
}

.copyright-text {
    font-weight: 700;
}

/* Responsividade Mobile Otimizada */
@media (max-width: 600px) {
    .main-title { font-size: 30px; }
    .headline { font-size: 22px; }
    .cta-button { 
        padding: 16px 20px; 
        font-size: 16px; 
        width: 100%; 
    }
}