/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0a0a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

.highlight {
    color: #00ff88;
    font-weight: 900;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 2rem;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    font-weight: 600;
}

.hero-description {
    font-size: 1.25rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.social-proof {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #00ff88;
    font-weight: 600;
}

.proof-item i {
    font-size: 1.2rem;
}

.hero-image {
    text-align: center;
    padding: 20px 10px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.hero-video {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.3);
    border: 3px solid #00ff88;
    object-fit: cover;
}

.authority-photo {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid #333;
}

/* CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
    background: linear-gradient(135deg, #00cc6a 0%, #00ff88 100%);
}

.cta-button.final {
    font-size: 1.3rem;
    padding: 2rem 4rem;
    margin: 2rem 0;
}

/* Pain Points Section */
.pain-points {
    background: #111;
    padding: 80px 0;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pain-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.pain-item:hover {
    transform: translateY(-5px);
    border-color: #ff4444;
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.2);
}

.pain-item i {
    font-size: 3rem;
    color: #ff4444;
    margin-bottom: 1rem;
}

.pain-item h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.pain-item p {
    color: #ccc;
    line-height: 1.6;
}

.pain-conclusion {
    text-align: center;
    font-size: 1.2rem;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
}

/* Authority Section */
.authority {
    background: #0a0a0a;
    padding: 80px 0;
}

.authority-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.authority-text p {
    color: #ccc;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: #00ff88;
}

.stat .label {
    color: #ccc;
    font-weight: 600;
}

/* Offer Section */
.offer {
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    padding: 80px 0;
}

.offer-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.offer-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #333;
    transition: all 0.3s ease;
}

.offer-item:hover {
    transform: translateY(-5px);
    border-color: #00ff88;
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.2);
}

.offer-item i {
    font-size: 3.5rem;
    color: #00ff88;
    margin-bottom: 1.5rem;
}

.offer-item h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.offer-item p {
    color: #ccc;
    line-height: 1.6;
}

/* Social Proof Section */
.social-proof-section {
    background: #0a0a0a;
    padding: 80px 0;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-real {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #333;
    transition: all 0.3s ease;
}

.testimonial-real:hover {
    transform: translateY(-5px);
    border-color: #00ff88;
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.2);
}

.testimonial-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.testimonial-caption {
    color: #ccc;
    font-size: 0.9rem;
    font-style: italic;
}

.testimonials-conclusion {
    text-align: center;
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Objections Section */
.objections {
    background: #111;
    padding: 80px 0;
}

.objection-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.objection-text p {
    color: #ccc;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.objection-visual {
    text-align: center;
}

.objection-visual i {
    font-size: 8rem;
    color: #00ff88;
}

/* Urgency Section */
.urgency {
    background: linear-gradient(135deg, #ff4444 0%, #cc3333 100%);
    padding: 60px 0;
    text-align: center;
}

.urgency-content p {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.urgency-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 2rem;
}

.urgency-stat {
    text-align: center;
}

.urgency-stat .number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
}

.urgency-stat .label {
    color: #fff;
    font-weight: 600;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 100px 0;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #00ff88;
    font-weight: 600;
    font-size: 1.1rem;
}

.benefit i {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: #000;
    padding: 40px 0 20px;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-content p {
    color: #ccc;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00ff88;
}

.disclaimer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.disclaimer small {
    color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .authority-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .objection-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-proof {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stats {
        justify-content: center;
    }
    
    .urgency-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cta-button {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
    
    .cta-button.final {
        padding: 1.5rem 2.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .offer-grid {
        grid-template-columns: 1fr;
    }
    
    .pain-grid {
        grid-template-columns: 1fr;
    }
}


/* Melhorias específicas para mobile */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
        min-height: auto;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-image {
        margin: 1.5rem 0;
        padding: 10px;
    }
    
    .hero-video {
        max-width: 400px;
    }
    
    .authority-photo {
        max-width: 200px;
        height: auto;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial-image {
        max-width: 100%;
        height: auto;
    }
    
    .pain-item {
        padding: 2rem 1.5rem;
    }
    
    .offer-item {
        padding: 2rem 1.5rem;
    }
    
    .offer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-image {
        margin: 1rem 0;
        padding: 5px;
    }
    
    .hero-video {
        max-width: 350px;
        width: 95%;
    }
    
    .authority-photo {
        max-width: 180px;
    }
    
    .pain-item {
        padding: 1.5rem 1rem;
    }
    
    .offer-item {
        padding: 1.5rem 1rem;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
    }
}   
    .social-proof .proof-item {
        font-size: 0.9rem;
    }
}

