/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: white;
    overflow-x: hidden;
    background: linear-gradient(135deg, #000000 0%, #1a0033 50%, #330066 100%);
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
}

/* Header e Navegação */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b5cf6;
}

.logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #8b5cf6;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

/* Menu mobile ativo */
.nav-menu.active {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 1000;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #000000 0%, #1a0033 50%, #330066 100%);
    color: white;
    padding-top: 80px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    display: block;
    background: linear-gradient(45deg, #8b5cf6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, #8b5cf6, #a855f7);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #8b5cf6;
}

.floating-card span {
    font-size: 1.2rem;
    font-weight: 600;
}

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

/* Seções Gerais */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: white;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #e5e7eb;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Planos Section */
.planos {
    padding: 5rem 0;
    background: linear-gradient(135deg, #000000 0%, #1a0033 50%, #330066 100%);
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.plano-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid rgba(139, 92, 246, 0.2);
}

.plano-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.plano-card.featured {
    border-color: #8b5cf6;
    transform: scale(1.05);
}

.plano-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #8b5cf6, #a855f7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.plano-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.plano-icon {
    font-size: 3rem;
    color: #8b5cf6;
}

.plano-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.plano-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #e5e7eb;
}

.plano-features i {
    color: #8b5cf6;
}

.btn-outline {
    background: transparent;
    color: #8b5cf6;
    border: 2px solid #8b5cf6;
    width: 100%;
    justify-content: center;
}

.btn-outline:hover {
    background: #8b5cf6;
    color: white;
}

.plano-premium {
    text-align: center;
    margin-top: 3rem;
}

.premium-card {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.premium-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.premium-card p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-premium {
    background: linear-gradient(45deg, #8b5cf6, #a855f7);
    color: white;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

/* Jogos Section */
.jogos {
    padding: 5rem 0;
}

.jogos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.jogo-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(139, 92, 246, 0.2);
}

.jogo-card:hover {
    transform: translateY(-5px);
    border-color: #8b5cf6;
}

.jogo-icon {
    font-size: 3rem;
    color: #8b5cf6;
    margin-bottom: 1rem;
}

.jogo-card h3 {
    font-weight: 600;
    color: white;
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 3rem;
    color: #8b5cf6;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.feature-card p {
    color: #e5e7eb;
}

/* Discord Section */
.discord-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #000000 0%, #1a0033 50%, #330066 100%);
    color: white;
}

.discord-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.discord-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.discord-features {
    list-style: none;
    margin-bottom: 2rem;
}

.discord-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.discord-features i {
    color: #8b5cf6;
    font-size: 1.2rem;
}

.btn-discord {
    background: #8b5cf6;
    color: white;
}

.btn-discord:hover {
    background: #a855f7;
    transform: translateY(-2px);
}

.discord-visual {
    display: flex;
    justify-content: center;
}

.discord-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 300px;
}

.discord-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.discord-header i {
    font-size: 1.5rem;
}

.discord-message {
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 10px;
}

.discord-message p {
    margin-bottom: 0.5rem;
    font-family: monospace;
    color: #8b5cf6;
}

.status.online {
    color: #8b5cf6;
    font-weight: 600;
}

/* Planos Acessíveis */
.planos-acessiveis {
    padding: 5rem 0;
    background: linear-gradient(135deg, #000000 0%, #1a0033 50%, #330066 100%);
}

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

.periodo-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(139, 92, 246, 0.2);
}

.periodo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.periodo-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #8b5cf6;
}

.periodo-card p {
    color: #e5e7eb;
}

/* Contato Section */
.contato {
    padding: 5rem 0;
}

.contato-content {
    max-width: 800px;
    margin: 0 auto;
}

.contato-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contato-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(139, 92, 246, 0.2);
}

.contato-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.contato-icon {
    font-size: 3rem;
    color: #8b5cf6;
    margin-bottom: 1rem;
}

.contato-card h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.contato-card p {
    color: #e5e7eb;
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #000000 0%, #1a0033 50%, #330066 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-tagline {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(139, 92, 246, 0.3);
}

.footer-social a:hover {
    background: #8b5cf6;
    transform: translateY(-2px);
}

/* Footer Signature */
.footer-signature {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(139, 92, 246, 0.3);
}

.signature-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(139, 92, 246, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.signature-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.4);
}

.signature-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.signature-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.signature-content:hover .signature-logo {
    border-color: #8b5cf6;
    transform: scale(1.1);
}

.signature-text {
    text-align: left;
}

.signature-text p {
    color: #e5e7eb;
    font-size: 0.8rem;
    margin: 0 0 0.3rem 0;
    opacity: 0.8;
}

.signature-link {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.signature-link:hover {
    color: #a855f7;
    transform: translateY(-1px);
}

.dev-name {
    font-size: 1.2rem;
    font-weight: 800;
    background: linear-gradient(45deg, #8b5cf6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.2rem;
}

.dev-tag {
    font-size: 0.7rem;
    color: #8b5cf6;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.signature-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(45deg, #8b5cf6, #a855f7);
    transition: width 0.3s ease;
}

.signature-link:hover::after {
    width: 100%;
}

/* Animação de entrada para a assinatura */
@keyframes signatureSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-signature {
    animation: signatureSlideIn 0.8s ease 0.5s both;
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .discord-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .planos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .jogos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .periodos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contato-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .signature-content {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
        padding: 1rem;
    }
    
    .signature-text {
        text-align: center;
    }
    
    .signature-link {
        align-items: center;
    }
}

/* Responsividade para telas muito pequenas (celulares) */
@media (max-width: 480px) {
    .nav-container {
        padding: 0.8rem 1rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .logo img {
        width: 30px;
        height: 30px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .hero-buttons {
        gap: 0.8rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .plano-card {
        padding: 1.5rem;
    }
    
    .plano-card.featured {
        transform: none;
    }
    
    .jogos-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .jogo-card {
        padding: 1.5rem;
    }
    
    .jogo-icon {
        font-size: 2.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .discord-card {
        padding: 1.5rem;
        max-width: 280px;
    }
    
    .periodo-card {
        padding: 1.5rem;
    }
    
    .contato-card {
        padding: 1.5rem;
    }
    
    .contato-icon {
        font-size: 2.5rem;
    }
    
    .signature-logo {
        width: 40px;
        height: 40px;
    }
    
    .dev-name {
        font-size: 1rem;
    }
    
    .dev-tag {
        font-size: 0.6rem;
    }
    
    .footer-social a {
        width: 45px;
        height: 45px;
    }
}

/* Responsividade para telas extremamente pequenas */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .plano-card,
    .jogo-card,
    .feature-card,
    .periodo-card,
    .contato-card {
        padding: 1.2rem;
    }
    
    .signature-content {
        padding: 1rem;
    }
    
    .signature-logo {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .jogos-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
} 