/* style-login.css */
:root {
    --space-blue: #0B0E14;
    --neon-blue: #00D4FF;
    --electric-purple: #7B2CBF;
    --silver: #E0E0E0;
    --text-gray: #94A3B8;
    --card-bg: rgba(30, 41, 59, 0.7);
    --error-red: #EF4444;
    --success-green: #10B981;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--space-blue);
    color: var(--silver);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Background Animado */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 10s infinite ease-in-out;
}

.bg-circle:nth-child(1) {
    width: 400px;
    height: 400px;
    background: var(--neon-blue);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.bg-circle:nth-child(2) {
    width: 300px;
    height: 300px;
    background: var(--electric-purple);
    bottom: -50px;
    left: -50px;
    animation-delay: 3s;
}

.bg-circle:nth-child(3) {
    width: 250px;
    height: 250px;
    background: var(--neon-blue);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -20px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.9); }
    75% { transform: translate(20px, 20px) scale(1.05); }
}

/* Header */
.login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(11, 14, 20, 0.5);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.logo-link {
    text-decoration: none;
    color: inherit;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--neon-blue);
    letter-spacing: 2px;
}

.btn-back {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-back:hover {
    color: var(--neon-blue);
}

/* Container Principal */
.login-container {
    display: flex;
    min-height: 100vh;
    padding-top: 80px;
    position: relative;
}

/* Card Promocional (Lado Esquerdo) */
.promo-card {
    width: 45%;
    margin-top: -175px;
    min-width: 450px;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(123, 44, 191, 0.1));
    border-right: 1px solid rgba(0, 212, 255, 0.1);
}

.promo-content {
    max-width: 400px;
    text-align: center;
    z-index: 2;
}

.promo-content h2 {
    font-size: 3rem;
    color: var(--neon-blue);
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.promo-content > p {
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.promo-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    cursor: pointer;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
    text-align: left;
}

.feature-item:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateX(10px);
}

.feature-item i {
    color: var(--neon-blue);
    font-size: 1.2rem;
    width: 30px;
}

.feature-item span {
    color: var(--silver);
    font-size: 0.95rem;
}

.promo-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(0, 212, 255, 0.1);
}

.deco-circle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.deco-circle:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
}

.rocket-icon {
    position: absolute;
    font-size: 15rem;
    color: rgba(0, 212, 255, 0.03);
    bottom: -50px;
    right: -50px;
    transform: rotate(-45deg);
}

/* Card de Login (Centro) */
.login-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
    position: relative;
}

.login-card-inner {
    width: 100%;
    max-width: 450px;
}

.login-header-content {
    margin-bottom: 40px;
    text-align: center;
}

.login-header-content h1 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 10px;
}

.login-header-content h1 span {
    color: var(--neon-blue);
}

.login-header-content p {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Form Styles */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.form-group label {
    color: var(--silver);
    width: 35rem;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--neon-blue);
    font-size: 0.8rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper input {
    width: 100%;
    padding: 15px 45px 15px 15px;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s;
    outline: none;
}

.input-wrapper input:focus {
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

.input-wrapper input::placeholder {
    color: var(--text-gray);
}

.input-wrapper .toggle-password {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
}

.input-wrapper .toggle-password:hover {
    color: var(--neon-blue);
}

.input-wrapper .check-icon {
    position: absolute;
    right: 15px;
    color: var(--success-green);
    opacity: 0;
    transition: opacity 0.3s;
}

.input-wrapper input:valid + .check-icon,
.input-wrapper input:focus:valid + .check-icon {
    opacity: 1;
}

.error-message {
    color: var(--error-red);
    font-size: 0.8rem;
    min-height: 20px;
}

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--text-gray);
    user-select: none;
}

.checkbox-container input {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--text-gray);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.checkbox-container input:checked + .checkmark {
    background: var(--neon-blue);
    border-color: var(--neon-blue);
}

.checkbox-container input:checked + .checkmark::after {
    content: '✓';
    color: var(--space-blue);
    font-weight: bold;
    font-size: 12px;
}

.forgot-link {
    color: var(--neon-blue);
    text-decoration: none;
    transition: color 0.3s;
}

.forgot-link:hover {
    color: var(--electric-purple);
    text-decoration: underline;
}

/* Botão Login */
.btn-login {
    background: linear-gradient(45deg, var(--neon-blue), var(--electric-purple));
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.4);
}

.btn-login:active {
    transform: translateY(0);
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-gray);
    font-size: 0.85rem;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

/* Social Login */
.social-login {
    display: flex;
    gap: 15px;
}

.btn-social {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--silver);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
}

.btn-social:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--neon-blue);
    color: var(--neon-blue);
    transform: translateY(-2px);
}

.btn-social.google:hover {
    border-color: #DB4437;
    color: #DB4437;
}

.btn-social.linkedin:hover {
    border-color: #0077B5;
    color: #0077B5;
}


/* Toast Notification */
.toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, var(--neon-blue), var(--electric-purple));
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: bottom 0.5s ease;
    z-index: 1000;
}

.toast.show {
    bottom: 30px;
}

.toast i {
    font-size: 1.2rem;
}

/* Responsive */
@media (min-width: 1200px) {
    .promo-card {
        display: flex;
    }
}

@media (max-width: 1199px) {
    .promo-card {
        display: none;
    }
    
    .login-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .login-header {
        padding: 15px 20px;
    }
    
    .btn-back {
        display: none;
    }
    
    .login-card {
        padding: 40px 20px;
    }
    
    .login-header-content h1 {
        font-size: 2rem;
    }
    
    .social-login {
        flex-direction: column;
    }
    
    .form-options {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

/* style-inscricao.css - FERTIC 2026 Registration Page */

:root {
    --space-blue: #0B0E14;
    --space-blue-light: #151922;
    --neon-blue: #00D4FF;
    --electric-purple: #7B2CBF;
    --silver: #E0E0E0;
    --text-gray: #94A3B8;
    --card-bg: rgba(30, 41, 59, 0.7);
    --card-border: rgba(255, 255, 255, 0.1);
    --success-green: #10B981;
    --error-red: #EF4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--space-blue);
    color: var(--silver);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

a { text-decoration: none; color: inherit; }

/* Background Animado */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: float 15s infinite ease-in-out;
}

.bg-circle:nth-child(1) {
    width: 600px;
    height: 600px;
    background: var(--neon-blue);
    top: -200px;
    right: -100px;
}

.bg-circle:nth-child(2) {
    width: 400px;
    height: 400px;
    background: var(--electric-purple);
    bottom: -100px;
    left: -100px;
    animation-delay: 5s;
}

.bg-circle:nth-child(3) {
    width: 300px;
    height: 300px;
    background: var(--neon-blue);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: rgba(11, 14, 20, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    backdrop-filter: blur(10px);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--neon-blue);
    letter-spacing: 2px;
}

.btn-back {
    color: var(--text-gray);
    font-size: 0.9rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-back:hover {
    color: var(--neon-blue);
}

/* WELCOME SECTION (100% largura) */
.welcome-section {
    padding: 140px 20px 60px;
    text-align: center;
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.1) 0%, var(--space-blue) 100%);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.welcome-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.welcome-title span {
    color: var(--neon-blue);
    text-shadow: 0 0 25px rgba(0, 212, 255, 0.6);
}

.welcome-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* REGISTRATION SECTION */
.registration-section {
    padding: 60px 5%;
}

.registration-container {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* COLUNA ESQUERDA - BENEFÍCIOS (50%) */
.benefits-column {
    width: 50%;
    flex-shrink: 0;
}

.benefits-content {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    backdrop-filter: blur(10px);
}

.benefits-content h2 {
    color: var(--neon-blue);
    font-size: 1.8rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefits-content h2 i {
    font-size: 1.5rem;
}

.benefits-intro {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    gap: 18px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(0, 212, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateX(8px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.3rem;
    color: var(--neon-blue);
}

.benefit-text h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.benefit-text p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Informações Extra */
.benefits-extra {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 25px;
    border-top: 1px solid var(--card-border);
}

.extra-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.extra-item i {
    color: var(--neon-blue);
    font-size: 1.1rem;
    width: 20px;
}

/* COLUNA DIREITA - FORMULÁRIO (50%) */
.form-column {
    width: 50%;
    flex-shrink: 0;
}

.form-content {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    backdrop-filter: blur(10px);
}

.form-content h2 {
    color: var(--neon-blue);
    font-size: 1.8rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-content h2 i {
    font-size: 1.5rem;
}

.form-intro {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 30px;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--silver);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--neon-blue);
    font-size: 0.85rem;
    width: 16px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s;
    outline: none;
}

.form-input:focus {
    border-color: var(--neon-blue);
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.15);
}

.form-input::placeholder {
    color: var(--text-gray);
}

select.form-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px;
}

.form-input option {
    background: var(--space-blue);
    color: white;
}

/* File Upload */
.file-upload-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 15px;
    background: rgba(15, 23, 42, 0.7);
    border: 2px dashed var(--card-border);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.file-upload-label:hover {
    border-color: var(--neon-blue);
    background: rgba(0, 212, 255, 0.08);
}

.file-upload-label i {
    font-size: 2rem;
    color: var(--neon-blue);
}

.file-upload-label span {
    color: var(--silver);
    font-weight: 500;
}

.file-upload-label small {
    color: var(--text-gray);
    font-size: 0.75rem;
}

.file-name {
    color: var(--neon-blue);
    font-size: 0.85rem;
    text-align: center;
    word-break: break-all;
}

.file-input:focus + .file-upload-label {
    border-color: var(--neon-blue);
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.15);
}

/* Checkbox */
.checkbox-group {
    margin: 10px 0 15px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    color: var(--text-gray);
    font-size: 0.88rem;
    line-height: 1.5;
}

.checkbox-label input {
    display: none;
}

.checkbox-label .checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.2s;
}

.checkbox-label input:checked + .checkmark {
    background: var(--neon-blue);
    border-color: var(--neon-blue);
}

.checkbox-label input:checked + .checkmark::after {
    content: '✓';
    color: var(--space-blue);
    font-weight: bold;
    font-size: 12px;
}

.checkbox-label .link {
    color: var(--neon-blue);
    text-decoration: none;
}

.checkbox-label .link:hover {
    color: var(--electric-purple);
    text-decoration: underline;
}

/* Submit Button */
.btn-submit {
    background: linear-gradient(135deg, var(--neon-blue), var(--electric-purple));
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.35s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 10px;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.25);
}

.btn-submit:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.45);
    filter: brightness(1.08);
}

.btn-submit:active {
    transform: translateY(-1px);
}

.btn-submit i {
    transition: transform 0.3s;
}

.btn-submit:hover i {
    transform: translateX(6px);
}

.btn-submit:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none !important;
}

/* Form Note */
.form-note {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-note i {
    color: var(--neon-blue);
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--neon-blue), var(--electric-purple));
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    transition: bottom 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10000;
    font-weight: 500;
}

.toast.show {
    bottom: 35px;
}

.toast.success {
    background: linear-gradient(135deg, var(--success-green), #059669);
}

.toast.error {
    background: linear-gradient(135deg, var(--error-red), #DC2626);
}

.toast i {
    font-size: 1.3rem;
}

/* RESPONSIVE */

/* Tablets e menores - Colunas empilham */
@media (max-width: 1024px) {
    .registration-container {
        flex-direction: column;
    }
    
    .benefits-column,
    .form-column {
        width: 100%;
    }
    
    .welcome-title {
        font-size: 2.5rem;
    }
}

/* Mobile - Ajustes finos */
@media (max-width: 768px) {
    header {
        padding: 12px 20px;
    }
    
    .btn-back {
        display: none;
    }
    
    .welcome-section {
        padding: 120px 20px 40px;
    }
    
    .welcome-title {
        font-size: 2rem;
    }
    
    .welcome-subtitle {
        font-size: 1rem;
    }
    
    .registration-section {
        padding: 40px 20px;
    }
    
    .benefits-content,
    .form-content {
        padding: 30px 25px;
    }
    
    .benefits-content h2,
    .form-content h2 {
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .benefit-item {
        padding: 15px;
    }
    
    .benefit-icon {
        width: 45px;
        height: 45px;
    }
    
    .btn-submit {
        padding: 15px 28px;
        font-size: 0.95rem;
    }
}

/* Mobile muito pequeno */
@media (max-width: 480px) {
    .welcome-title {
        font-size: 1.7rem;
    }
    
    .benefits-content,
    .form-content {
        padding: 25px 20px;
    }
    
    .form-input {
        padding: 12px 14px;
        font-size: 0.92rem;
    }
    
    .file-upload-label {
        padding: 18px 12px;
    }
    
    .file-upload-label i {
        font-size: 1.6rem;
    }
}

/* Scrollbar Personalizada */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--space-blue);
}

::-webkit-scrollbar-thumb {
    background: var(--electric-purple);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-blue);
}