﻿    @font-face {
        font-family: 'Material Icons';
        font-style: normal;
        font-weight: 400;
        src: url("../plugins/materialIcon/material-icon.woff2") format('woff2');
    }

@font-face {
    font-family: 'Sora-Medium';
    font-style: normal;
    font-weight: 500;
    src: url("../fonts/Sora-Medium.ttf") format('truetype');
}

.font-sora-medium {
    font-family: 'Sora-Medium', 'Sora', sans-serif;
    font-weight: 500;
}

 .material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 1.5rem;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

@font-face {
    font-family: 'Material Icons Outlined';
    font-style: normal;
    font-weight: 400;
    src: url("../plugins/materialIcon/material-icon-outlined.woff2") format('woff2');
}

.material-icons-outlined {
    font-family: 'Material Icons Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 1.5rem;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: "Sora", sans-serif;
    color: #2E2E2D;
}

/* --- FAMÍLIA ZUUME --- */
/* Base para qualquer uso da Zuume */
.font-zuume {
    font-family: "zuume", sans-serif;
}

.zuume-title {
    font-family: "zuume", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.zuume-bold {
    font-family: "zuume", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.zuume-italic {
    font-family: "zuume", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.zuume-regular {
    font-family: "zuume", sans-serif;
    font-weight: 400;
    font-style: normal;
}

html {
    font-size: 14px;
}

@media (max-width: 1536px) {
    html {
        font-size: 12.5px;
    }
}

@media (max-width: 1366px) {
    html {
        font-size: 12px;
    }
}

@media (max-width: 1024px) {
    html {
        font-size: 16px;
    }

    .alert {
        margin: 1rem 1rem 1.25rem;
    }
}

@media (max-width: 640px) {
    html {
        font-size: 15px;
    }
}

button {
    transition: transform 0.1s ease;
}

    button:active {
        transform: scale(0.99);
    }

label.required::before {
    content: "*";
    color: red;
    margin-right: 4px;
}

/* Switch Personalizado */
.switch {
    position: relative;
    height: 1.5rem;
    width: 3rem;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 9999px;
    background-color: rgba(100, 116, 139, 0.377);
    transition: all .3s ease;
}

    .switch:checked {
        background-color: #292E6E;
    }

    .switch::before {
        position: absolute;
        content: "";
        left: calc(1.5rem - 1.6rem);
        top: calc(1.5rem - 1.6rem);
        display: block;
        height: 1.6rem;
        width: 1.6rem;
        cursor: pointer;
        border: 1px solid rgba(100, 116, 139, 0.527);
        border-radius: 9999px;
        background-color: rgba(255, 255, 255, 1);
        box-shadow: 0 3px 10px rgba(100, 116, 139, 0.327);
        transition: all .3s ease;
    }

    .switch:hover::before {
        box-shadow: 0 0 0px 8px rgba(0, 0, 0, .15);
    }

    .switch:checked:hover::before {
        box-shadow: 0 0 0px 8px rgba(41, 46, 110, 0.15);
    }

    .switch:checked:before {
        transform: translateX(100%);
        border-color: #292E6E;
    }

.iti__selected-dial-code {
    color: #cec8bc !important
}

.container-site {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

@media not all and (min-width: 1024px) {
    .container-site {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .container-painel {
        padding: 2rem !important
    }
}

    .container-painel {
        padding: 3rem;
        border-radius: 0.5rem;
        width: 100%;
        background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
        border-width: 1px;
    }

    /* Alerts Personalizado */
    .alert {
        font-size: 0.875rem;
        line-height: 1.25rem;
        padding: 1rem;
        border-width: 1px;
        border-radius: 0.5rem;
        gap: 1rem;
        align-items: flex-start;
        display: flex;
        margin-top: 1rem;
        margin-bottom: 1.25rem;
        position: relative;
    }

    .alert-info {
        color: rgb(131 155 190);
        background-color: #ffffff;
        border-color: rgb(131 155 190);
    }

    .alert-danger {
        color: #ff5260;
    }

    .alert-warning {
        color: rgb(226 27 77);
        background-color: #ffffff;
        border-color: rgb(226 27 77);
    }

    .alert-success {
        color: #ffffff;
        background-color: rgb(0, 141, 79);
        border-color: rgb(0, 141, 79);
    }

@media (min-width: 1024px) {
    *::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1);
        background-color: #EDEEF4;
        border-radius: 10px;
    }

    *::-webkit-scrollbar {
        width: 8px;
        height: 8px;
        background-color: #EDEEF4; 
    }

    *::-webkit-scrollbar-thumb {
        border-radius: 10px;
        background-color: #292E6E;
        border: 2px solid #EDEEF4;
    }

        *::-webkit-scrollbar-thumb:hover {
            background-color: #CA0717;
        }
}

html {
    scroll-behavior: smooth;
}


input:-webkit-autofill {
    background-color: #0a0a0a !important;
    color: #ffffff !important;
    box-shadow: 0 0 0px 100px #292E6E inset !important;
    -webkit-text-fill-color: #ffffff !important;
}

.btn-outline-custom {
    border: 1.5px solid #292E6E;
    color: #292E6E;
    border-radius: 0.75rem; /* 12px */
    padding: 1.2rem 1.5rem;
    font-family: 'Zuume', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.2s;
    display: inline-block;
    text-align: center;
    width: auto;
}

    .btn-outline-custom:hover {
        background-color: #292E6E;
        color: white;
    }
