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

body {
    font-family: Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: rgb(51, 51, 51);
    background-color: rgb(255, 255, 255);
}

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

/* Header */
.header {
    background-color: rgb(255, 255, 255);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    height: 60px;
    width: auto;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Main Content */
.main {
    min-height: calc(100vh - 200px);
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(125, 53, 136, 0.05) 0%, rgba(248, 231, 28, 0.05) 100%);
}

.support-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.support-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgb(125, 53, 136);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.support-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgb(51, 51, 51);
    line-height: 1.8;
}

/* Important Links Section */
.important-links {
    margin-bottom: 40px;
    text-align: left;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.important-links h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: rgb(125, 53, 136);
    margin-bottom: 20px;
    text-align: center;
}

.important-links ul {
    list-style: none;
    padding: 0;
}

.important-links li {
    margin-bottom: 15px;
}

.important-links a {
    color: rgb(51, 51, 51);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    display: block;
    padding: 10px 15px;
    border-radius: 8px;
    background-color: #eee;
}

.important-links a:hover {
    color: rgb(125, 53, 136);
    background-color: #e0e0e0;
}

/* Disclaimer Section */
.disclaimer-section {
    margin-bottom: 50px;
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    border-radius: 10px;
    padding: 20px;
    color: #856404;
}

.disclaimer-text {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgb(125, 53, 136) 0%, rgb(189, 16, 224) 100%);
    padding: 50px 30px;
    border-radius: 20px;
    color: rgb(255, 255, 255);
    box-shadow: 0 10px 30px rgba(125, 53, 136, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(248, 231, 28, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.cta-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.support-button {
    display: inline-block;
    background: linear-gradient(135deg, rgb(248, 231, 28) 0%, rgb(255, 215, 0) 100%);
    color: rgb(51, 51, 51);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(248, 231, 28, 0.4);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.support-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(248, 231, 28, 0.6);
    background: linear-gradient(135deg, rgb(255, 215, 0) 0%, rgb(248, 231, 28) 100%);
}

.support-button:active {
    transform: translateY(-1px);
}

/* Footer */
.footer {
    background-color: rgb(39, 37, 40);
    color: rgb(255, 255, 255);
    text-align: center;
    padding: 30px 0;
    margin-top: 50px;
}

.footer p {
    margin-bottom: 5px;
    opacity: 0.9;
}

.footer p:last-child {
    font-style: italic;
    opacity: 0.7;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .support-title {
        font-size: 2.2rem;
    }
    
    .support-description {
        font-size: 1.1rem;
    }
    
    .cta-section {
        padding: 40px 20px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .support-button {
        font-size: 1.1rem;
        padding: 16px 30px;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 50px;
    }
    
    .support-title {
        font-size: 1.8rem;
    }
    
    .main {
        padding: 40px 0;
    }
    
    .cta-section {
        padding: 30px 15px;
    }
    
    .support-button {
        font-size: 1rem;
        padding: 14px 25px;
    }
}

