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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

/* Padrão de Tamanhos de Fonte - Global */
h1, .teste-intro-title {
    font-size: 1.8rem !important;
    font-weight: 700;
}

.hero-title {
    font-size: 3.9rem !important;
    font-weight: 700;
}

h2, .section-title, .transform-title, .cta-title {
    font-size: 1.4rem !important;
    font-weight: 600;
}

h3, .instrucoes-title, .testimonial-title {
    font-size: 1rem !important;
    font-weight: 600;
}

h4, .benefit-card h4 {
    font-size: 0.9rem !important;
    font-weight: 600;
}

h5, .footer-title {
    font-size: 0.9rem !important;
    font-weight: 700;
}

h6, .footer-heading {
    font-size: 0.8rem !important;
    font-weight: 600;
}

p, .hero-subtitle, .teste-intro-subtitle, .section-subtitle, .transform-text, .testimonial-description, .footer-description {
    font-size: 0.9rem !important;
    line-height: 1.5;
}

.small-text, .footer-links a, .footer-copyright, .footer-cnpj, .footer-rights {
    font-size: 0.7rem !important;
}

/* Ajustar container Bootstrap - Mais próximo das bordas */
.container {
    padding-left: 10px !important;
    padding-right: 10px !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

@media (min-width: 576px) {
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

@media (min-width: 768px) {
    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

@media (min-width: 992px) {
    .container {
        padding-left: 25px !important;
        padding-right: 25px !important;
    }
}

@media (min-width: 1200px) {
    .container {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }
}

/* Cores exatas do site original */
:root {
    --primary-color: #6366f1;
    --primary-light: #8b5cf6;
    --primary-dark: #4f46e5;
    --secondary-color: #f59e0b;
    --accent-color: #10b981;
    --text-primary: #1a1a1a;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* Header - Exato da imagem */
.navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    padding: 0.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    min-height: 60px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar-brand img {
    height: 35px;
    width: auto;
}

.navbar-nav.ms-auto {
    margin-left: auto !important;
    margin-right: 0 !important;
}

.navbar-nav.ms-3 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.nav-link {
    color: #6b7280 !important;
    font-weight: 400;
    padding: 0.3rem 0.8rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    background: none;
}

.nav-link.active {
    color: var(--primary-color) !important;
    background: none;
}

/* Botão do header */
.navbar .btn {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    color: white;
}

/* Hero Section - Exato da imagem */
.hero-section {
    background: linear-gradient(135deg, #f8faff 0%, #fef7ff 100%);
    color: #1a1a1a;
    padding: 60px 0 60px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-title {
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.025em;
    text-align: center;
    color: #1a1a1a;
    white-space: nowrap;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.65rem;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
    color: #6b7280;
    line-height: 1.5;
    font-weight: 400;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    border-radius: 20px;
    font-weight: 600;
    padding: 10px 20px;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9rem;
    letter-spacing: -0.025em;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.btn-outline-primary {
    border: 1px solid #d1d5db;
    color: #6b7280;
    background: transparent;
    font-weight: 500;
}

.btn-outline-primary:hover {
    background: #f8f9fa;
    color: #374151;
    border-color: #9ca3af;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Hero Image - Círculo exato do original */
.eneagrama-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.circle-outer {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: float 6s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.circle-inner {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.circle-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.025em;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Benefits Section - Exato da imagem */
.benefits-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: -0.025em;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
    text-align: center;
    line-height: 1.6;
}

.benefit-card {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    height: 220px;
    transition: all 0.3s ease;
    border: none;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 3px solid #4f46e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 0.75rem 0;
    color: #4f46e5;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.benefit-icon i {
    font-weight: 900;
    color: #4f46e5;
}

.benefit-card h4 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.benefit-card p {
    color: #6b7280;
    line-height: 1.5;
    font-size: 0.85rem;
    flex-grow: 1;
    margin: 0;
}

/* Transform Section - Exato da imagem */
.transform-section {
    background: linear-gradient(135deg, #f8faff 0%, #fef7ff 100%);
    padding: 80px 0;
}

.transform-section .row {
    margin-left: -10px;
    margin-right: -10px;
}

.transform-section .col-lg-6 {
    padding-left: 10px;
    padding-right: 10px;
}

.transform-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.transform-text {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.transform-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.transform-list li {
    padding: 0.3rem 0;
    color: #1a1a1a;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    margin-bottom: 0.3rem;
}

.transform-list li i {
    color: #22c55e;
    font-size: 1.1rem;
    margin-right: 0.6rem;
    flex-shrink: 0;
}

/* Testimonial Card - Exato da imagem */
.testimonial-card {
    background: #E0E6FF !important;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    margin-top: 1rem;
    margin-left: 0;
}

.testimonial-symbol {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    opacity: 0.4;
    z-index: 10;
    text-align: center;
    margin-bottom: 1rem;
}

.testimonial-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    margin-top: 0;
}

.testimonial-description {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.testimonial-stars {
    margin-bottom: 1.5rem;
}

.testimonial-stars i {
    color: #facc15;
    font-size: 1.5rem;
    margin: 0 0.25rem;
}

.testimonial-quote {
    font-size: 0.85rem;
    color: #6b7280;
    font-style: italic;
    margin: 0;
    line-height: 1.5;
}

.eneagrama-diagram {
    width: 300px;
    height: 300px;
    position: relative;
    margin: 0 auto;
}

.diagram-center {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3);
}

.diagram-points {
    position: relative;
    width: 100%;
    height: 100%;
}

.point {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    position: absolute;
    animation: pulse 2s infinite;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.point-1 { top: 0; left: 50%; transform: translateX(-50%); }
.point-2 { top: 25%; right: 0; }
.point-3 { top: 50%; right: 0; transform: translateY(-50%); }
.point-4 { bottom: 25%; right: 0; }
.point-5 { bottom: 0; left: 50%; transform: translateX(-50%); }
.point-6 { bottom: 25%; left: 0; }
.point-7 { top: 50%; left: 0; transform: translateY(-50%); }
.point-8 { top: 25%; left: 0; }
.point-9 { top: 50%; left: 50%; transform: translate(-50%, -50%); }

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Testimonials Section - Exato do original */
.testimonials-section {
    background: var(--bg-white);
    padding: 80px 0;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.125rem;
}

.testimonial-author strong {
    color: var(--text-primary);
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: block;
    margin-top: 0.25rem;
}

/* CTA Section - Exato da imagem */
.cta-section {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    padding: 80px 0;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
    color: white;
}

.cta-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    color: white;
}

.cta-btn {
    background: white;
    color: #4f46e5;
    border: none;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(255, 255, 255, 0.3);
}

.cta-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
    color: #4f46e5;
}

.cta-btn i {
    font-size: 1rem;
}

/* Teste Introduction Section - Padronizado */
.teste-intro-section {
    background: #f8f9fa;
    padding: 100px 0 60px;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.teste-intro-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.teste-intro-subtitle {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.instrucoes-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
    max-width: 800px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.instrucoes-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.instrucoes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.instrucoes-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.4;
    padding: 0.3rem 0;
}

.instrucoes-list li i {
    color: #22c55e;
    font-size: 1.1rem;
    margin-right: 0.6rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.btn-teste-iniciar {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    border: none;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.3);
}

.btn-teste-iniciar:hover {
    background: linear-gradient(135deg, #4338ca 0%, #6d28d9 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
    color: white;
}

.btn-teste-iniciar i {
    font-size: 1rem;
}

/* Ads Section - Exato do original */
.ads-section {
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
}

.ads-placeholder {
    background: white;
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    color: var(--text-muted);
    text-align: center;
    font-size: 0.9rem;
}

/* Test Section - Exato do original */
.test-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.test-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.test-header {
    text-align: center;
    margin-bottom: 2rem;
}

.test-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
}

.test-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

.progress-container {
    margin-bottom: 2rem;
}

.progress {
    height: 8px;
    border-radius: 4px;
    background: var(--border-color);
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-bar {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 4px;
    transition: width 0.6s ease;
}

.progress-text {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.question-container {
    margin-bottom: 2rem;
}

.question-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.options-container {
    margin-bottom: 2rem;
}

.option-item {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.option-item:hover {
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
}

.option-item.selected {
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.option-item input[type="radio"] {
    margin-right: 1rem;
    width: 20px;
    height: 20px;
}

.option-item label {
    cursor: pointer;
    font-weight: 500;
    color: var(--text-primary);
    flex: 1;
}

.option-item input[type="radio"]:checked + label {
    color: var(--primary-color);
    font-weight: 600;
}

.form-actions {
    text-align: center;
}

.result-container {
    text-align: center;
}

.result-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.result-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.pricing-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid var(--primary-color);
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.amount {
    font-size: 3.5rem;
}

.pricing-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.pricing-actions {
    text-align: center;
}

/* Footer - Exato da imagem */
.footer-section {
    background: #fcfcfc;
    color: #666666;
    padding: 2rem 0 1rem;
}

.footer-top {
    margin-bottom: 1.5rem;
}

.footer-brand {
    margin-bottom: 0;
}

.footer-icon {
    margin-bottom: 0.5rem;
}

.footer-title {
    color: #666666;
    font-weight: 700;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.footer-subtitle {
    color: #666666;
    font-weight: 400;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
}

.footer-description {
    color: #666666;
    line-height: 1.4;
    font-size: 0.65rem;
    margin: 0;
}

.footer-heading {
    color: #666666;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.2rem;
}

.footer-links a {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.7rem;
    font-weight: 400;
}

.footer-links a:hover {
    color: #6366f1;
}

.footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding-top: 1rem;
}

.footer-copyright {
    color: #666666;
    font-weight: 400;
    margin-bottom: 0.15rem;
    font-size: 0.6rem;
}

.footer-cnpj {
    color: #666666;
    font-size: 0.6rem;
    margin-bottom: 0;
}

.footer-rights {
    color: #666666;
    font-size: 0.6rem;
    font-weight: 400;
}

/* Responsive - Exato do original */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.86rem;
        white-space: normal;
    }
    
    .hero-subtitle {
        font-size: 1.82rem;
        margin-top: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .circle-outer {
        width: 250px;
        height: 250px;
    }
    
    .circle-inner {
        width: 150px;
        height: 150px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefit-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.125rem;
    }
    
    .test-card {
        padding: 2rem;
    }
    
    .footer-info {
        text-align: left;
        margin-top: 2rem;
    }
    
    .footer-section {
        padding: 2rem 0;
    }
}

/* Perguntas Section */
.perguntas-section {
    background: #f8f9fa;
    padding: 100px 0 60px;
    min-height: 100vh;
}

.progress-container {
    margin-bottom: 2rem;
}

.progress {
    height: 8px;
    border-radius: 4px;
    background-color: #e5e7eb;
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    transition: width 0.3s ease;
}

.progress-text {
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

.pergunta-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.pergunta-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.opcoes-container {
    margin-bottom: 2rem;
}

.opcao-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.opcao-item:hover {
    border-color: #4f46e5;
    background: #f8faff;
}

.opcao-item input[type="radio"] {
    margin-right: 1rem;
    width: 18px;
    height: 18px;
    accent-color: #4f46e5;
}

.opcao-item input[type="radio"]:checked + label {
    color: #4f46e5;
    font-weight: 600;
}

.opcao-item:has(input[type="radio"]:checked) {
    border-color: #4f46e5;
    background: #f8faff;
}

.opcao-item label {
    cursor: pointer;
    font-size: 0.95rem;
    color: #374151;
    margin: 0;
    flex: 1;
}

.pergunta-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.pergunta-actions .btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.pergunta-actions .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pergunta-actions .btn:not(:disabled):hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Loading Screen */
.loading-screen {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.loading-content {
    max-width: 500px;
    margin: 0 auto;
}

.loading-animation {
    margin-bottom: 2rem;
}

.eneagrama-loader {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.eneagrama-circle {
    position: relative;
    width: 80px;
    height: 80px;
    border: 3px solid #e5e7eb;
    border-radius: 50%;
    animation: rotate 3s linear infinite;
}

.eneagrama-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #4f46e5;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

.eneagrama-dot:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.eneagrama-dot:nth-child(2) { top: 15px; right: 15px; animation-delay: 0.2s; }
.eneagrama-dot:nth-child(3) { bottom: 15px; right: 15px; animation-delay: 0.4s; }
.eneagrama-dot:nth-child(4) { bottom: 0; left: 50%; transform: translateX(-50%); animation-delay: 0.6s; }
.eneagrama-dot:nth-child(5) { bottom: 15px; left: 15px; animation-delay: 0.8s; }
.eneagrama-dot:nth-child(6) { top: 15px; left: 15px; animation-delay: 1s; }
.eneagrama-dot:nth-child(7) { top: 25px; left: 50%; transform: translateX(-50%); animation-delay: 1.2s; }
.eneagrama-dot:nth-child(8) { bottom: 25px; left: 50%; transform: translateX(-50%); animation-delay: 1.4s; }
.eneagrama-dot:nth-child(9) { top: 50%; left: 50%; transform: translate(-50%, -50%); animation-delay: 1.6s; }

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

.loading-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.loading-subtitle {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.countdown-container {
    background: linear-gradient(135deg, #f0f4ff 0%, #f8faff 100%);
    border: 2px solid #e0e7ff;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
}

.countdown-text {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.countdown-number {
    font-size: 3rem;
    font-weight: 700;
    color: #4f46e5;
    margin: 0.5rem 0;
    line-height: 1;
}

.countdown-seconds {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
}

.loading-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.step.active {
    background: #f0f4ff;
    border: 2px solid #4f46e5;
}

.step i {
    font-size: 1.2rem;
    color: #6b7280;
    width: 20px;
}

.step.active i {
    color: #4f46e5;
}

.step span {
    font-size: 0.95rem;
    color: #374151;
    font-weight: 500;
}

/* Resultado Preview */
.resultado-preview {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.resultado-content {
    max-width: 600px;
    margin: 0 auto;
}

.resultado-icon {
    margin-bottom: 1.5rem;
}

.resultado-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.resultado-subtitle {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.tipo-preview {
    background: linear-gradient(135deg, #f0f4ff 0%, #f8faff 100%);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 2px solid #e0e7ff;
}

.tipo-numero {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4f46e5;
    margin-bottom: 0.5rem;
}

.tipo-nome {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.tipo-descricao {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.5;
}

.vantagens-relatorio {
    background: linear-gradient(135deg, #f0f4ff 0%, #f8faff 100%);
    border: 2px solid #e0e7ff;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.vantagens-titulo {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-align: center;
}

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

.vantagem-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.vantagem-item:hover {
    transform: translateY(-2px);
}

.vantagem-item i {
    color: #4f46e5;
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
}

.vantagem-item span {
    font-size: 0.9rem;
    color: #374151;
    font-weight: 500;
}

.resultado-actions {
    margin-top: 2rem;
    text-align: center;
}

.btn-resultado-completo {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 16px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
    margin-bottom: 1rem;
    display: inline-block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-resultado-completo:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(79, 70, 229, 0.4);
}

.btn-resultado-completo:active {
    transform: translateY(-1px);
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.btn-content i {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.btn-content span {
    font-size: 1.2rem;
    font-weight: 700;
}

.btn-content small {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 600;
}

.resultado-note {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 1rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Responsive para vantagens */
@media (max-width: 768px) {
    .vantagens-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-resultado-completo {
        padding: 16px 32px;
        font-size: 1.1rem;
    }
    
    .btn-content span {
        font-size: 1.1rem;
    }
}

/* Pagamento Section */
.pagamento-section {
    background: #f8f9fc;
    padding: 120px 0 60px;
    min-height: 100vh;
}

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

.pagamento-section .col-lg-6:first-child {
    padding-right: 1rem;
}

.pagamento-section .col-lg-6:last-child {
    padding-left: 1rem;
}

.resultado-container {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.tipo-personalidade {
    margin-bottom: 2rem;
}

.tipo-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tipo-icon {
    width: 50px;
    height: 50px;
    background: #e0e7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4f46e5;
    font-size: 1.2rem;
}

.tipo-titulo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.tipo-subtitulo {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
}

.conteudo-bloqueado {
    background: #f8f9fa;
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.conteudo-simulado {
    text-align: left;
    color: #6b7280;
    font-size: 0.5rem;
    line-height: 1.1;
    filter: blur(1px);
    opacity: 0.9;
    pointer-events: none;
    user-select: none;
    max-height: 180px;
    overflow: hidden;
}

.conteudo-simulado h4 {
    color: #6b7280;
    font-size: 0.6rem;
    margin-bottom: 0.1rem;
    font-weight: 500;
}

.conteudo-simulado ul {
    margin: 0.05rem 0;
    padding-left: 0.6rem;
}

.conteudo-simulado li {
    margin-bottom: 0.02rem;
    font-size: 0.45rem;
    color: #6b7280;
}

.conteudo-simulado p {
    margin-bottom: 0.1rem;
    font-size: 0.45rem;
    color: #6b7280;
}

.conteudo-simulado strong {
    color: #6b7280;
    font-weight: 500;
}

.overlay-bloqueio {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 249, 250, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.bloqueado-icon {
    color: #9ca3af;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.bloqueado-texto {
    color: #6b7280;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

.beneficios-relatorio {
    margin-bottom: 2rem;
}

.beneficios-titulo {
    font-size: 1rem;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 0.8rem;
}

.beneficios-lista {
    list-style: none;
    padding: 0;
    margin: 0;
}

.beneficios-lista li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    color: #6b7280;
}

.beneficios-lista li i {
    color: #22c55e;
    font-size: 1rem;
}

.depoimentos {
    margin-top: 2rem;
}

.depoimentos-titulo {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.depoimento-item {
    background: #f8faff;
    border-left: 4px solid #4f46e5;
    border-radius: 8px;
    padding: 1.5rem;
}

.estrelas {
    color: #fbbf24;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.depoimento-texto {
    font-style: italic;
    color: #374151;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.depoimento-autor {
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
}

.pagamento-container {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 20px;
}

.pagamento-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pagamento-titulo {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.pagamento-preco {
    font-size: 4rem;
    font-weight: 800;
    color: #22c55e;
    margin: 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
}

.pagamento-preco .moeda {
    font-size: 2rem;
    font-weight: 600;
    color: #6b7280;
}

.pagamento-preco .valor-principal {
    font-size: 5rem;
    font-weight: 900;
    color: #22c55e;
    line-height: 1;
}

.pagamento-preco .centavos {
    font-size: 1.4rem;
    font-weight: 700;
    color: #22c55e;
    vertical-align: top;
    position: relative;
    top: -1.2em;
}

.pagamento-form {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1rem;
}

/* Labels removidos - usando apenas placeholders */

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #4f46e5;
}

.cupom-container {
    display: flex;
    gap: 0.5rem;
}

.mensagem-cupom {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.mensagem-cupom.sucesso {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.mensagem-cupom.erro {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.cupom-container input {
    flex: 1;
}

.btn-cupom {
    background: #4f46e5;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cupom:hover {
    background: #4338ca;
}

.btn-pagamento {
    width: 100%;
    background: #fbbf24;
    color: #1a1a1a;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    white-space: nowrap;
}

.btn-pagamento:hover:not(:disabled) {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

/* Estilos de disabled removidos - botão sempre habilitado */

.btn-pagamento.success {
    background: #22c55e;
    color: white;
}

    .btn-pagamento.success:hover {
        background: #16a34a;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    }

    /* Resultado Completo */
    .resultado-titulo {
        font-size: 2.5rem;
        font-weight: 800;
        color: #1a1a1a;
        margin-bottom: 1rem;
    }

    .resultado-subtitulo {
        font-size: 1.2rem;
        color: #6b7280;
        margin-bottom: 2rem;
    }

    .tipo-personalidade {
        background: linear-gradient(135deg, #f0f4ff 0%, #fdf2f8 100%);
        padding: 2rem;
        border-radius: 16px;
        text-align: center;
        margin-bottom: 2rem;
    }

    .tipo-personalidade h2 {
        font-size: 2rem;
        font-weight: 700;
        color: #4f46e5;
        margin-bottom: 1rem;
    }

    .tipo-personalidade .lead {
        font-size: 1.1rem;
        color: #374151;
        margin-bottom: 0;
    }

    .secao-resultado {
        background: #ffffff;
        padding: 2rem;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        border: 1px solid #e5e7eb;
    }

    .secao-titulo {
        font-size: 1.5rem;
        font-weight: 600;
        color: #4f46e5;
        margin-bottom: 1.5rem;
        border-bottom: 2px solid #e0e7ff;
        padding-bottom: 0.5rem;
    }

    .lista-resultado {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .lista-resultado li {
        padding: 0.75rem 0;
        border-bottom: 1px solid #f3f4f6;
        font-size: 1rem;
        color: #374151;
    }

    .lista-resultado li:last-child {
        border-bottom: none;
    }

    .impacto-item {
        background: #f8f9fc;
        padding: 1.5rem;
        border-radius: 8px;
        border-left: 4px solid #4f46e5;
    }

    .impacto-item h4 {
        font-size: 1.2rem;
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: 0.75rem;
    }

    .impacto-item p {
        color: #374151;
        margin-bottom: 0;
        line-height: 1.6;
    }

    /* Dados do Usuário */
    .dados-usuario {
        background: #f8f9fc;
        padding: 2rem;
        border-radius: 12px;
        border: 1px solid #e5e7eb;
    }

    .dado-item {
        padding: 0.75rem 0;
        font-size: 1rem;
        color: #374151;
        border-bottom: 1px solid #e5e7eb;
    }

    .dado-item:last-child {
        border-bottom: none;
    }

    .dado-item i {
        font-size: 1.1rem;
    }

    /* Tela de Carregamento */
    .loading-screen {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #f0f4ff 0%, #fdf2f8 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        transition: opacity 0.5s ease;
    }

    .loading-content {
        text-align: center;
        max-width: 500px;
        padding: 2rem;
    }

    .loading-icon {
        margin-bottom: 2rem;
    }

    .spinner {
        width: 60px;
        height: 60px;
        border: 4px solid #e5e7eb;
        border-top: 4px solid #4f46e5;
        border-radius: 50%;
        animation: spin 1s linear infinite;
        margin: 0 auto;
    }

    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    .loading-title {
        font-size: 1.8rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 1rem;
    }

    .loading-subtitle {
        font-size: 1.1rem;
        color: #6b7280;
        margin-bottom: 2rem;
    }

    .loading-countdown {
        margin-bottom: 2rem;
    }

    .loading-countdown span {
        font-size: 3rem;
        font-weight: 800;
        color: #4f46e5;
        background: #ffffff;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 20px rgba(79, 70, 229, 0.2);
        animation: pulse 1s ease-in-out infinite;
    }

    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }

    .loading-progress {
        width: 100%;
        height: 6px;
        background: #e5e7eb;
        border-radius: 3px;
        overflow: hidden;
    }

    .progress-bar {
        height: 100%;
        background: linear-gradient(90deg, #4f46e5, #7c3aed);
        border-radius: 3px;
        transition: width 0.3s ease;
        width: 0%;
    }

    /* Botão de Limpeza de Cache */
    .btn-warning {
        background: #f59e0b;
        border-color: #f59e0b;
        color: white;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .btn-warning:hover {
        background: #d97706;
        border-color: #d97706;
        color: white;
        transform: translateY(-1px);
    }

    .btn-warning i {
        margin-right: 0.5rem;
    }

    /* Página Sobre - Estilos Específicos */
    .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 1.2rem;
        color: #6b7280;
        margin-bottom: 3rem;
    }

    .content-card {
        background: #ffffff;
        padding: 2.5rem;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        border: 1px solid #e5e7eb;
    }

    .content-title {
        font-size: 1.8rem;
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: 1.5rem;
    }

    .content-text {
        font-size: 1.1rem;
        line-height: 1.7;
        color: #4b5563;
        margin-bottom: 1.5rem;
    }

    .feature-icon-large {
        text-align: center;
        padding: 3rem;
    }

    .feature-icon-large i {
        font-size: 6rem;
        color: #4f46e5;
        opacity: 0.8;
    }

    .feature-card {
        background: #ffffff;
        padding: 2rem;
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        border: 1px solid #e5e7eb;
        text-align: center;
        height: 100%;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .feature-card .feature-icon {
        width: 60px;
        height: 60px;
        background: transparent;
        border: 3px solid #4f46e5;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
    }

    .feature-card .feature-icon i {
        font-size: 1.5rem;
        color: #4f46e5;
    }

    .feature-card h4 {
        font-size: 1.3rem;
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: 1rem;
    }

    .feature-card p {
        color: #6b7280;
        line-height: 1.6;
    }

    .benefit-card {
        background: #ffffff;
        padding: 2.5rem;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        border: 1px solid #e5e7eb;
        text-align: center;
        height: 100%;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .benefit-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    }

    .benefit-card .benefit-icon {
        width: 80px;
        height: 80px;
        background: transparent;
        border: 3px solid #4f46e5;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
    }

    .benefit-card .benefit-icon i {
        font-size: 2rem;
        color: #4f46e5;
    }

    .benefit-card h4 {
        font-size: 1.4rem;
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: 1rem;
    }

    .benefit-card p {
        color: #6b7280;
        line-height: 1.6;
        font-size: 1rem;
    }

    .bg-light {
        background-color: #f8f9fc !important;
    }

    .bg-primary {
        background: linear-gradient(135deg, #4f46e5, #7c3aed) !important;
    }

    /* Páginas Legais - Estilos Específicos */
    .legal-content {
        line-height: 1.8;
    }

    .legal-content .content-title {
        color: #1a1a1a;
        border-bottom: 2px solid #e5e7eb;
        padding-bottom: 0.5rem;
        margin-bottom: 1.5rem;
        margin-top: 2.5rem;
    }

    .legal-content .content-title:first-child {
        margin-top: 0;
    }

    .legal-content .content-subtitle {
        font-size: 1.3rem;
        font-weight: 600;
        color: #374151;
        margin-bottom: 1rem;
        margin-top: 1.5rem;
    }

    .legal-content .content-list {
        padding-left: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .legal-content .content-list li {
        margin-bottom: 0.5rem;
        color: #4b5563;
    }

    .legal-content .content-text {
        margin-bottom: 1.5rem;
    }

    .legal-content .alert {
        margin: 2rem 0;
        border-radius: 12px;
        border: none;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .legal-content .alert-info {
        background: linear-gradient(135deg, #dbeafe, #e0f2fe);
        color: #1e40af;
    }

    .legal-content .alert-warning {
        background: linear-gradient(135deg, #fef3c7, #fde68a);
        color: #92400e;
    }

    .legal-content a {
        color: #4f46e5;
        text-decoration: none;
        font-weight: 500;
    }

    .legal-content a:hover {
        color: #3730a3;
        text-decoration: underline;
    }

    .hero-icon i {
        font-size: 4rem;
        color: #4f46e5;
        opacity: 0.8;
    }

    /* Página de Contato - Estilos Específicos */
    .contact-info {
        margin-top: 2rem;
    }

    .contact-item {
        display: flex;
        align-items: center;
        margin-bottom: 2rem;
        padding: 1.5rem;
        background: #f8f9fc;
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .contact-item:hover {
        background: #f0f4ff;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(79, 70, 229, 0.1);
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #4f46e5, #7c3aed);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1.5rem;
        flex-shrink: 0;
    }

    .contact-icon i {
        font-size: 1.5rem;
        color: white;
    }

    .contact-details h5 {
        font-size: 1.1rem;
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: 0.5rem;
    }

    .contact-details p {
        color: #6b7280;
        margin: 0;
        font-size: 1rem;
    }

    .social-links h5 {
        color: #1a1a1a;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .social-buttons {
        display: flex;
        gap: 1rem;
    }

    .social-btn {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #4f46e5, #7c3aed);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 2px 10px rgba(79, 70, 229, 0.3);
    }

    .social-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
        color: white;
    }

    .social-btn i {
        font-size: 1.2rem;
    }

    /* FAQ Section */
    .faq-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .faq-item {
        background: white;
        border-radius: 12px;
        margin-bottom: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        border: 1px solid #e5e7eb;
        overflow: hidden;
    }

    .faq-question {
        padding: 1.5rem;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s ease;
        background: #f8f9fc;
    }

    .faq-question:hover {
        background: #f0f4ff;
    }

    .faq-question h4 {
        font-size: 1.1rem;
        font-weight: 600;
        color: #1a1a1a;
        margin: 0;
    }

    .faq-question i {
        color: #4f46e5;
        transition: transform 0.3s ease;
    }

    .faq-answer {
        padding: 0 1.5rem 1.5rem;
    }

    .faq-answer p {
        color: #6b7280;
        line-height: 1.6;
        margin: 0;
    }

    /* Form Styles */
    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-label {
        font-weight: 600;
        color: #374151;
        margin-bottom: 0.5rem;
    }

    .form-control, .form-select {
        border: 2px solid #e5e7eb;
        border-radius: 8px;
        padding: 0.75rem 1rem;
        transition: all 0.3s ease;
    }

    .form-control:focus, .form-select:focus {
        border-color: #4f46e5;
        box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
    }

    .btn-primary {
        background: linear-gradient(135deg, #4f46e5, #7c3aed);
        border: none;
        border-radius: 12px;
        padding: 0.75rem 2rem;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(79, 70, 229, 0.3);
    }

    /* Página de Tipos - Estilos Específicos */
    .type-card {
        background: white;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        border: 1px solid #e5e7eb;
        overflow: hidden;
        transition: all 0.3s ease;
        height: 100%;
    }

    .type-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    }

    .type-header {
        background: linear-gradient(135deg, #4f46e5, #7c3aed);
        color: white;
        padding: 1.5rem;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .type-number {
        width: 60px;
        height: 60px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        font-weight: 800;
        flex-shrink: 0;
    }

    .type-info h4 {
        font-size: 1.3rem;
        font-weight: 700;
        margin: 0 0 0.5rem 0;
    }

    .type-info p {
        font-size: 0.9rem;
        opacity: 0.9;
        margin: 0;
    }

    .type-content {
        padding: 1.5rem;
    }

    .type-description {
        color: #6b7280;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
    }

    .type-details {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .type-section h6 {
        font-size: 0.9rem;
        font-weight: 600;
        color: #374151;
        margin-bottom: 0.75rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .type-section h6 i {
        color: #4f46e5;
        font-size: 0.8rem;
    }

    .type-section ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .type-section li {
        color: #6b7280;
        font-size: 0.85rem;
        padding: 0.25rem 0;
        position: relative;
        padding-left: 1rem;
    }

    .type-section li:before {
        content: "•";
        color: #4f46e5;
        font-weight: bold;
        position: absolute;
        left: 0;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .type-header {
            flex-direction: column;
            text-align: center;
            gap: 1rem;
        }

        .type-number {
            width: 50px;
            height: 50px;
            font-size: 1.5rem;
        }

        .type-info h4 {
            font-size: 1.1rem;
        }

        .type-details {
            gap: 1rem;
        }
    }

    @media print {
        .navbar, .footer-section, .btn, .loading-screen {
            display: none !important;
        }
        
        .perguntas-section {
            padding: 0 !important;
        }
        
        .resultado-container {
            max-width: none !important;
        }
    }

.seguranca-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.seguranca-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.seguranca-item i {
    color: #22c55e;
    font-size: 1rem;
}

.ads-container {
    margin-top: 3rem;
}

.ads-section-top {
    text-align: center;
    margin-bottom: 2rem;
}

.ads-placeholder {
    background: #f3f4f6;
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .pagamento-section {
        padding: 40px 0;
    }
    
    .resultado-container,
    .pagamento-container {
        padding: 1.5rem;
    }
    
    .tipo-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .pagamento-container {
        position: static;
        margin-top: 2rem;
    }
    
    .cupom-container {
        flex-direction: column;
    }
    
    .seguranca-info {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Animações */
.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Modal PayPal */
#paypalModal .modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

#paypalModal .modal-dialog {
    max-width: 900px;
    margin: 1.75rem auto;
}

#paypalModal .modal-header {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    border-radius: 15px 15px 0 0;
    border: none;
    padding: 1rem 1.5rem;
}

#paypalModal .modal-title {
    font-weight: 600;
    font-size: 1.2rem;
}

#paypalModal .btn-close {
    filter: invert(1);
}

#paypalModal .modal-body {
    padding: 2rem;
}

#paypalModal .resumo-pagamento {
    background: #f8fafc;
    padding: 1.2rem;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    height: fit-content;
}

#paypalModal .item-pedido {
    padding: 0.5rem 0;
}

#paypalModal .paypal-container {
    padding: 0;
    background: transparent;
    border: none;
    min-height: 300px;
    width: 100%;
    display: block;
}

#paypalModal .paypal-container > div {
    width: 100% !important;
    max-width: none !important;
}

/* Forçar largura total do PayPal */
#paypalModal .paypal-container iframe,
#paypalModal .paypal-container div[data-paypal-button] {
    width: 100% !important;
    max-width: none !important;
}

/* Estilos específicos para botões PayPal */
#paypalModal .paypal-container .paypal-button {
    width: 100% !important;
    max-width: none !important;
    min-width: 200px !important;
}

/* Responsividade do modal */
@media (max-width: 768px) {
    #paypalModal .modal-dialog {
        max-width: 95%;
        margin: 1rem auto;
    }
    
    #paypalModal .modal-body {
        padding: 1rem;
    }
    
    #paypalModal .row {
        flex-direction: column;
    }
    
    #paypalModal .col-md-3,
    #paypalModal .col-md-9 {
        width: 100%;
        max-width: 100%;
    }
}

#paypalModal .paypal-container:empty::before {
    content: "Carregando PayPal...";
    color: #6b7280;
    font-style: italic;
}

/* PayPal Button Customization */
.paypal-button {
    border-radius: 8px !important;
    font-weight: 600 !important;
}

/* Formulário de Cartão PayPal */
.paypal-card-form {
    width: 100% !important;
}

.paypal-card-form iframe {
    width: 100% !important;
    height: 400px !important;
    border: none !important;
    border-radius: 8px !important;
}

/* Garantir que o botão PayPal seja visível */
#paypal-button-container {
    width: 100% !important;
    min-height: 200px !important;
}

#paypal-button-container .paypal-button {
    width: 100% !important;
    max-width: none !important;
}

/* Dados do Usuário no Modal */
#paypalModal .dados-usuario {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    margin-top: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

#paypalModal .dados-usuario h6 {
    color: #374151;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

#paypalModal .dados-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #4b5563;
}

#paypalModal .dados-item:last-child {
    margin-bottom: 0;
}

#paypalModal .dados-item i {
    width: 16px;
    text-align: center;
    margin-top: 2px;
    flex-shrink: 0;
}

#paypalModal .dados-item span {
    word-break: break-all;
    white-space: normal;
    line-height: 1.4;
}

/* Estilo específico para email */
#paypalModal #emailModal {
    word-break: break-all;
    white-space: normal;
    max-width: 100%;
    overflow-wrap: break-word;
}

/* Responsividade para emails longos */
@media (max-width: 768px) {
    #paypalModal .dados-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    #paypalModal .dados-item i {
        margin-bottom: 0.25rem;
    }
    
    #paypalModal .dados-item span {
        width: 100%;
        word-break: break-all;
    }
}

/* ===== ESTILOS PARA DIAGRAMA VENN E NOVA ESTRUTURA DE RESULTADO ===== */

/* Explicação Tipo vs Perfil */
.tipo-perfil-explicacao {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 120px;
}

.explicacao-item {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #4b5563;
}

.explicacao-item:last-child {
    margin-bottom: 0;
}

/* Tipos Identificados */
.tipos-identificados {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
}

.tipo-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    background: white;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.tipo-item:last-child {
    margin-bottom: 0;
}

.tipo-item.predominante {
    border: 2px solid #4f46e5;
    background: #f0f4ff;
}

.tipo-numero {
    font-weight: 700;
    font-size: 1.1rem;
    color: #4f46e5;
    margin-right: 0.75rem;
    min-width: 40px;
}

.tipo-nome {
    font-weight: 600;
    color: #1f2937;
    flex: 1;
}

.tipo-descricao {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

/* Perfil Identificado */
.perfil-identificado {
    background: #f0f9ff;
    border: 1px solid #0ea5e9;
    border-radius: 8px;
    padding: 1rem;
}

.perfil-nome {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0369a1;
    margin-bottom: 0.5rem;
}

.perfil-descricao {
    font-size: 0.9rem;
    color: #0c4a6e;
    line-height: 1.5;
}

/* Diagrama Venn */
.diagrama-venn {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
}

.venn-container {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 1rem;
}

.venn-circle {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 0.9rem;
    text-align: center;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.venn-circle.predominante {
    z-index: 3;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.venn-circle.secundario {
    z-index: 2;
}

.venn-circle.terciario {
    z-index: 1;
    opacity: 0.8;
}

/* Cores dos círculos */
.venn-circle.tipo-1 { background: #4f46e5; color: #ffffff; }
.venn-circle.tipo-2 { background: #10b981; color: #ffffff; }
.venn-circle.tipo-3 { background: #f59e0b; color: #ffffff; }
.venn-circle.tipo-4 { background: #ef4444; color: #ffffff; }
.venn-circle.tipo-5 { background: #8b5cf6; color: #ffffff; }
.venn-circle.tipo-6 { background: #06b6d4; color: #ffffff; }
.venn-circle.tipo-7 { background: #84cc16; color: #ffffff; }
.venn-circle.tipo-8 { background: #f97316; color: #ffffff; }
.venn-circle.tipo-9 { background: #ec4899; color: #ffffff; }

/* Explicação Asas e Setas */
.explicacao-asas-setas {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
}

.explicacao-texto p {
    font-size: 0.85rem;
    color: #4b5563;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.explicacao-texto p:last-child {
    margin-bottom: 0;
}

/* Botão Resultado Completo Destaque */
.btn-resultado-completo-destaque {
    width: 100%;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    animation: pulse-glow-strong 1.5s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.btn-resultado-completo-destaque:hover {
    animation: none;
    transform: translateY(-2px) scale(1.08);
    box-shadow: 0 10px 40px rgba(79, 70, 229, 0.8);
    background: linear-gradient(135deg, #4338ca 0%, #6d28d9 100%);
}

.btn-resultado-completo-destaque .btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-resultado-completo-destaque i {
    font-size: 1.2rem;
}

/* Botão Largo Abaixo das Colunas */
.btn-resultado-completo-largo {
    width: 100%;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
    transition: all 0.3s ease;
    margin-top: 0;
    margin-left: -4.5rem;
    margin-right: -4.5rem;
    animation: pulse-glow-strong 1.5s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

@keyframes pulse-glow-strong {
    0% {
        box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 8px 35px rgba(79, 70, 229, 0.7);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
        transform: scale(1);
    }
}

.btn-resultado-completo-largo:hover {
    animation: none;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.6);
    background: linear-gradient(135deg, #4338ca 0%, #6d28d9 100%);
}

.btn-resultado-completo-largo .btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-resultado-completo-largo i {
    font-size: 1.3rem;
}

/* Vantagens Relatório - Ajustes */
.vantagens-relatorio {
    margin-top: 1rem;
}

.vantagens-titulo {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.vantagens-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.vantagem-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #4b5563;
}

.vantagem-item i {
    color: #4f46e5;
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

/* Layout de Resultado - Colunas Mais Largas */
.resultado-principal {
    padding-right: 1rem;
    margin-left: -4.5rem;
    margin-right: 0;
}

.resultado-actions {
    padding-left: 1rem;
    margin-left: 0;
    margin-right: -4.5rem;
}

/* Tipos em Linha */
.tipos-identificados-linha {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    margin-left: -4.5rem;
    margin-right: -4.5rem;
}

.tipo-item-linha {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    height: 100%;
    transition: all 0.3s ease;
}

.tipo-item-linha:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.tipo-item-linha.predominante {
    border: 2px solid #4f46e5;
    background: #f0f4ff;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.tipo-numero-grande {
    font-weight: 700;
    font-size: 3rem;
    color: #4f46e5;
    margin-bottom: 0.5rem;
    text-align: center;
    line-height: 1;
}

.tipo-info {
    width: 100%;
}

.tipo-item-linha .tipo-nome {
    font-weight: 600;
    color: #1f2937;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.tipo-item-linha .tipo-descricao {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.4;
}

/* Responsividade */
@media (max-width: 992px) {
    .resultado-principal {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .resultado-actions {
        padding-left: 0;
    }
    
    .tipo-item-linha {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .tipo-item-linha {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }
    
    .tipo-numero-grande {
        margin-right: 0;
        margin-bottom: 1rem;
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .venn-container {
        height: 150px;
    }
    
    .venn-circle {
        font-size: 0.8rem;
    }
    
    .btn-resultado-completo-destaque {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* ===== ESTILOS PARA PÁGINA FINAL ===== */

/* Tipos e Números */
.tipo-numero-grande {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4f46e5;
    background: #f0f4ff;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #4f46e5;
}

.tipo-numero-pequeno {
    font-size: 1.2rem;
    font-weight: 600;
    color: #6b7280;
    background: #f9fafb;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e5e7eb;
}

/* Diagrama Venn Grande */
.venn-container-grande {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.venn-circle-grande {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1rem;
    text-align: center;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.venn-circle-grande.predominante {
    z-index: 3;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.venn-circle-grande.secundario {
    z-index: 2;
}

.venn-circle-grande.terciario {
    z-index: 1;
    opacity: 0.8;
}

/* Cores dos círculos grandes */
.venn-circle-grande.tipo-1 { background: #fef3c7; color: #92400e; }
.venn-circle-grande.tipo-2 { background: #fce7f3; color: #be185d; }
.venn-circle-grande.tipo-3 { background: #f3e8ff; color: #7c3aed; }
.venn-circle-grande.tipo-4 { background: #e0f2fe; color: #0369a1; }
.venn-circle-grande.tipo-5 { background: #f0fdf4; color: #166534; }
.venn-circle-grande.tipo-6 { background: #fef2f2; color: #dc2626; }
.venn-circle-grande.tipo-7 { background: #fffbeb; color: #d97706; }
.venn-circle-grande.tipo-8 { background: #f1f5f9; color: #475569; }
.venn-circle-grande.tipo-9 { background: #f0fdfa; color: #059669; }

/* Cards de Resultado */
.resultado-completo-section .card {
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.resultado-completo-section .card-header {
    border-radius: 12px 12px 0 0;
    border: none;
    padding: 1.5rem;
}

.resultado-completo-section .card-body {
    padding: 2rem;
}

/* Itens de Características */
.caracteristica-item,
.ponto-forte-item,
.area-desenvolvimento-item,
.impacto-item,
.sugestao-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.caracteristica-item h6,
.ponto-forte-item h6,
.area-desenvolvimento-item h6,
.impacto-item h6,
.sugestao-item h6 {
    margin-bottom: 0.5rem;
}

/* Alertas */
.alert-info {
    background: #f0f9ff;
    border: 1px solid #0ea5e9;
    color: #0c4a6e;
    border-radius: 8px;
}

.alert-info .alert-heading {
    color: #0369a1;
    font-weight: 600;
}

/* Gráficos */
#graficoPizza,
#graficoBarras {
    max-width: 100%;
    height: auto;
}

/* Responsividade para página final */
@media (max-width: 768px) {
    .tipo-numero-grande {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .venn-container-grande {
        height: 200px;
    }
    
    .venn-circle-grande {
        font-size: 0.8rem;
    }
    
    .resultado-completo-section .card-body {
        padding: 1rem;
    }
}

/* Melhorias para Diagrama Venn */
.venn-text {
    text-align: center;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.venn-circle {
    border: 2px solid rgba(255,255,255,0.3);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Countdown Circle */
.countdown-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border: 4px solid #ffffff;
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto;
    animation: pulse-glow 2s ease-in-out infinite;
}

.countdown {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    line-height: 1;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(79, 70, 229, 0.5);
    }
}

/* Resumo Personalizado */
.resumo-personalizado {
    line-height: 1.8;
    font-size: 1.1rem;
}

.resumo-personalizado .lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 2rem;
}

.resumo-personalizado h5 {
    color: #4f46e5;
    font-weight: 700;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.resumo-personalizado p {
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.resumo-personalizado ul {
    margin-bottom: 2rem;
}

.resumo-personalizado li {
    margin-bottom: 0.8rem;
    color: #4a5568;
}

.resumo-personalizado strong {
    color: #2d3748;
    font-weight: 700;
}

.resumo-personalizado .text-muted {
    font-style: italic;
    border-top: 1px solid #e2e8f0;
    padding-top: 1.5rem;
    margin-top: 2rem;
}

/* Link de Cupom */
.cupom-link-container {
    text-align: center;
    margin: 1rem 0;
}

.cupom-link {
    color: #4f46e5;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
}

.cupom-link:hover {
    color: #3730a3;
    background: #f1f5f9;
    text-decoration: none;
}

.cupom-container {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
