/* 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%, #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 - Altura fixa para evitar saltos (CLS) */
.top-bar {
    background-color: #170742;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700; /* Aumentado para melhor legibilidade no fundo escuro */
    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 - SEO: Hierarquia preservada */
.main-title {
    color: #374771;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.2;
}

/* AJUSTE: Proporção real das estrelas (6.85) para silenciar o Lighthouse */
.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: Prevenção de CLS */
.product-image {
    width: 100%;
    max-width: 320px; /* Redimensionado para melhor proporção desktop */
    height: auto;
    margin: 30px auto;
    aspect-ratio: 3 / 4; /* Reserva o espaço vertical para frascos */
    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 - Performance: Aceleração por Hardware (GPU) */
.cta-button {
    display: inline-block;
    background-color: #27025b;
    color: #ffffff;
    padding: 16px 60px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600; /* Mais peso para o CTA */
    text-transform: uppercase;
    /* Sombra sincronizada com o tom de roxo profundo */
    box-shadow: 0 4px 15px rgba(39, 2, 91, 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: #1a013d; /* Escurece levemente no hover */
}

/* Certificações - Estabilidade visual no rodapé */
/* 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;
    /* Cálculo: 1761 / 297 = 5.93 */
    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%; /* Full width facilita o clique com o polegar */
    }
}