/* reset.css - Agência Lovatel Base Reset (1400px Main Variant) */
*{
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 1em;
    font: inherit;
    vertical-align: baseline;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    text-decoration: none;
    outline: 0;
    list-style: none;
}

/* --- SETTING HTML5 TAGS -- */
article, aside, address, blockquote, button, code, colgroup, details, figcaption, figure, footer, fieldset, header, hgroup, i, label, legend, map, menu, nav, object, section, source {
    display: block;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
}

select, button, input, textarea {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ie-appearance: none;
}

/**********  ANOTHER ELEMENTS *********/
a, button, .transition {
    transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    -webkit-transition-duration: 0.5s;
}

/********** ALIGNS, SPACINGS ANDS POSITIONS **********/
.rel { position: relative; }
.absol { position: absolute; }
.fix { position: fixed; }

.right { margin-right: 0px; margin-left: auto; }
.left { margin-left: 0px; margin-right: auto; }
.center { margin-left: auto; margin-right: auto; }

.middle { align-items: center; }
.t-center { text-align: center; }
.t-right { text-align: right; }

/********** CONTAINERS, CONTENTS, FLEXBOXES AND GRIDS **********/
.container {
    width: 100%;
    display: flex;
    height: auto;
    padding: 60px 20px;
}

.main {
    width: 100%;
    max-width: 1400px; /* Customizado para 1400px conforme solicitado */
    margin: 0 auto;
    height: auto;
    display: flex;
}

.grid, .grid2, .grid3, .grid4, .grid5, .grid6 {
    display: grid;
    grid-auto-rows: minmax(auto, 100%);
    grid-gap: 20px;
}
.grid2 { grid-template-columns: repeat(2, 1fr); }
.grid3 { grid-template-columns: repeat(3, 1fr); }
.grid4 { grid-template-columns: repeat(4, 1fr); }
.grid5 { grid-template-columns: repeat(5, 1fr); }
.grid6 { grid-template-columns: repeat(6, 1fr); }

.flex, .flex_w, .flex_c, .flex_r, .flex_e { display: flex; }
.flex_w { flex-wrap: wrap; }
.flex_r { justify-content: space-between; }
.flex_e { justify-content: space-evenly; }
.flex_c { flex-direction: column; }

/*********** FORMS, INPUTS, SELECTS, OPTIONS AND OTHERS FORM ELEMENTS **********/
form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.input {
    width: 100%;
    padding: 15px 20px;
    display: table;
    margin-bottom: 5px;
    border-radius: 3px;
}
.e_input { width: 49.5%; }
.t_input { width: 33%; }
.b_input { width: 75%; }
.s_input { width: 25%; }
.msg { min-height: 110px; resize: none; }

.button {
    border-radius: 6px;
    padding: 14px 30px;
    display: flex;
    font-weight: 700;
    font-size: 14px;
    width: fit-content;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    text-align: center;
    
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 1;
    border-radius: 10px;
    -webkit-transform: translate(-105%, 0);
    transform: translate(-105%, 0);
    background-color: rgba(255, 255, 255, 0.25);
}

.button:hover:before {
    opacity: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

/*********** PAGINATION  ************/
#pagination {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    margin-top: 40px;
}
#pagination ul { display: flex; flex-wrap: wrap; }
#pagination ul li { display: flex; align-items: center; margin: 0px 2px; }
#pagination ul li a {
    display: flex;
    min-width: 40px;
    height: 40px;
    border-radius: 0px;
    justify-content: center;
    align-items: center;
    padding: 0px 20px;
    border: 1px solid navy;
    font-weight: bold;
    font-size: 13px;
}

/* OTHERS CONFIGS */
.content { padding: 30px 0px; }
.swiper-wrapper {
    height: fit-content;
    height: -moz-fit-content;
    height: available;
    height: -moz-available;
}
.corner { border-radius: 10px; }
.rounded { border-radius: 50px; }

.line-detail { position: relative; margin-bottom: 30px; }
.line-detail:before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0px;
    border-radius: 4px;
    width: 90px;
    height: 4px;
}

.list li { position: relative; padding-left: 20px; }
.list li:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0%;
    margin-top: -5px;
    width: 10px;
    height: 10px;
    display: block;
    background: #4B72A4;
    border-radius: 2px;
}

/* Termos de privacidade de formulário padrão */
.privacyTerms {
    width: 100%;
    margin-top: 5px;
}
.privacyTerms p {
    color: #444;
    font-size: 11px;
    margin-bottom: 0;
}
.privacyTerms a {
    text-decoration: underline;
    font-weight: bold;
    color: #444;
}
.privacyTerms input {
    outline: none !important;
    background: none;
    border-radius: 0;
    box-shadow: 0 !important;
    -webkit-appearance: checkbox !important;
    width: 15px;
    height: 15px;
    appearance: initial;
    margin-right: 10px;
    border: 2px solid #BDBDBD;
    accent-color: #6DCEF5;
}

/* Pré definições para largura e altura */
.whFit,
.whFitImg {
    width: fit-content;
    width: -moz-fit-content;
    height: fit-content;
    height: -moz-fit-content;
}
.hFit,
.hFitImg {
    height: fit-content;
    height: -moz-fit-content;
}
.whFitImg img,
.hFitImg img {
    width: 100%;
    height: 100%;
}
