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

/* Performance: Suporte a fontes e suavização */
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 - SEO: Altura fixa evita saltos */
.top-bar {
    background-color: #02535e;
    color: #ffffff;
    font-size: 11px;
    font-weight: 500;
    padding: 8px 0;
    letter-spacing: 0.5px;
    contain: layout;
}

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

/* Título e Estrelas - SEO: Hierarquia clara para o Google Ads */
.main-title {
    color: #026876;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.2;
}

/* AJUSTE: Correção da proporção incorreta (411/60 = 6.85) */
.stars-icon {
    width: 120px;
    height: auto; /* Deixa o navegador calcular a altura exata */
    display: block;
    margin: 0 auto;
    aspect-ratio: 411 / 60; /* Valor real da imagem original */
}

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

/* Imagem Central - Performance: Aspect-ratio reservado para frascos */
.product-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 30px auto;
    aspect-ratio: 3 / 4; /* Proporção ideal para suplementos e sprays */
    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: GPU Accelerated */
.cta-button {
    display: inline-block;
    background-color: #026876;
    color: #ffffff;
    padding: 16px 60px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600; /* Levemente mais negrito para conversão */
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(2, 104, 118, 0.3); /* Sombra na cor do produto */
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.cta-button:hover {
    transform: scale(1.02);
    background-color: #014d57; /* Escurece levemente no hover */
}

/* Certificações - Ajuste de proporção para os selos */
/* 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; /* Um pouco mais de respiro */
    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 8px;
    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 30px; 
        font-size: 16px; 
        width: 100%; /* Botão full width no mobile para facilitar o clique */
    }
}