
:root {
    --primary: #5865F2;
    --primary-dark: #4752c4;
    --secondary: #f0b72f;
    --purple: #651dc4;
    --dark: #1e1e2e;
    --darker: #2a2a3a;
    --darkest: #36364a;
    --light: #f8f9fa;
    --gray: #adb5bd;
    --gradient: linear-gradient(135deg, #5865F2 0%, #a855f7 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}

body {
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Estilos Modais */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--darker);
    padding: 2.5rem;
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 0.5rem;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--gray);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--light);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gray);
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: var(--darker);
    color: var(--light);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(88, 101, 242, 0.2);
}

.modal-footer {
    margin-top: 2rem;
    text-align: center;
}

/* Estilos de Cabeçalho */
header {
    background-color: rgba(30, 30, 46, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 32px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: rotate(-5deg);
}

.brand-name {
    font-size: 1.4rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--gray);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover, .nav-link.active {
    color: var(--light);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Estilos de botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(88, 101, 242, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-secondary {
    background-color: var(--darker);
    color: white;
}

.btn-secondary:hover {
    background-color: #3a3d44;
}

.btn-gold {
    background-color: var(--secondary);
    color: #1a1a1a;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(240, 183, 47, 0.2);
}

.btn-gold:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(240, 183, 47, 0.3);
}

.btn-purple {
    background-color: var(--purple);
    color: #1a1a1a;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(147, 47, 240, 0.2);
}

.btn-purple:hover {
    background-color: #6800e0;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(131, 47, 240, 0.3);
}

.btn-gradient {
    background: var(--gradient);
    color: transparent;
    color: #1a1a1a;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(147, 47, 240, 0.2);
}

.btn-gradient:hover {
    background: linear-gradient(to right, #704d99, #4a1685);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(131, 47, 240, 0.3);
}

/* Seção de Heróis */
.hero {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(88,101,242,0.15) 0%, rgba(30,30,46,0) 70%);
    z-index: -1;
}

.hero-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-avatar {
    height: 120px;
    width: 120px;
    object-fit: contain;
    margin-bottom: 1.8rem;
    border-radius: 50%;
    border: 3px solid var(--primary);
    box-shadow: 0 8px 24px rgba(88, 101, 242, 0.4);
    transition: transform 0.3s ease;
}

.hero-avatar:hover {
    transform: scale(1.05) rotate(5deg);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    background: linear-gradient(90deg, #ffffff, #d1d5db);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 4rem;
}

.hero-actions .btn {
    padding: 0.7rem 1.8rem;
    font-size: 0.95rem;
}

/* Seção de estatísticas */
.stats {
    padding: 5rem 0;
    background-color: var(--darker);
}

.stats-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--light);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    border-color: var(--primary);
}

.stat-icon-container {
    width: 70px;
    height: 70px;
    background: rgba(88, 101, 242, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon-container {
    background: rgba(88, 101, 242, 0.2);
    transform: scale(1.1);
}

.stat-icon {
    font-size: 1.8rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    color: white;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-value {
    transform: scale(1.05);
}

.stat-label {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 500;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-label {
    color: var(--light);
}

/* Seção de Planos */
.plans {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3.5rem;
    color: var(--light);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 2fr));
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.plan-card {
    background-color: var(--darker);
    border-radius: 14px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.plan-card.free {
    border-top: 4px solid var(--primary);
}

.plan-card.premium {
    border-top: 4px solid var(--secondary);
}

.plan-card.dedicated {
    border-top: 4px solid var(--purple);
}

.plan-card.deluxe {
    border-top: 5px solid var(--purple);
    border-image: var(--gradient) 10;
}

.plan-header {
    margin-bottom: 1.8rem;
    text-align: center;
}

.plan-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.free .plan-title {
    color: var(--primary);
}

.premium .plan-title {
    color: var(--secondary);
}

.dedicated .plan-title {
    color: var(--purple);
}

.deluxe .plan-title {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.free .plan-price {
    color: var(--light);
    font-size: 2.2rem;
}

.premium .plan-price {
    color: var(--secondary);
}

.dedicated .plan-price {
    color: var(--purple);
}

.deluxe .plan-price {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.price-period {
    font-size: 1rem;
    color: var(--gray);
}

.plan-description {
    color: var(--gray);
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.benefits-list {
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.benefit-icon {
    font-size: 1rem;
    min-width: 22px;
}

.free .benefit-icon {
    color: var(--primary);
}

.premium .benefit-icon {
    color: var(--secondary);
}

.dedicated .benefit-icon {
    color: var(--purple);
}

.deluxe .benefit-icon {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.plan-footer {
    margin-top: auto;
    text-align: center;
}

/* Estilos de rodapé */
footer {
    background-color: var(--darkest);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 32px;
}

.footer-logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-description {
    color: var(--gray);
    margin-bottom: 1.8rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--gray);
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-links-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--light);
}

.footer-links-list {
    list-style: none;
}

.footer-link-item {
    margin-bottom: 0.8rem;
}

.footer-link {
    color: var(--gray);
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: inline-block;
    padding: 0.2rem 0;
}

.footer-link:hover {
    color: var(--light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    margin-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Ajustes responsivos */
@media (max-width: 992px) {
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
   
    .hero-title {
        font-size: 2.2rem;
    }
   
    .stats-container {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1.2rem;
        padding: 1.2rem 0;
    }
   
    .nav-links {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
   
    .nav-actions {
        margin-top: 1rem;
    }
   
    .hero {
        padding: 4rem 0;
    }
   
    .hero-title {
        font-size: 2rem;
    }
   
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
   
    .plans-grid {
        grid-template-columns: 1fr;
    }
   
    .modal-content {
        max-width: 90%;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
   
    .hero-description {
        font-size: 1rem;
    }
   
    .section-title, .stats-title {
        font-size: 1.8rem;
    }
   
    .footer-content {
        grid-template-columns: 1fr;
    }
   
    .stat-card {
        padding: 1.8rem 1rem;
    }
   
    .stat-value {
        font-size: 1.5rem;
    }
   
    .plans-grid {
        grid-template-columns: 1fr;
    }
   
    .hero-actions .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}