:root {
    --primary: #0F9848; 
    --accent: #E09900;  
    --dark: #121413;    
    --gray: #706F6D;    
    --light: #FDFDFD;   
    --white: #ffffff;
    
    --font-sans: 'Inter', sans-serif;
    --font-titles: 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; list-style: none; text-decoration: none; border: none; outline: none; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--dark); background: var(--light); line-height: 1.7; overflow-x: hidden; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 30px; }
.section-padding { padding: 120px 0; }
.text-center { text-align: center; }

h1, h2, h3 { font-family: var(--font-titles); font-weight: 800; letter-spacing: -1px; line-height: 1.1; }
h1 { font-size: 54px; margin-bottom: 25px; }
h2 { font-size: 42px; margin-bottom: 25px; color: var(--dark); }
span.italic { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--primary); }
span.highlight { color: var(--accent); }

/* --- FORMS (Estilo do Modelo) --- */
.form-card { 
    background: var(--white); 
    padding: 40px; 
    border-radius: 25px; 
    box-shadow: 0 30px 60px rgba(0,0,0,0.12); 
    border: 1px solid #eee; 
    position: relative;
    z-index: 10;
}
.form-card h3 { font-size: 24px; margin-bottom: 10px; text-align: center; color: var(--primary); }
.form-card p { font-size: 14px; color: #777; text-align: center; margin-bottom: 30px; }
.form-group { margin-bottom: 18px; position: relative; }
.form-group i { position: absolute; left: 15px; top: 16px; color: var(--primary); opacity: 0.6; }
.form-control { 
    width: 100%; 
    padding: 15px 15px 15px 45px; 
    border: 1px solid #ddd; 
    border-radius: 12px; 
    font-size: 15px; 
    font-family: var(--font-sans);
    transition: 0.3s;
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(15, 152, 72, 0.1); }

.math-box { 
    background: #f9f9f9; 
    padding: 15px; 
    border-radius: 12px; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    margin-bottom: 25px; 
    border: 1px dashed #ccc; 
}
.math-label { font-weight: 700; color: var(--primary); font-size: 14px; }
.math-input { width: 70px; padding: 10px; text-align: center; border: 1px solid #ddd; border-radius: 8px; font-weight: 700; }

.btn-gold { 
    background: var(--accent); 
    color: white; 
    padding: 20px 10px; 
    border-radius: 12px; 
    font-weight: 800; 
    width: 100%; 
    font-size: 14px; 
    text-transform: uppercase; 
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(224, 153, 0, 0.3);
    transition: 0.4s;
    white-space: nowrap;
}
.btn-gold:hover { transform: translateY(-3px); filter: brightness(1.1); box-shadow: 0 15px 30px rgba(224, 153, 0, 0.4); }

/* --- HERO --- */
.hero-lp { 
    background: radial-gradient(circle at 90% 10%, rgba(15, 152, 72, 0.05), transparent), var(--light); 
    padding: 100px 0; 
    min-height: 100vh; 
    display: flex; 
    align-items: center; 
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.hero-text h1 { margin-bottom: 30px; line-height: 1; }
.hero-text p { font-size: 20px; color: var(--gray); margin-bottom: 40px; }

/* --- OBJECTION KILLERS (PASS) --- */
.objection-killer { background: var(--white); border-bottom: 1px solid #eee; }
.killer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.killer-content h3 { font-size: 32px; color: var(--primary); margin-bottom: 20px; }
.killer-content p { font-size: 17px; color: var(--gray); margin-bottom: 25px; }

.feature-tag { 
    display: inline-block; 
    padding: 8px 15px; 
    background: rgba(15, 152, 72, 0.1); 
    color: var(--primary); 
    border-radius: 50px; 
    font-weight: 700; 
    font-size: 12px; 
    text-transform: uppercase; 
    margin-bottom: 15px; 
}

/* --- VIDEO GALLERY --- */
.video-section { background: var(--dark); color: white; }
.video-section h2 { color: white; }
.video-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 60px; }
.video-card { 
    position: relative; 
    border-radius: 20px; 
    overflow: hidden; 
    aspect-ratio: 9/16; 
    cursor: pointer; 
    background: #000;
}
.video-card video { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; transition: 0.5s; }
.video-card:hover video { opacity: 1; transform: scale(1.05); }
.video-info { 
    position: absolute; 
    bottom: 0; left: 0; width: 100%; 
    padding: 25px; 
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); 
    z-index: 2;
}
.play-btn { 
    position: absolute; 
    top: 50%; left: 50%; 
    transform: translate(-50%, -50%); 
    font-size: 40px; 
    color: var(--accent); 
    z-index: 3;
    pointer-events: none;
}

/* --- COMPARISON (KILLING PRICE OBJECTION) --- */
.compare-section { background: #fefefe; }
.compare-card { 
    background: white; 
    border-radius: 30px; 
    padding: 60px; 
    box-shadow: 0 40px 80px rgba(0,0,0,0.05); 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 60px;
    border: 1px solid #f0f0f0;
}
.compare-item h4 { font-size: 22px; margin-bottom: 25px; border-bottom: 2px solid #eee; padding-bottom: 15px; }
.compare-list li { margin-bottom: 15px; display: flex; gap: 15px; align-items: flex-start; }
.compare-list i.fa-xmark { color: #e74c3c; }
.compare-list i.fa-check { color: var(--primary); }

/* MODAL */
.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95); z-index: 3000; justify-content: center; align-items: center; }
.modal-content { width: 90%; max-width: 500px; position: relative; }
.modal-close { position: absolute; top: -50px; right: 0; color: white; font-size: 40px; cursor: pointer; }

/* Floating Elements */
.wp-float { position: fixed; bottom: 30px; right: 30px; background: #25d366; color: white; width: 65px; height: 65px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); z-index: 1000; }

footer { background: var(--dark); color: white; padding: 60px 0; text-align: center; }
.footer-logo { font-family: var(--font-titles); font-size: 28px; font-weight: 800; color: var(--primary); display: block; margin-bottom: 15px; }

@media (max-width: 992px) {
    .hero-grid, .killer-grid, .video-grid, .compare-card { grid-template-columns: 1fr; }
    h1 { font-size: 38px; }
    .hero-lp { text-align: center; }
}
