/* 
  Estilos de pré-renderização (Static HTML) 
  Ficam em arquivo externo para atender ao CSP sem 'unsafe-inline'
*/


.pr-root {
    background: #050f0c;
    color: #fff;
    font-family: Inter, system-ui, sans-serif;
    min-height: 100vh;
    user-select: none;
    -webkit-touch-callout: none;
}

.pr-header {
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pr-logo-link {
    display: flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
}

.pr-logo-img {
    object-fit: contain;
}

.pr-logo-text {
    font-size: 1.25rem;
    font-weight: 900;
    color: #fff;
}

.pr-logo-accent {
    color: #1a8f6a;
}

.pr-nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.pr-nav-link {
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
}

.pr-btn-primary {
    background: linear-gradient(135deg, #12664d, #1a8f6a);
    color: #fff;
    padding: .5rem 1.25rem;
    border-radius: .75rem;
    text-decoration: none;
    font-weight: 600;
}

.pr-btn-primary-lg {
    background: linear-gradient(135deg, #12664d, #1a8f6a);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 1rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
}

.pr-btn-secondary {
    border: 1px solid rgba(18, 102, 77, .6);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 1rem;
    text-decoration: none;
    font-weight: 600;
}

.pr-section-hero {
    padding: 5rem 2rem;
    text-align: center;
}

.pr-h1 {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1.5rem;
    font-family: Outfit, sans-serif;
}

.pr-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, .6);
    max-width: 600px;
    margin: 0 auto 2rem;
    font-weight: 400;
}

.pr-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.pr-hero-img {
    margin-top: 3rem;
    border-radius: 2rem;
    max-width: 100%;
}

.pr-urgency {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(239, 68, 68, .1);
    border: 1px solid rgba(239, 68, 68, .25);
    border-radius: 9999px;
    padding: .4rem 1rem;
    margin-bottom: 1.5rem;
}

.pr-urgency-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
}

.pr-urgency-text {
    font-size: .75rem;
    font-weight: 700;
    color: #f87171;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.pr-social-proof-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 2rem;
    border-top: 1px solid rgba(18, 102, 77, 0.15);
    border-bottom: 1px solid rgba(18, 102, 77, 0.15);
    margin: 2rem 0;
}

.pr-proof-stat {
    text-align: center;
}

.pr-proof-value {
    font-size: 2rem;
    font-weight: 900;
    color: #1a8f6a;
}

.pr-proof-label {
    font-size: .875rem;
    color: rgba(255, 255, 255, 0.5);
}

.pr-section {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pr-section-center {
    padding: 4rem 2rem;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.pr-h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    font-family: Outfit, sans-serif;
    margin-bottom: 1rem;
}

.pr-h2-mb2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    font-family: Outfit, sans-serif;
    margin-bottom: 2rem;
}

.pr-accent {
    color: #1a8f6a;
}

.pr-text {
    color: rgba(255, 255, 255, .7);
    font-size: 1.1rem;
    line-height: 1.8;
}

.pr-text-sm {
    color: rgba(255, 255, 255, .6);
    margin-bottom: 2rem;
}

.pr-product-img {
    margin-top: 2rem;
    border-radius: 1.5rem;
    max-width: 100%;
}

.pr-grid-3 {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.pr-card {
    border: 1px solid rgba(18, 102, 77, .3);
    border-radius: 1rem;
    padding: 1.5rem;
}

.pr-h3 {
    color: #1a8f6a;
    margin-bottom: .5rem;
}

.pr-card-text {
    color: rgba(255, 255, 255, .6);
}

.pr-testimonials {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pr-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.pr-testimonial-card {
    border: 1px solid rgba(18, 102, 77, .25);
    border-radius: 1rem;
    padding: 2rem;
}

.pr-stars {
    color: #facc15;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.pr-testimonial-text {
    color: rgba(255, 255, 255, .7);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.pr-testimonial-author {
    font-weight: 700;
    color: #fff;
}

.pr-testimonial-role {
    font-size: .875rem;
    color: rgba(255, 255, 255, .4);
}

.pr-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pr-input {
    padding: 1rem;
    border-radius: .75rem;
    border: 1px solid rgba(18, 102, 77, 0.4);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.pr-btn-submit {
    background: linear-gradient(135deg, #12664d, #1a8f6a);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: .75rem;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    width: 100%;
}

.pr-footer {
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(18, 102, 77, 0.2);
    margin-top: 4rem;
}

.pr-footer-text {
    color: rgba(255, 255, 255, .4);
    font-size: .875rem;
}

.pr-img-protection {
    position: absolute;
    inset: 0;
    z-index: 10;
}