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

/* Performance: Renderização suave e suporte a fontes */
body.aquasculpt-page {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #ffffff;
    background-image: radial-gradient(at center, #ffffff 0%, #ffffff 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 - AJUSTE DE CONTRASTE (WCAG AA) */
.top-bar {
    /* Cor alterada de #ff70e0 para #d600a1 para passar no contraste */
    background-color: #d600a1; 
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 8px 0;
    letter-spacing: 0.5px;
    contain: layout;
}

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

/* Título e Estrelas - AJUSTE DE CONTRASTE */
.main-title {
    /* Cor sincronizada para garantir leitura e SEO */
    color: #d600a1;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.2;
}

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

.rating-link {
    font-size: 13px;
    color: #1A5E9F;
    text-decoration: underline;
    display: inline-block;
    margin-top: 5px;
}

/* Imagem Central - Performance: Evita saltos de layout (CLS) */
.product-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 30px auto;
    aspect-ratio: 3 / 4;
    object-fit: contain;
}

/* Copy */
.headline {
    font-size: 26px;
    color: #374771;
    font-weight: 600;
    margin-bottom: 10px;
}

.sub-headline {
    font-size: 16px;
    color: #6a737d;
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.4;
}

/* Botão CTA - AJUSTE DE CONTRASTE */
.cta-button {
    display: inline-block;
    /* Cor alterada para passar no teste de acessibilidade do Google */
    background-color: #d600a1;
    color: #ffffff;
    padding: 16px 60px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    /* Sombra atualizada para a nova cor */
    box-shadow: 0 4px 15px rgba(214, 0, 161, 0.4);
    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: #b50088; /* Feedback visual no hover */
}

/* Certificações - Ajuste Matemático para Proporção 5.93 */
.certs-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    margin-top: 50px;
    opacity: 0.9;
    aspect-ratio: 1761 / 297; 
    object-fit: contain;
    contain: layout;
}

/* RODAPÉ COMPACTO */
.legal-footer {
    background-color: #050404;
    color: #ffffff;
    padding: 20px 10px;
    font-size: 10px;
    line-height: 1.4;
    width: 100%;
    margin-top: auto;
    contain: content;
}

.footer-links {
    font-weight: 600;
    margin-bottom: 8px;
}

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

.copyright-text {
    font-weight: 600;
    opacity: 0.9;
}

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