﻿@font-face {
    font-family: 'Mondriel';
    src: url('../fonts/Mondriel-Slant.otf') format('opentype');
    font-weight: normal;
}

/* Reset de Tipografia Base */
body {
    font-family: "halcom", sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

* {
    box-sizing: border-box;
}

html {
    font-size: 14px;
}

@media (max-width: 1536px) {
    html {
        font-size: 13px;
    }
}

@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;
    }
}

.bg-btn-fortaleza {
    background: radial-gradient(100% 120% at 50% -10%, #D47477 0%, #A92028 50%, #7A141A 100%);
}

    .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;
}

    label.required::before {
        content: "*"; /* Adiciona o asterisco */
        color: red; /* Define a cor do asterisco */
        margin-right: 4px; /* Adiciona espaço entre o asterisco e o texto */
    }

    .text-red-500:empty {
        display: none;
    }

    .input-validation-error {
        border-color: #FF0000 !important;
    }


    /* 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: rgb(37 84 180);
        }

        .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(236, 72, 153, .15)
        }

        .switch:checked:before {
            transform: translateX(100%);
            border-color: rgb(37 84 180);
        }

    .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: 1rem;
        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-warning {
        color: rgb(226 27 77);
        background-color: #ffffff;
        border-color: rgb(226 27 77);
    }


@media (min-width: 1024px) {
    *::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
        border-radius: 10px;
        background-color: #F5F5F5;
    }

    *::-webkit-scrollbar {
        width: 8px;
        height: 8px;
        background-color: #F5F5F5;
    }

    *::-webkit-scrollbar-thumb {
        border-radius: 10px;
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
        background-color: #001D46;
    }
}

.container-site {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}


.swiper-pagination-bullet {
    margin-right: 0.4rem !important;
    width: 1rem !important;
    height: 1rem !important;
}

@media (min-width: 1536px) and (max-width: 1649px) {
    .max-w-container {
        padding: 0 48px;
    }
}

