:root {
    --primary-gradient: linear-gradient(120deg, #FF7E00, #CB4AE6, #4361EE);
    --text-color: #FFFFFF;
    --bg-color: #0A0A10;
    --card-bg: rgba(255, 255, 255, 0.07);
    --card-border: rgba(255, 255, 255, 0.1);
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-lgg: 3rem;
    --spacing-xl: 4rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(125deg, #0F0F18, #1A1A2E);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Elementos de fundo para efeito visual */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(67, 97, 238, 0.15), transparent 30%),
                radial-gradient(circle at 80% 80%, rgba(203, 74, 230, 0.1), transparent 30%),
                radial-gradient(circle at 70% 20%, rgba(255, 126, 0, 0.08), transparent 30%);
    z-index: -1;
    pointer-events: none;
}

/* Adicionando partículas para efeito futurista */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

header {
    padding-top: 5rem;
    padding-bottom: 2rem;
    /* padding: var(--spacing-xl) 0; */
    text-align: center;
    margin-top: 2rem; /* Aumentado a margem superior */
}

.logo {
    max-width: 500px;
    width: 90%;
    margin: 0 auto;
    /* Removido o filtro e animação */
}

.hero {
    text-align: center;
    padding: var(--spacing-lg) 0 var(--spacing-lgg);
}

.gradient-title {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    background-size: 300% auto;
    background-image: linear-gradient(92deg, #FF7E00, #CB4AE6, #4361EE, #CB4AE6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 8s ease infinite;
    display: inline-block;
    position: relative;
}



@keyframes gradientText {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes gradientBorder {
    0% {
        background-position: 0% 50%;
        width: 80px;
    }
    50% {
        background-position: 100% 50%;
        width: 150px;
    }
    100% {
        background-position: 0% 50%;
        width: 80px;
    }
}

.subtitle {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: var(--spacing-lgg);
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.card{
    /* --tblr-card-bg: transparent; */
    --tblr-card-bg: rgba(255, 255, 255, 0.02);
}

.form-control {
    display: block;
    width: 100%;
    padding: .4375rem .75rem;
    font-family: var(--tblr-font-sans-serif);
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.4285714286;
    color: var(--tblr-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: rgba(0, 0, 0, 0.1);
    background-clip: padding-box;
    border: var(--tblr-border-width) solid var(--tblr-border-color);
    border-radius: var(--tblr-border-radius);
    box-shadow: var(--tblr-box-shadow-input);
    transition: border-color .15sease-in-out, box-shadow .15sease-in-out;
}

a {
    color: #ff962c;
    text-decoration: none;
}


.login-btn {
    padding: 0.6rem 0.8rem;
    background: linear-gradient(270deg, #FF7E00, #7400c7, #4361EE, #6b00d6, #FF7E00);
    background-size: 400% 400%;
    animation: gradientBG 12s ease infinite;
    display: inline-block;
    position: relative;
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 400;
    font-size: 1.0rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
  }
  
  @keyframes gradientBG {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }

.card-body {
    /* max-width: 1000px; */
    /* margin: 0 auto var(--spacing-xl); */
    /* font-size: 1.2rem; */
    /* font-weight: 300; */
    color: rgba(250, 234, 255, 0.8);
    /* background: rgba(255, 255, 255, 0.03); */
    /* padding: var(--spacing-lg); */
    /* border-radius: 5px; */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.description {
    max-width: 1000px;
    margin: 0 auto var(--spacing-xl);
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(250, 234, 255, 0.8);
    /* background: rgba(255, 255, 255, 0.03); */
    padding: var(--spacing-lg);
    border-radius: 5px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.description:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Redesenho completo da seção de recursos */
.features-section {
    margin-bottom: var(--spacing-xl);
}

.features-container {
    position: relative;
    background: linear-gradient(135deg, rgba(20, 20, 40, 0.3), rgba(30, 30, 60, 0.2));
    border-radius: 16px;
    padding: 3rem 0;
    overflow: hidden;
}

.features-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 126, 0, 0.05), 
        rgba(203, 74, 230, 0.05), 
        rgba(67, 97, 238, 0.05));
    z-index: -1;
}

.features-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.features-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
    position: relative;
    display: inline-block;
}

.features-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-gradient);
}

.features-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto;
}

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

.feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card:nth-child(1) {
    border-color: #FF7E00;
}

.feature-card:nth-child(2) {
    border-color: #CB4AE6;
}

.feature-card:nth-child(3) {
    border-color: #4361EE;
}

.feature-card:nth-child(4) {
    border-color: #FF7E00;
}

.feature-card:nth-child(5) {
    border-color: #CB4AE6;
}

.feature-card:nth-child(6) {
    border-color: #4361EE;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.feature-card:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, #FF7E00, #FF9950);
}

.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #CB4AE6, #D67CEF);
}

.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #4361EE, #657EF8);
}

.feature-card:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, #FF7E00, #FF9950);
}

.feature-card:nth-child(5) .feature-icon {
    background: linear-gradient(135deg, #CB4AE6, #D67CEF);
}

.feature-card:nth-child(6) .feature-icon {
    background: linear-gradient(135deg, #4361EE, #657EF8);
}

.feature-icon span {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: white;
}

.feature-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 1;
}



/* Redesenho do formulário de e-mail para ficar igual à imagem */
.cta-section {
    /* centralizar a section */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--spacing-xl);
    padding: 2rem 0;
    position: relative;
}

.cta-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(20, 20, 40, 0.8);
    border-radius: 24px;
    padding: 3rem 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-container::before {
    content: "";
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 126, 0, 0.08), transparent 70%);
    z-index: -1;
}

.cta-container::after {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(203, 74, 230, 0.05), transparent 70%);
    z-index: -1;
}

.cta-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: white;
}ß

.email-form {
    display: flex;
    gap: 1rem;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    padding: 1.2rem 1.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    transition: all 0.2s ease;
    width: 400px;
    margin-right: 10px;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.email-input:focus {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.submit-btn {
    padding: 1.2rem 2rem;
    background: linear-gradient(90deg, #FF7E00, #822df8);
    border: none;
    border-radius: 16px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    filter: brightness(110%);
}

.cta-note {
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

footer {
    text-align: center;
    padding: var(--spacing-lg) 0;
    font-size: 1rem;
    opacity: 0.8;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.2));
    position: relative;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

@media (max-width: 768px) {
    .gradient-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .description, .mission-card-content {
        font-size: 1rem;
    }
    
    .features-container, .cta-container {
        padding: var(--spacing-lg);
    }

    .features-title, .mission-title, .cta-title {
        font-size: 1.8rem;
    }

    .email-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .submit-btn, .email-input {
        width: 100%;
        padding: 1rem;
    }
}

.register-layout {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem 8rem;
    gap: 3rem;
  }
  
  /* Coluna do logo */
  .register-logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .logo-side {
    width: 100%;
    max-width: 400px;
  }
  
  /* Coluna do formulário */
  .register-form {
    flex: 1;
    max-width: 480px;
    width: 100%;
  }
  
  /* MOBILE */
  @media (max-width: 768px) {
    .register-layout {
      flex-direction: column;
      padding: 2rem 1.5rem;
      gap: 2rem;
    }
  
    .logo-side {
      max-width: 260px;
    }
  
    .register-form {
      max-width: 100%;
    }
  }
  