/* Variáveis de Design */
:root {
    --primary-color: #6a0dad;
    --secondary-color: #ff66b2;
    --gradient-bg: linear-gradient(135deg, #6a0dad, #ff66b2);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --text-light: #ffffff;
    --text-dark: #2c3e50;
  }
  
  /* Reset e Configurações Gerais */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
  }
  
  body {
    background: var(--gradient-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  /* Container Geral */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Glassmorphism Navigation Header */
  .glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    animation: fadeInDown 1.8s ease-in-out;
    padding: 1rem 0;
  }
  
  .glass-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo img {
    height: 80px;
    transition: transform 0.3s ease;
  }
  
  .logo:hover img {
    transform: rotate(-10deg);
  }
  
  .nav-links {
    display: flex;
    gap: 2rem;
  }
  
  .nav-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1.1rem;
  }
  
  .nav-links a:hover {
    color: var(--secondary-color);
  }
  
  /* Hero Section */
  .hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding-top: 120px; /* para compensar o header fixo */
    text-align: center;
    background: var(--gradient-bg);
    background-size: 200% 200%;
    animation: gradientAnimation 6s ease infinite;
  }
  
  .hero .hero-content {
    background: var(--glass-bg);
    padding: 2rem 3rem;
    border-radius: 15px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    animation: fadeInUp 1.5s ease-out;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
  }
  
  .hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
  }
  
  /* Informative Content Section */
  .info-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 4rem 2rem;
    border-radius: 15px;
    margin: 140px auto 60px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    color: var(--text-light);
    animation: fadeIn 1.5s ease-out;
  }
  
  .info-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
  }
  
  .info-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out;
  }
  
  /* Footer */
  .glass-footer {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    animation: fadeInUp 1.5s ease-out;
  }
  
  .glass-footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .glass-footer p {
    font-size: 0.9rem;
    color: var(--text-light);
  }
  
  .support-link {
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.7s ease;
  }
  
  .support-link:hover {
    color: purple;
    transition: color 0.7s ease;
  }
  
  /* Animações */
  @keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }  