* {
    font-family: 'Inter', sans-serif;
}

/* Removendo completamente elementos que flutuavam */
.floating-elements,
.floating-circle {
    display: none !important;
}

/* Centralização do conteúdo principal */
.main-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
}

.form-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    width: 100%;
    margin: auto;
    padding: 2rem;
    border-radius: 1rem;
}

.text-gradient {
    background-color: #FA8329;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.input-group {
    position: relative;
}

.input-group input,
.input-group select {
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.input-group input:focus,
.input-group select:focus {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(251, 146, 60, 0.2);
}

.btn-primary {
    background-color: #FA8329;
    box-shadow: 0 10px 25px -5px rgba(234, 88, 12, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -5px rgba(234, 88, 12, 0.6);
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pattern-dots {
    background-image: radial-gradient(#f0c9b3 1px, transparent 1px);
    background-size: 20px 20px;
}

.form-section {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.input-group {
    position: relative;
}

.floating-label {
    position: absolute;
    left: 12px;
    top: 16px;
    color: #6B7280;
    transition: all 0.3s ease;
    pointer-events: none;
    background: white;
    padding: 0 4px;
}

.form-input:focus+.floating-label,
.form-input:not(:placeholder-shown)+.floating-label {
    top: -8px;
    font-size: 12px;
    color: #FF6B35;
    font-weight: 500;
}

.form-input {
    transition: all 0.3s ease;
}

.form-input:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15)
}

.section-header {
    position: relative;
    margin-bottom: 2rem;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #FF6B35, #FF8A5B);
    border-radius: 2px;
}

.progress-bar {
    height: 6px;
    background: linear-gradient(90deg, #FF6B35, #FF8A5B);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.checkbox-custom {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #D1D5DB;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-custom:checked {
    background: #FF6B35;
    border-color: #FF6B35;
}

.checkbox-custom:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in {
    animation: slideIn 0.6s ease-out;
}


.demo-button {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(238, 90, 36, 0.3);
}

.demo-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 90, 36, 0.4);
}

#modal-instrucoes {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#modal-instrucoes.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 450px;
    width: 90%;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transform: scale(0.7) translateY(100px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#modal-instrucoes.show .modal-content {
    transform: scale(1) translateY(0);
}

.modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px 30px 20px;
    text-align: center;
    position: relative;
}

.modal-header::before {
    content: '📸';
    font-size: 40px;
    margin-bottom: 10px;
    display: block;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.modal-body {
    padding: 30px;
}

.instructions-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.instruction-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9ff;
    border-radius: 12px;
    border-left: 4px solid #FF6F3A;
    transition: all 0.3s ease;
}

.instruction-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
}

.instruction-item:last-child {
    margin-bottom: 0;
}

.icon {
    margin-right: 12px;
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.instruction-text {
    color: #4a5568;
    line-height: 1.6;
    font-size: 15px;
}

.do-text {
    color: #38a169;
    font-weight: 600;
}

.dont-text {
    color: #e53e3e;
    font-weight: 600;
}

.modal-footer {
    padding: 20px 30px 30px;
    text-align: center;
}

.footer-text {
    color: #718096;
    font-size: 13px;
    font-style: italic;
}


.glass-effect {
    background: rgba(255, 255, 255, 0.95);
}

.nav-link {
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ea580c;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: #ea580c;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.profile-avatar {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background: #374151;
    border-radius: 2px;
    transition: 0.3s;
}

.mobile-menu {
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu.active {
    transform: translateX(0);
}

.texto-apresentacao {
    color: #5c2213;
    font-size: 20px !important;
    font-weight: 300;
    line-height: 1.6;
}