/* Reset e Correções Globais */
* {
    text-decoration: none !important; /* Remove todos os sublinhados */
}

/* Landing Page Styles - Corrigido */
.header-landing {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    z-index: 1000;
}

.nav-landing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 26px;
    font-weight: 700;
    color: #6B238E;
    text-decoration: none;
}

.logo i {
    font-size: 36px;
    color: #FFD700;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

/* Botões - Corrigidos sem sublinhado */
.btn-outline {
    background: transparent;
    border: 2px solid #6B238E;
    color: #6B238E;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none !important;
    display: inline-block;
}

.btn-outline:hover {
    background: #6B238E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107, 35, 142, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, #6B238E, #FF6B35);
    color: white !important;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none !important;
    display: inline-block;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(107, 35, 142, 0.4);
    color: white !important;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* Hero Section */
.hero {
    padding: 120px 50px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    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"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="2"/></svg>');
    opacity: 0.5;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(5px);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

.hero-badge i {
    margin-right: 8px;
    color: #FFD700;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-text h1 span {
    color: #FFD700;
    position: relative;
    display: inline-block;
}

.hero-text h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(255, 215, 0, 0.3);
    z-index: -1;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    color: white;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-buttons .btn-outline {
    border-color: white;
    color: white !important;
}

.hero-buttons .btn-outline:hover {
    background: white;
    color: #6B238E !important;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #FFD700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
    color: white;
}

.hero-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.hero-wave {
    margin-top: 50px;
    line-height: 0;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    color: #6B238E;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 18px;
    color: #555;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 35px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(107, 35, 142, 0.15);
    border-color: #6B238E;
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #6B238E, #FF6B35);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transform: rotate(45deg);
}

.feature-icon i {
    font-size: 45px;
    color: white;
    transform: rotate(-45deg);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 700;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 850px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 45px 35px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 3px solid #FFD700;
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
    padding: 8px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.pricing-header {
    text-align: center;
    margin-bottom: 35px;
}

.pricing-header h3 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.price {
    font-size: 52px;
    font-weight: 800;
    color: #6B238E;
}

.currency {
    font-size: 28px;
    vertical-align: super;
}

.period {
    font-size: 16px;
    color: #999;
    font-weight: normal;
}

.pricing-features {
    list-style: none;
    margin-bottom: 35px;
}

.pricing-features li {
    padding: 12px 0;
    color: #555;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: #00A86B;
    margin-right: 12px;
    font-size: 18px;
}

.pricing-card .btn-primary,
.pricing-card .btn-outline {
    text-decoration: none !important;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #6B238E, #FF6B35);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta::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"><circle cx="20" cy="20" r="15" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/><circle cx="80" cy="80" r="20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta .btn-primary {
    background: white;
    color: #6B238E !important;
    font-size: 18px;
    padding: 18px 40px;
}

.cta .btn-primary:hover {
    background: #FFD700;
    color: #333 !important;
}

/* Footer */
.footer {
    background: #1a1a2e;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-info p {
    color: #ccc;
    line-height: 1.6;
    margin-top: 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 26px;
    font-weight: 700;
    color: white;
}

.footer-logo i {
    color: #FFD700;
}

.footer-links h4,
.footer-contact h4 {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none !important;
    transition: color 0.3s;
    font-size: 15px;
}

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

.footer-contact p {
    margin-bottom: 12px;
    color: #ccc;
}

.footer-contact i {
    margin-right: 12px;
    color: #FFD700;
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #888;
    font-size: 14px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    z-index: 9999;
    animation: fadeIn 0.3s;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-header {
    padding: 25px 25px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: #6B238E;
    font-size: 24px;
    font-weight: 700;
}

.modal-header h2 i {
    margin-right: 10px;
    color: #FFD700;
}

.modal-close {
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: #6B238E;
    background: #f0f0f0;
}

.modal-body {
    padding: 10px 25px 30px;
}

.login-info {
    margin-top: 25px;
    padding: 18px;
    background: #f8f9fa;
    border-radius: 12px;
    font-size: 14px;
    text-align: center;
}

.login-info p {
    margin-bottom: 8px;
    color: #666;
}

.login-info p:last-child {
    margin-bottom: 0;
}

.login-info i {
    color: #6B238E;
    margin-right: 5px;
}

.login-info a {
    color: #6B238E;
    text-decoration: none !important;
    font-weight: 700;
}

.login-info a:hover {
    color: #FF6B35;
}

/* Formulário */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

.form-group label i {
    margin-right: 8px;
    color: #6B238E;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #6B238E;
    box-shadow: 0 0 0 4px rgba(107, 35, 142, 0.1);
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    color: white;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(255,255,255,0.3);
    border-top-color: #FFD700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Responsividade */
@media (max-width: 768px) {
    .nav-landing {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .hero {
        padding: 140px 20px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
}

/* Correção específica para links */
a, a:hover, a:visited, a:active {
    text-decoration: none !important;
}

button {
    text-decoration: none !important;
}