/* Reset e estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

body {
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
}

/* Header */
.top-banner {
    background-color: #c00500;
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
    font-size: 16px;
}

.profile-section {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.profile-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-pic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.profile-name {
    display: flex;
    align-items: center;
    gap: 5px;
}

.profile-name h2 {
    font-size: 18px;
    font-weight: 500;
}

.verified-badge {
    color: #1DA1F2;
    font-size: 16px;
}

/* Main Content */
.hero-section {
    text-align: center;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.hero-section h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
}

.funnel-diagram {
    margin: 30px 0;
}

.funnel-image {
    max-width: 100%;
    height: auto;
    border: 1px solid #333;
    border-radius: 5px;
}

.cta-button {
    margin: 30px 0;
}

.btn-primary {
    background-color: #128d21;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #014a0a;
    color: #ffffff;
}

.btn-primary:visited, .btn-primary:active, .btn-primary:focus {
    color: #ffffff;
    text-decoration: none;
    outline: none;
}

.testimonial {
    font-style: italic;
    margin: 20px 0;
    font-size: 16px;
    color: #cccccc;
}

/* Footer */
.copyright {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #888888;
    margin-top: 40px;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: #888888;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Animações */
.hero-section > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-section > *.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 24px;
    }
    
    .btn-primary {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 20px;
    }
    
    .profile-pic {
        width: 40px;
        height: 40px;
    }
    
    .profile-name h2 {
        font-size: 16px;
    }
}