<!-- Egor Custom Styles -->

:root {
    --primary-color: {{ data_get($site, 'primary_color', '#1d4ed8') }};
}

small.required {
    color: #d40808;
    font-weight: bold;
    padding-left: 4px;
    /* padding-bottom: 10px; */
    /* line-height: 42px; */
    font-size: 100%;
}

.maxWidthSite {
    max-width: 1600px;
    width: -webkit-fill-available;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.text-primary {
    color: var(--primary-color);
}

.text-white {
    color: white;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Yellix', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Yellix', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.activesubmenu{
    color: #2533ff !important;
}

.footer {
    background-color: #3537ff;
    color: white;
    font-family: 'Yellix', -apple-system, BlinkMacSystemFont, sans-serif;
    padding: 40px 5%;

    .footer-container {
        display: grid;
        grid-template-columns: 3fr 1fr 1fr 2fr;
        gap: 40px;

        .footer-logo {
            h2 {
                font-size: 2.5rem;
                font-weight: 700;
                margin: 0;
            }

            .subtitle {
                color: #cfcfff;
                font-size: 0.9rem;

                span {
                    font-style: italic;
                }
            }

            .desc {
                margin-top: 20px;
                font-style: italic;
                line-height: 1.5;
                color: #e0e0ff;
            }
        }

        .footer-column {
            h3 {
                font-size: 1.2rem;
                margin-bottom: 15px;
            }

            ul {
                list-style: none;
                padding: 0;

                li {
                    a {
                        color: #e0e0ff;
                        text-decoration: none;
                        display: block;
                        margin: 6px 0;

                        &:hover {
                            text-decoration: underline;
                        }
                    }
                }
            }
        }

        .footer-subscribe {
            h3 {
                font-size: 1.2rem;
                margin-bottom: 15px;
            }

            p {
                color: #e0e0ff;
                margin-bottom: 15px;
            }

            .subscribe-form {
                display: flex;
                gap: 10px;
                margin-bottom: 25px;

                input {
                    flex: 1;
                    padding: 12px;
                    border: none;
                    background-color: white;
                    color: #333;
                }

                button {
                    background-color: #47d63f;
                    color: white;
                    border: none;
                    padding: 12px 20px;
                    font-weight: 600;
                    cursor: pointer;

                    &:hover {
                        background-color: #38c031;
                    }
                }
            }


        }
    }

    .footer-bottom {
        justify-content: start;
        display: flex;
        border-top: 1px solid rgba(255, 255, 255, 0.4);
        margin-top: 10px;
        padding-top: 20px;
        text-align: left;
        font-size: 0.9rem;
        color: #d0d0ff;

        .social-icons {
            justify-content: end;
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-left: auto;

            a {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                background: white;
                color: #3537ff;
                width: 40px;
                height: 40px;
                border-radius: 50%;
                font-size: 18px;
                transition: all 0.3s ease;
                text-decoration: none;

                &:hover {
                    background-color: #47d63f;
                    color: white;
                }
            }
        }
    }

    @media (max-width: 1024px) {
        .footer-container {
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
    }

    @media (max-width: 768px) {
        padding: 50px 6%;

        .footer-container {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 40px;

            .footer-logo {
                h2 {
                    font-size: 2.2rem;
                }

                .desc {
                    max-width: 90%;
                    margin: 15px auto 0;
                }
            }

            .footer-column {
                h3 {
                    margin-bottom: 10px;
                }

                ul {
                    li a {
                        margin: 4px 0;
                    }
                }
            }

            .footer-subscribe {
                .subscribe-form {
                    flex-direction: column;

                    input {
                        width: 100%;
                    }

                    button {
                        width: 100%;
                    }
                }

                .social-icons {
                    justify-content: center;
                    margin-top: 20px;
                }
            }
        }

        .footer-bottom {
            text-align: center;
            font-size: 0.85rem;
        }
    }

    @media (max-width: 480px) {
        .footer-container {
            gap: 25px;

            .footer-logo h2 {
                font-size: 1.8rem;
            }

            .footer-subscribe {
                h3 {
                    font-size: 1rem;
                }

                p {
                    font-size: 0.9rem;
                }
            }

            .social-icons a {
                width: 36px;
                height: 36px;
                font-size: 16px;
            }
        }
    }
}


.mt-3{
    margin-top: 1rem;
}

.mt-7{
    margin-top: 3rem;
}


.open-modal-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 15px 30px;
    background: #4338ca;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-container {
    position: relative;
    background: white;
    max-width: 1100px;
    width: 90%;
    max-height: 90vh;
    overflow: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    border-top: 4px solid #2335ff;
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-container > .close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #2335ff;
    background: #fff;
    color: #2335ff;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    line-height: 1;
    transition: all 0.2s ease;
}

.modal-container > .close-btn:hover {
    background: #2335ff;
    color: #fff;
}

/*.modal-content {*/

/*    min-height: 600px;*/
/*}*/

/* Left Side */
.left-side {
    background-image: url("/assets/login/trabaladores_synk.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; /* faz “fit content” preenchendo o container */
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stats-badge {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 161px;
    text-align: center;
}

.icon {
    justify-content: flex-start;
    font-size: 16px;
    display: flex;
}

.number {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    justify-content: flex-start;
    display: flex;
}

.subtitle {
    justify-content: flex-start;
    display: flex;
    font-size: 12px;
    font-weight: bold;
    color: #000;
}

.testimonial-row {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    background-color: white;
    padding: 20px;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stars {
    color: #41ea06;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.testimonial-text {
    color: #222;
    font-size: 0.8rem;
    margin-bottom: 8px;
}

.author {
    color: #222;
    font-size: 0.7rem;
}

/* Right Side */
.right-side {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;

    h1 {
        margin-bottom: 4rem;
        font-size: 1.5rem;
        font-weight: 600;
    }
}



.features {
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 16px;
}

.check {
    color: #4ade80;
    font-size: 24px;
    margin-right: 15px;
    font-weight: bold;
}

.btn-primary,
.btn-secondary {
    width: 100%;
    padding: 18px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 15px;
}

.btn-primary {
    background: #4338ca;
    color: white;
}

.btn-primary:hover {
    background: #3730a3;
}

.btn-secondary {
    background: white;
    color: #4338ca;
    border: 2px solid #4338ca;
}

.btn-secondary:hover {
    background: #f0f0ff;
}

.login-text {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .modal-content {
        grid-template-columns: 1fr;
    }

    .left-side {
        display: none;
    }

    .right-side {
        padding: 40px 30px;
    }
}

.btn-green {
    margin-top: 20px;
    background: #41b617;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 16px;
    cursor: pointer;
    width: 50%;
    max-width: 13rem;

    &:hover {
        background: #369a12;
    }
}

.btn-blue {
    background: #2533ff;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 16px;
    cursor: pointer;

    &:hover {
        background: #2533ff;
    }
}



.form {
    text-align: left;
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
    position: relative;
    overflow: auto;
    opacity: 1;
}

.close-btn {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 1.5rem;
    color: #2533ff;
    cursor: pointer;
}

h3 {
    color: #2533ff;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

label {
    display: block;
    color: #2533ff;
    margin-top: 20px;
    margin-bottom: 5px;
    font-weight: bold;
}

input,
textarea {
    width: 100%;
    border: none;
    background: #f2f4ff;
    padding: 10px;
    font-size: 0.95rem;
    color: #333;
}

textarea {
    resize: none;
    height: 100px;
}

.attach {
    display: block;
    text-align: center;
    margin: 25px 0;
    color: #2533ff;
    font-weight: 600;
    text-decoration: none;
}

.submit-btn {
    background: #2533ff;
    color: white;
    border: none;
    padding: 12px 30px;
    width: 100%;
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: 600;
    margin-bottom: 10px;
}

.disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: #666;

    a {
        color: #2533ff;
        text-decoration: none;
    }
}


.form-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;

    &.active {
        display: flex;
        animation: fadeIn 0.3s ease-in-out;
    }

    .application-modal {
        background: #fff;
        padding: 2.5rem 3rem;
        width: 90%;
        max-width: 50rem;
        max-height: 85vh;
        overflow-y: auto;
        position: relative;
        animation: slideUp 0.3s ease;
        border-radius: 0;
        border-top: 4px solid #2335ff;

        .close-btn {
            position: absolute;
            top: 20px;
            right: 25px;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 2px solid #2335ff;
            background: #fff;
            color: #2335ff;
            font-size: 2.4rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            line-height: 1;

            &:hover {
                background: #2335ff;
                color: #fff;
            }
        }

        .application-form {
            font-family: 'Yellix', -apple-system, BlinkMacSystemFont, sans-serif;
            color: #0a0a0a;

            .application-header {
                margin-bottom: 1.5rem;
                padding-bottom: 1.5rem;
                border-bottom: 1px solid #eee;

                h2 {
                    color: #3daf2c;
                    font-weight: 700;
                    font-size: 1.2rem;
                    margin-bottom: 0.3rem;
                }

                .subtitle {
                    color: #666;
                    font-size: 0.95rem;
                    text-decoration: none;
                    margin-bottom: 0;
                }
            }

            h3 {
                color: #000;
                font-size: 1.3rem;
                font-weight: 700;
                margin-bottom: 0.3rem;
            }

            .description {
                font-size: 0.9rem;
                color: #666;
                margin-bottom: 1.5rem;
                line-height: 1.5;
            }

            form {
                display: flex;
                flex-direction: column;
                gap: 1.2rem;

                .form-group {
                    display: flex;
                    flex-direction: column;

                    label {
                        color: #000;
                        font-weight: 500;
                        font-size: 0.95rem;
                        margin-bottom: 0.5rem;
                    }

                    input,
                    select {
                        background: #fff;
                        border: 1px solid #ddd;
                        border-radius: 0;
                        padding: 0.9rem 1rem;
                        font-size: 0.95rem;
                        outline: none;
                        transition: border-color 0.2s ease;

                        &:focus {
                            border-color: #2335ff;
                        }

                        &::placeholder {
                            color: #999;
                        }
                    }

                    select {
                        cursor: pointer;
                        -webkit-appearance: none;
                        -moz-appearance: none;
                        appearance: none;
                        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
                        background-repeat: no-repeat;
                        background-position: right 12px center;
                        padding-right: 2rem;
                    }

                    textarea {
                        background: #fff;
                        border: 1px solid #ddd;
                        border-radius: 0;
                        padding: 0.9rem 1rem;
                        font-size: 0.95rem;
                        outline: none;
                        height: 120px;
                        resize: none;
                        transition: border-color 0.2s ease;

                        &:focus {
                            border-color: #2335ff;
                        }

                        &::placeholder {
                            color: #999;
                        }
                    }

                    .char-count {
                        text-align: right;
                        font-size: 0.8rem;
                        color: #999;
                        margin-top: 0.3rem;
                    }
                }

                h4 {
                    color: #000;
                    font-size: 1.2rem;
                    font-weight: 700;
                    margin-top: 1.5rem;
                    margin-bottom: 0.5rem;
                }

                .attach-btn {
                    background: transparent;
                    border: 2px solid #2335ff;
                    color: #2335ff;
                    font-weight: 600;
                    font-size: 1rem;
                    padding: 0.9rem 1rem;
                    cursor: pointer;
                    width: 100%;
                    transition: all 0.3s;
                    text-align: center;

                    &:hover {
                        background: #2335ff;
                        color: white;
                    }
                }

                .submit-btn {
                    background: #2335ff;
                    color: white;
                    font-weight: 700;
                    font-size: 1.1rem;
                    padding: 1rem;
                    border: none;
                    cursor: pointer;
                    width: 100%;
                    transition: background 0.3s;
                    margin-top: 1rem;

                    &:hover {
                        background: #1a28cc;
                    }
                }

                .terms {
                    text-align: left;
                    font-size: 0.85rem;
                    color: #666;
                    margin-top: 1rem;
                    line-height: 1.6;

                    a {
                        color: #2335ff;
                        text-decoration: none;

                        &:hover {
                            text-decoration: underline;
                        }
                    }
                }
            }
        }
    }

    @media (max-width: 600px) {
        .application-modal {
            padding: 1.5rem;

            .application-form {
                h2 {
                    font-size: 1.3rem;
                }

                .submit-btn,
                .attach-btn {
                    font-size: 1rem;
                }
            }
        }
    }
}

.success-overlay,
.already-applied-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 99999;
    padding: 1rem;
    box-sizing: border-box;
}

.success-overlay.active,
.already-applied-overlay.active {
    display: flex;
}

.success-modal,
.already-applied-modal {
    background: #fff;
    width: min(100%, 28rem);
    margin: 0 auto;
    padding: 3rem;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.24);
    animation: fadeInUp 0.3s ease;
}

.success-icon {
    color: #22c55e;
    margin-bottom: 1.5rem;
}

.already-applied-icon {
    color: #3b82f6;
    margin-bottom: 1.5rem;
}

.success-modal h3,
.already-applied-modal h3 {
    color: #1736ff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.success-modal p,
.already-applied-modal p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.success-btn,
.already-applied-btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.success-btn {
    background: #1736ff;
    color: #fff;
    border: none;
}

.success-btn:hover {
    background: #0f2acc;
}

.already-applied-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.already-applied-btn--primary {
    background: #1736ff;
    color: #fff;
    border: none;
}

.already-applied-btn--primary:hover {
    background: #0f2acc;
}

.already-applied-btn--secondary {
    background: transparent;
    color: #666;
    border: 1px solid #d1d5db;
}

.already-applied-btn--secondary:hover {
    border-color: #9ca3af;
    background: #f9fafb;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}


.login-form-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 35px;
}

.login-title {
    color: #0a2540;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 50px;
    line-height: 1.1;
}

.login-label {
    display: block;
    color: #3a4aff;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.login-input {
    width: 100%;
    font-size: 1rem;
    padding: 18px 16px;
    border: 1px solid #3a4aff !important;
    border-radius: 0;
    background: #fff;
    color: #222;
    margin-bottom: 0;
    outline: none;
    transition: border-color 0.2s;
}

.login-input::placeholder {
    color: #bdbdbd;
    font-size: 0.8rem;
}

.login-btn {
    width: 100%;
    background: #3a4aff;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 0;
    padding: 18px 0;
    margin-top: 25px;
    cursor: pointer;
    transition: background 0.2s;
}

.login-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.login-error {
    color: #e53e3e;
    font-size: 1.1rem;
    margin-top: 6px;
    display: block;
}

/* Forgot Password Link */
.login-forgot-password {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.forgot-password-link {
    color: #2335ff;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
}

.forgot-password-link:hover {
    text-decoration: underline;
}

.has-code-link {
    color: #2335ff;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
}

.has-code-link:hover {
    text-decoration: underline;
}

/* Reset Password Form */
.reset-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.reset-success-message {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #c3e6cb;
    font-size: 0.95rem;
}

/* Back to Login Link */
.login-back-to-login {
    text-align: center;
    margin-top: 1.5rem;
}

.back-to-login-link {
    color: #2335ff;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
}

.back-to-login-link:hover {
    text-decoration: underline;
}


.register-modal {
    background: #fff;
    padding: 2.5rem 3rem;
    border-radius: 0;
    max-width: 600px !important;
    margin: 0 auto;
    box-sizing: border-box;
    border-top: 4px solid #2335ff;
}
.register-form {
    width: 100%;
}
.register-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}
.register-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.register-title {
    color: #000;
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0.3rem;
}

.mt-4 {
    margin-top: 5rem !important;
}

.mw-12r {
    max-width: 12rem;
}


.register-group {
    display: flex;
    flex-direction: column;
    min-width: 0 !important;
    margin-bottom: 1rem;
    width: 100%;
}
.register-row {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex-wrap: wrap;
    width: 100%;
}
.register-label {
    color: #000;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.register-input {
    width: 100%;
    font-size: 0.95rem;
    padding: 0.9rem 1rem;
    border: 1px solid #ddd !important;
    border-radius: 0;
    background: #fff;
    color: #222;
    outline: none;
    transition: border-color 0.2s;
}
.register-input:focus {
    border-color: #2335ff !important;
}
.register-input::placeholder {
    color: #999;
    font-size: 0.95rem;
}
.register-error {
    color: #e53e3e;
    font-size: 1rem;
    margin-top: 6px;
    display: block;
}
.register-gdpr {
    color: #0a2540;
    font-size: 1rem;
    margin-bottom: 2rem;
}
.register-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 40px;
}
.register-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #0a2540;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}
.register-checkbox input[type="checkbox"] {
    width: 22px;
    height: 22px;
    accent-color: #3a4aff;
    margin-right: 8px;
    background-color: #3a4aff;
}
.register-link {
    color: #2335ff;
    text-decoration: none;
}
.register-link:hover {
    text-decoration: underline;
}
.register-btn {
    width: 100%;
    background: #2335ff;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 0;
    padding: 1rem 0;
    margin-top: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}
.register-btn:hover {
    background: #1a28cc;
}
.register-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Stage indicator for multi-step registration */
.register-stage-indicator {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
}
.register-stage {
    color: #a0aec0;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}
.register-stage.active {
    color: #3a4aff;
    font-weight: 600;
}
.register-stage.completed {
    color: #38a169;
}
.register-stage.completed::before {
    content: '✓';
    display: inline-block;
    width: 18px;
    height: 18px;
    background: #38a169;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
}
.register-subtitle {
    color: #4a5568;
    font-size: 1rem;
    margin-bottom: 24px;
}

/* Toast notifications */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 16px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 999999999999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: translateX(120%);
    transition: transform 0.3s ease;
    max-width: 400px;
}
.toast-notification.show {
    transform: translateX(0);
}
.toast-success {
    background: #38a169;
    color: white;
}
.toast-error {
    background: #e53e3e;
    color: white;
}
.toast-icon {
    font-size: 1.2rem;
    font-weight: bold;
}
.toast-message {
    flex: 1;
    font-size: 0.95rem;
}
.toast-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.8;
    padding: 0;
    line-height: 1;
}
.toast-close:hover {
    opacity: 1;
}

/* Hero Carousel Dots Styles - Override inline CSS */
.hero .hero-carousel-dots,
.hero-image .hero-carousel-dots,
div.hero-carousel-dots,
.hero-carousel-dots {
    position: absolute !important;
    bottom: 30px !important;
    left: 0 !important;
    right: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 12px !important;
    z-index: 99999 !important;
    pointer-events: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.hero .hero-carousel-dot,
.hero-image .hero-carousel-dot,
span.hero-carousel-dot,
.hero-carousel-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid #3556ff;
    cursor: pointer !important;
    transition: all 0.3s ease;
    opacity: 0.8;
    pointer-events: auto !important;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    display: inline-block;
    flex-shrink: 0;
    z-index: 99999 !important;
    position: relative !important;
}

/* Fix: maxWidthSite inside hero blocks clicks on dots */
.hero > .maxWidthSite {
    pointer-events: none !important;
}

.hero > .maxWidthSite .hero-content,
.hero > .maxWidthSite .hero-content * {
    pointer-events: auto !important;
}

.hero-carousel-dot:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
}

.hero-carousel-dot.active {
    background: #3556ff;
    opacity: 1;
    box-shadow: 0 0 8px rgba(53, 86, 255, 0.6);
}

@media (max-width: 768px) {
    .hero-carousel-dots {
        bottom: 20px;
        gap: 8px;
    }

    .hero-carousel-dot {
        width: 12px;
        height: 12px;
        border-width: 1px;
    }
}

@media (max-width: 480px) {
    .hero-carousel-dots {
        bottom: 15px;
    }

    .hero-carousel-dot {
        width: 10px;
        height: 10px;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #2533ff;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(37, 51, 255, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease;
    z-index: 9998;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: #1a28cc;
    transform: translateY(-3px);
}

.scroll-to-top:active {
    transform: translateY(0);
}

/* Scroll to Top - Responsive adjustments */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}
