@font-face {
    font-family: 'Damascus';
    src: url('../fonts/damascus-bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.carrossel {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
}

.carrossel-track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: circulate var(--carrossel-duration, 18s) linear infinite;
}

.carrossel-group {
    display: flex;
    align-items: center;
    gap: 28px;
    padding-right: 28px;
    flex-shrink: 0;
}

.card {
    padding: 0;
    position: relative;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-family: 'Damascus', sans-serif;
    font-size: 27px;
    border: 0;
    background: transparent;
    white-space: nowrap;
    flex: 0 0 auto;
}

.card img {
    width: 40px;
    margin-left: 0;
    flex: 0 0 auto;
    position: relative;
    z-index: 1;
}

.card span {
    position: relative;
    left: -12px;
    top: 5px;
    z-index: 2;
    color: #6c6f76;
}

@media (prefers-reduced-motion: reduce) {
    .carrossel-track {
        animation: none;
        transform: translateX(0);
    }
}

@keyframes circulate {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Estilos para o novo design da página de login */

.xadmin-auth-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 2rem;
}

.xadmin-auth-title-section {
    flex: 1;
}

.xadmin-auth-title-section h1 {
    margin: 0 0 0.5rem 0;
    font-family: "Sora", sans-serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: #1e2a36;
    letter-spacing: -0.01em;
    text-align: center;
}

.xadmin-auth-title-section p {
    margin: 0;
    font-size: 0.95rem;
    color: #8b95a1;
    font-weight: 500;
    text-align: center;
}

.xadmin-theme-toggle {
    background: transparent;
    border: none;
    color: #6a7380;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.xadmin-theme-toggle:hover {
    color: #0f6cbd;
}

/* Tabs Navigation */
.xadmin-auth-tabs-nav {
    display: flex;
    gap: 3rem;
    border-bottom: 1px solid #dbe2ea;
    padding-bottom: 1.25rem;
    margin-bottom: 2rem;
}

.xadmin-auth-tab {
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #6a7380;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: "Manrope", sans-serif;
    position: relative;
}

.xadmin-auth-tab img {
    width: 20px;
    height: 20px;
}

.xadmin-auth-tab i {
    font-size: 1.25rem;
}

.xadmin-auth-tab.active {
    color: #0f6cbd;
}

.xadmin-auth-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1.25rem;
    left: 0;
    right: 0;
    height: 3px;
    background: #0f6cbd;
}

.xadmin-auth-tab:hover:not(.active) {
    color: #1e2a36;
}

/* Form Fields */
.xadmin-auth-field-wrapper {
    margin-bottom: 1.5rem;
}

.xadmin-auth-field {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid #dbe2ea;
    border-radius: 10px;
    padding: 0.75rem 1.2rem;
    background: #ffffff;
    transition: all 0.3s ease;
}

.xadmin-auth-field:focus-within {
    border-color: #0f6cbd;
    box-shadow: 0 0 0 3px rgba(15, 108, 189, 0.1);
}

.xadmin-auth-icon {
    color: #6a7380;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.xadmin-auth-field input {
    flex: 1;
    border: none;
    padding: 0.5rem 0;
    outline: none;
    font-size: 1rem;
    color: #1e2a36;
    background: transparent;
}

.xadmin-auth-field input::placeholder {
    color: #a8aeb6;
}

.xadmin-password-toggle {
    background: transparent;
    border: none;
    color: #6a7380;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.xadmin-password-toggle:hover {
    color: #0f6cbd;
}

/* Form Actions */
.xadmin-auth-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.75rem;
    font-size: 0.9rem;
}

.xadmin-auth-remember {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #5f6f80;
    font-weight: 500;
    cursor: pointer;
}

.xadmin-auth-remember input[type="checkbox"] {
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: #0f6cbd;
}

.xadmin-auth-forgot {
    color: #0f6cbd;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.xadmin-auth-forgot:hover {
    text-decoration: underline;
}

/* Form */
.xadmin-auth-form {
    margin: 0;
}

/* Submit Button */
.xadmin-auth-submit {
    width: 100%;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #0d6eb8 0%, #084d94 100%);
    color: #ffffff;
    padding: 1rem 1.5rem;
    font-family: "Sora", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(13, 110, 184, 0.3);
}

.xadmin-auth-submit:hover {
    filter: brightness(1.05);
    box-shadow: 0 6px 16px rgba(13, 110, 184, 0.4);
}

.xadmin-auth-submit:active {
    filter: brightness(0.95);
}

/* Divider */
.xadmin-auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2.25rem 0;
    color: #8b95a1;
    font-size: 0.9rem;
}

.xadmin-auth-divider::before,
.xadmin-auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #dbe2ea;
}

.xadmin-auth-divider span {
    white-space: nowrap;
    flex-shrink: 0;
}

/* SSO Button */
.xadmin-auth-sso {
    width: 100%;
    border: 1px solid #dbe2ea;
    border-radius: 12px;
    background: #ffffff;
    color: #5f6f80;
    padding: 1rem 1.5rem;
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.xadmin-auth-sso:hover {
    border-color: #0f6cbd;
    color: #0f6cbd;
    background: rgba(15, 108, 189, 0.04);
}

/* Footer */
.xadmin-auth-footer {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #dbe2ea;
    text-align: center;
    color: #8b95a1;
    font-size: 0.9rem;
}

.xadmin-auth-help {
    color: #0f6cbd;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.xadmin-auth-help:hover {
    text-decoration: underline;
}
