/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #007bff;
    --primary-dark: #0056b3;
    --secondary: #6c5ce7;
    --success: #00b894;
    --warning: #fdcb6e;
    --danger: #e17055;
    --dark: #0a0a0a;
    --dark-light: #1a1a1a;
    --dark-lighter: #2d2d2d;
    --text: #ffffff;
    --text-muted: #a0a0a0;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-success: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    --gradient-whatsapp: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    --gradient-instagram: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-light: 0 5px 20px rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.6;
}

/* Pages */
.page {
    display: none;
    min-height: 100vh;
    padding: 20px;
}

.page.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Container */
.container {
    max-width: 480px;
    margin: 0 auto;
    padding: 20px;
}

.quiz-container {
    padding-top: 10px;
}

/* Botão Voltar */
.back-button {
    background: var(--dark-lighter);
    border: none;
    color: var(--text);
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

.back-button:hover {
    background: var(--dark-light);
    transform: translateX(-5px);
}

/* Profile Section */
.profile-section {
    text-align: center;
    padding: 30px 0;
}

.profile-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid transparent;
    background: var(--gradient-primary);
    padding: 3px;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.profile-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.profile-title {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 10px;
}

.profile-bio {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Links Section */
.links-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.link-button {
    background: var(--dark-light);
    border: 1px solid var(--dark-lighter);
    border-radius: 16px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    color: var(--text);
    width: 100%;
}

.link-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: rgba(255, 255, 255, 0.1);
}

.link-button.primary:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    border-color: rgba(102, 126, 234, 0.5);
}

.link-button.secondary:hover {
    background: linear-gradient(135deg, rgba(0, 184, 148, 0.2) 0%, rgba(0, 206, 201, 0.2) 100%);
    border-color: rgba(0, 184, 148, 0.5);
}

.link-button.tertiary:hover {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2) 0%, rgba(162, 155, 254, 0.2) 100%);
    border-color: rgba(108, 92, 231, 0.5);
}

.button-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.link-button.primary .button-icon {
    background: var(--gradient-primary);
}

.link-button.secondary .button-icon {
    background: var(--gradient-success);
}

.link-button.tertiary .button-icon {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
}

.button-content {
    flex: 1;
}

.button-title {
    display: block;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 3px;
}

.button-subtitle {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.link-button .fa-chevron-right {
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.link-button:hover .fa-chevron-right {
    transform: translateX(5px);
    color: var(--text);
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-light);
    color: var(--text);
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--dark-lighter);
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon:hover:not(.whatsapp) {
    background: var(--gradient-instagram);
}

.social-icon.whatsapp:hover {
    background: var(--gradient-whatsapp);
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid var(--dark-lighter);
}

.footer p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Quiz Header */
.quiz-header {
    text-align: center;
    margin-bottom: 25px;
}

.quiz-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
}

.quiz-icon.success {
    background: var(--gradient-success);
}

.quiz-icon.funil {
    background: var(--gradient-success);
}

.quiz-icon.crm {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
}

.quiz-header h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.quiz-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Progress Bar */
.progress-bar {
    height: 6px;
    background: var(--dark-lighter);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress {
    height: 100%;
    background: var(--gradient-success);
    border-radius: 3px;
    transition: width 0.5s ease;
}

.progress-text {
    display: block;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* Quiz Question */
.quiz-question {
    background: var(--dark-light);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid var(--dark-lighter);
}

.quiz-question h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.5;
}

.question-note {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Quiz Options */
.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quiz-option {
    background: var(--dark-light);
    border: 2px solid var(--dark-lighter);
    border-radius: 14px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    color: var(--text);
    font-size: 1rem;
    font-weight: 500;
    width: 100%;
}

.quiz-option:hover {
    border-color: var(--primary);
    background: rgba(0, 123, 255, 0.1);
    transform: translateX(5px);
}

.quiz-option.highlight {
    border-color: var(--success);
    background: rgba(0, 184, 148, 0.1);
}

.quiz-option.highlight:hover {
    background: rgba(0, 184, 148, 0.2);
    transform: translateX(5px);
}

.option-icon {
    font-size: 1.5rem;
}

/* Result Cards */
.result-card {
    text-align: center;
    padding: 30px 25px;
    border-radius: 20px;
    background: var(--dark-light);
    border: 1px solid var(--dark-lighter);
}

.result-card.success {
    border-color: rgba(0, 184, 148, 0.3);
    background: linear-gradient(180deg, rgba(0, 184, 148, 0.1) 0%, var(--dark-light) 100%);
}

.result-card.warning {
    border-color: rgba(253, 203, 110, 0.3);
    background: linear-gradient(180deg, rgba(253, 203, 110, 0.1) 0%, var(--dark-light) 100%);
}

.result-card.info {
    border-color: rgba(0, 123, 255, 0.3);
    background: linear-gradient(180deg, rgba(0, 123, 255, 0.1) 0%, var(--dark-light) 100%);
}

.result-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 25px;
    background: var(--gradient-success);
}

.result-card.warning .result-icon {
    background: linear-gradient(135deg, #fdcb6e 0%, #f39c12 100%);
}

.result-card.info .result-icon {
    background: var(--gradient-primary);
}

.result-icon.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 184, 148, 0.5);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(0, 184, 148, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 184, 148, 0);
    }
}

.result-card h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.result-card p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 1rem;
}

/* Tips Box */
.tips-box {
    background: var(--dark-lighter);
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    margin: 25px 0;
}

.tips-box h4 {
    margin-bottom: 15px;
    font-size: 1rem;
}

.tips-box ul {
    list-style: none;
}

.tips-box li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.tips-box li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
}

/* Benefits Box */
.benefits-box {
    background: var(--dark-lighter);
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    margin: 25px 0;
}

.benefits-box h4 {
    margin-bottom: 15px;
    font-size: 1rem;
}

.benefits-box ul {
    list-style: none;
}

.benefits-box li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-size: 0.95rem;
}

.benefits-box li i {
    color: var(--success);
    font-size: 1rem;
}

/* CTA Buttons */
.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 30px;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    width: 100%;
    margin-bottom: 12px;
}

.cta-button.whatsapp {
    background: var(--gradient-whatsapp);
    color: white;
}

.cta-button.whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.cta-button.instagram {
    background: var(--gradient-instagram);
    color: white;
}

.cta-button.instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220, 39, 67, 0.4);
}

.cta-button.primary {
    background: var(--gradient-primary);
    color: white;
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.cta-button.secondary {
    background: var(--gradient-success);
    color: white;
}

.cta-button.secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 184, 148, 0.4);
}

.cta-button.outline {
    background: transparent;
    border: 2px solid var(--dark-lighter);
    color: var(--text);
}

.cta-button.outline:hover {
    border-color: var(--text-muted);
    background: var(--dark-lighter);
}

.cta-text {
    font-size: 1rem;
    color: var(--text);
    margin: 20px 0;
}

/* Service Card */
.service-card {
    background: var(--dark-light);
    border-radius: 20px;
    padding: 30px 25px;
    border: 1px solid var(--dark-lighter);
    margin-bottom: 25px;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    background: var(--gradient-success);
}

.service-card h3 {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-card > p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.service-features {
    display: grid;
    gap: 12px;
    margin-bottom: 25px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: var(--dark-lighter);
    border-radius: 10px;
}

.feature i {
    color: var(--success);
    font-size: 1rem;
}

.feature span {
    font-size: 0.95rem;
}

/* Price Badge */
.price-badge {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2) 0%, rgba(162, 155, 254, 0.2) 100%);
    border: 1px solid rgba(108, 92, 231, 0.5);
    border-radius: 12px;
    padding: 15px 25px;
    text-align: center;
    margin-bottom: 25px;
}

.price-badge span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.price-badge strong {
    font-size: 1.8rem;
    color: var(--text);
}

.price-final {
    background: var(--gradient-success);
    border-radius: 12px;
    padding: 15px 25px;
    text-align: center;
    margin: 20px 0;
}

.price-final span {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 5px;
}

.price-final strong {
    font-size: 1.8rem;
}

/* Funnel Visual */
.funnel-visual {
    margin: 30px 0;
}

.funnel-stage {
    background: var(--dark-lighter);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;
}

.funnel-stage.success {
    background: rgba(0, 184, 148, 0.2);
    border: 1px solid rgba(0, 184, 148, 0.5);
}

.stage-icon {
    font-size: 1.5rem;
}

.stage-name {
    font-weight: 600;
    flex: 1;
}

.stage-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.funnel-arrow {
    text-align: center;
    color: var(--text-muted);
    padding: 5px 0;
}

/* Info Card */
.info-card {
    background: var(--dark-light);
    border-radius: 20px;
    padding: 30px 25px;
    border: 1px solid var(--dark-lighter);
}

.info-card h2 {
    text-align: center;
    margin-bottom: 15px;
}

.info-card > p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 480px) {
    .container {
        padding: 15px;
    }
    
    .profile-image {
        width: 100px;
        height: 100px;
    }
    
    .profile-name {
        font-size: 1.2rem;
    }
    
    .link-button {
        padding: 15px;
    }
    
    .button-icon {
        width: 45px;
        height: 45px;
    }
    
    .quiz-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .result-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 16px 25px;
        font-size: 1rem;
    }
}
