@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
    --custom-primary-color: #fed700;
    --custom-dark-color: #000000;
    --custom-light-color: #ffffff;
    --custom-primary-text-color: #a59814;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    min-height: 100vh;
    font-family: "Poppins"!important;
    scroll-behavior: smooth;
}
.primary-button {
    background: var(--custom-primary-color) !important;
}
.primary-button:hover {
    background-color: #e6d30b !important;
}
.main {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
}
.main > .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
    background-color: var(--color, #000000a6);
    padding: 20px 120px;
    width: 100%;
    position: relative;
    z-index: 2;
}
.header #navegation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.header #mobile-menu, #mobile-menu #mobile-navegation {
    display: none;
}
.header #mobile-menu {
    flex-direction: column;
    width: 100%;
}
#mobile-menu #mobile-navbar {
    z-index: 3;
    background: transparent;
    padding: 15px;
}
#mobile-menu #mobile-navegation {
    z-index: 3;
    top: 0;
    width: 100%;
    flex-direction: column;
    padding: 20px 40px;
    position: absolute;
    left: 0;
    overflow: hidden;
    background-color: var(--custom-light-color);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    animation-duration: 0.4s;
    box-shadow: 0 2px 3px 
    color-mix(in srgb, #3d4348, transparent 85%);    
}
#mobile-navegation .links {
    display: flex;
    flex-direction: column;
    padding-top: 40px;
}
#mobile-navegation .links li {
    border-bottom: 1px solid #e3e3f3;
    padding-bottom: 1.2rem;
}
#mobile-navegation #close-menu {
    border: none;
    background: transparent;
    position: absolute;
    right: -24px;
    top: -20px;
    font-size: 2.5rem;
}
#mobile-navegation #close-menu i {
    color: var(--custom-primary-text-color);
}
#mobile-navegation .btn-access {
    margin-top: 18px;
}
.show-mobile-navegation {
    animation-name: show-navigation;
}
.hide-mobile-navegation {
    animation-name: hide-navigation;
}
@keyframes show-navigation {
    from {
        margin-top: -320px;
    }
    to {
        margin-top: 0;
    }
}
@keyframes hide-navigation {
    from {
        margin-top: 0;
    }
    to {
        margin-top: -380px;
    }
}
.header .links {
    list-style: none;
    display: inline-flex;
    gap: 1rem 3rem;
    margin-bottom: 0!important;
    padding-left: 0!important;
}
.header .links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}
#mobile-navegation .links a {
   color: var(--custom-primary-text-color);
}
.header .links a:hover {
    opacity: .7;
    cursor: pointer;
}
.header .logo {
    width: 90px;
}
.header .btn-access {
    background: var(--custom-primary-color);
    padding: 6px 40px;
    border: none;
    border-radius: 5px;
}
.header > .btn-access:hover {
    opacity: .7;
}
#mobile-menu #btn-mobile {
    border: none;
    background: transparent;
}
#mobile-menu #btn-mobile i {
    font-size: 2.5rem;
    color: #ffffff;
}
.main > section {
    width: 100%;
    min-height: 400px;
}
.main > section:not(#presentation) {
    padding: 60px;
}
.main #presentation {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: min(100vh, 550px);
    margin-top: -75px;
}
#presentation .overlay-video {
    background: radial-gradient(69.01% 69.01% at 50.57% 62.19%, rgba(59, 107, 178, 0) 0%, rgba(59, 107, 178, 0.11) 52.32%, #3B6BB2 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%);
    mix-blend-mode: multiply;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}
#presentation video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#presentation #title {
    font-size: 4rem;
    color: #fed700c9;
    z-index: 1;
    font-family: fantasy;
    text-align: center;
    font-weight: 500;
}
#filterProductType select {
    min-width: 150px;
}
#products {
    /* background: var(--custom-primary-color); */
    padding: 0!important;
    display: flex;
}
#products > div {
    display: flex;
    background-color: #ffffff;
    width: 100%;
    padding: 60px;
    justify-content: center;
}
#products #list-products {
    padding-top: 55px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, auto));
    gap: 2rem;
    justify-content: start;
    justify-items: center;
}
#list-products .product {
    width: 250px;
    justify-content: space-between;
}
#list-products .product img {
    width: 100%;
    height: 170px;
}
#list-contacts {
    width: 100%;
    padding-top: 45px;
    align-items: center;
    row-gap: 2rem;
}
#list-contacts h6 {
    color: var(--custom-primary-text-color);
}
#list-contacts .contact-information {
    display: flex;
    width: 100%;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    /* align-items: start; */
}
.contact-information .contact-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: #fcfeff;
    padding: 15px 20px;
    row-gap: 1rem;
    box-shadow: 0 2px 3px color-mix(in srgb, #3d4348, transparent 85%);
    text-decoration: none;
    color: #000000;
}
.contact-information .contact-details:is(.location) {
    width: 40%;
}
.contact-information .contact-details:not(.location) {
    width: 25%;
}
.contact-information .contact-details:hover {
    transform: scale(1.05);
    transition: .5s all;
}
.contact-details i {
    border-radius: 50%;
    padding: 7px 15px;
    font-size: 1.7rem;
    color: var(--custom-primary-text-color);
    box-shadow: 0 2px 3px color-mix(in srgb, #3d4348, transparent 85%);
    background: #ffffff;
}
.contact-details i:hover {
    color: #ffffff;
    background: var(--custom-primary-text-color);
}
#services {
    position: relative;
}
#services #services-info {
    display: flex;
    width: 100%;
    padding-top: 45px;
    justify-content: space-between;
}
#services-info #list-services {
    display: flex;
    flex-direction: column;
    background: #fbfbfb;
    border-radius: 5px;
    padding: 30px;
    gap: 2rem;
}
/* #services .services-group {
    padding: 20px 30px;
} */
#services .service-title {
    font-weight: 600;
}
#services #companies {
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
}
#companies img {
    border-radius: 5px;
    width: 600px;
}
#companies #unidade-recife {
    height: 300px;
}
#companies #unidade-uberaba {
    height: 380px;
}
#about #details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding-top: 45px;
}
#about #details img {
    width: 35%;
    height: 300px;
    border-radius: 5px;
}
#about #details p {
    width: 60%;
}
#list-news {
    display: flex;
    flex-wrap: wrap;
    padding-top: 45px;
    width: 100%;
    gap: 2rem 4rem;
    justify-content: center;
}
#list-news .new {
    padding: 20px;
    display: flex;
    gap: 2rem;
    width: 60%;
    color: #000000;
    text-decoration: none;
}
#list-news .new img {
    width: 400px;
    /* height: 240px; */
    border-radius: 4px;
}
#list-news .new span {
    font-size: .8rem;
}
#mission-values {
    display: flex;
    justify-content: space-between;
    padding-top: 50px;
}
#mission-values .mission-details {
    display: flex;
    flex-direction: column;
    row-gap: .2rem;
    padding: 30px 20px;
    width: calc(80% / 3);
    align-items: center;
    border-radius: 5px;
    background-color: #fbfbfb;
}
#mission-values .mission-details img {
    width: 40px;
}

#mission-values .mission-details span {
    font-weight: 500;
}
form .required {
    color: red;
}
#workModal #fileName {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
footer {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 1rem;
    padding: 30px 50px;
    background: var(--custom-primary-color);
}
footer #info-footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
}
footer #footer-logo {
    width: 126px;
}
footer #phone-number {
    gap: .5rem;
    width: 100%;
    border-radius: 4px;
    justify-content: center;
    text-decoration: none;
    color: #000000;
    background: transparent;
    border: solid 2px #c7a857;
}
footer #phone-number:hover {
    background: #ffd66a;;
}
footer #social-media {
    display: flex;
    gap: 1rem;
    min-width: 150px;
}
#social-media a {
    text-decoration: none;
    border-radius: 4px;
    background: #ffffff;
    padding: 5px 10px;
}
#social-media a:hover {
    background: var(--custom-primary-text-color);
}
#social-media a i {
    color: var(--custom-primary-text-color);
    font-size: 1.4rem;
}
#social-media a:hover i {
    color: #ffffff;
}
#info-footer #location {
    display: flex;
    justify-content: space-between;
    column-gap: 1rem;
}
#location > div {
    width: 30%;
}
#info-footer iframe {
    width: min(100%, 500px);
    border: 0;
    border-radius: 5px;
}
.main #schedule-service {
    position: fixed;
    background: var(--custom-primary-color);
    bottom: 50px;
    right: 50px;
    text-decoration: none;
    color: #000000;
    padding: 6px 10px;
    border-radius: 4px;
    box-shadow: 0 2px 3px color-mix(in srgb, #3d4348, transparent 85%);
    z-index: 1;
}
.main #schedule-service i {
    font-size: 1.2rem;
}
.main #schedule-service:hover {
    opacity: .7;
}
#workModal .info-column {
    display: flex;
    column-gap: 1.5rem;
}
#workModal #curriculum-area {
    width: 50%;
}
#workModal #curriculum {
    width: 100%;
    border: solid 1px #e9c842;
    display: flex;
    justify-content: center;
    padding: .375rem .75rem;
    border-radius: 4px;
    cursor: pointer;
    gap: .7rem;
    color: var(--custom-primary-text-color);
    background: #ffffed;
}
#workModal #curriculum:hover {
    opacity: .7;
}
#workModal form button[type="submit"], #loginModal form button[type="submit"] {
    background: var(--custom-primary-color);
}
#workModal form button[type="submit"]:hover, #loginModal form button[type="submit"]:hover {
    opacity: .7;
}
#serviceOrderModal .order-service-info {
    display: flex;
    justify-content: space-between;
    padding: 10px 0px;
    column-gap: 1rem;
}
#serviceOrderModal .order-service-info:not(:last-child) {
    border-bottom: 1px solid #e4e4e4;
}

#serviceOrderModal .order-service-info .title-font {
    font-weight: 500;
}
#messagesModal #successMessage, #messagesModal #errorMessage {
    gap: 1rem;
    padding-bottom: 30px;
}
#messagesModal span {
    font-weight: 500;
}
#messagesModal #successMessage span {
    color: #087a08;
}
#messagesModal #errorMessage span {
    color: red;
}

@media screen and (max-width: 991px) {
    .main > .header {
        padding: 0;
    }
    .main > section:not(#presentation) {
        padding: 60px 40px;
    }
    .header #navegation {
        display: none;
    }
    .header #mobile-menu {
        display: flex;
    }
    #mobile-navegation .btn-access {
        width: 40%;
        align-self: center;
    }
    .main #schedule-service {
        bottom: 30px;
        right: 20px;
    }
    #products #list-products {
        justify-content: center;
    }
    .contact-information .contact-details:is(:first-child) {
        width: 55%;
    }
    .contact-information .contact-details:is(:nth-child(2)) {
        width: 50%;
        font-size: 14px;
    }
    .contact-information .contact-details:not(:first-child), .contact-details:not(:nth-child(2)) {
        width: 40%;
    }
    #about #details img {
        width: 40%;
        height: auto;
    }
    #about #details p {
        width: 55%;
    }
    #info-footer #phone-number {
        width: 220px;
    }
    #news #list-news {
        justify-content: center;
    }
    #news #list-news .new {
        width: 70%;
    }
    /* #info-footer iframe {
        max-width: 300px;
    } */
}
@media screen and (max-width: 767px) {
    #presentation #title {
        font-size: 2rem;
        font-family: 'Poppins';
        font-weight: 600;
    }
    #mobile-navegation .btn-access {
        width: 100%;
        align-self: flex-start;
    }
    #productFilter {
        flex-direction: column;
        padding-top: 2rem;
    }
    #productFilter #searchProduct {
        flex-direction: column;
        align-items: normal!important;
    }
    #filterProductType select {
        width: 100%;
    }
    #list-contacts .contact-information {
        flex-direction: column;
    }
    .contact-information .contact-details {
        width: 100%!important;
    }
    #services #services-info {
        flex-direction: column;
        row-gap: 3rem;
    }
    #services-info #companies img {
        width: 100%!important;
        min-height: 200px;
        max-height: 380px;
        height: auto;
    }
    #about #details img, #about #details p {
        width: 100%;
        height: auto;
    }
    #list-news .new {
        flex-direction: column;
        width: 100%!important;
    }
    #list-news .new img {
        width: 100%;
    }
    #mission-values {
        flex-direction: column;
        row-gap: 1rem;
    }
    #mission-values .mission-details {
        width: 100%;
    }
    footer #info-footer {
        flex-direction: column;
    }
    #info-footer #location {
        padding-top: 25px;
        flex-direction: column;
        row-gap: 3rem;
    }
    #location > div {
        width: 100%;
    }
    /* #info-footer iframe {
        width: min(100%, 500px);
    } */
    .main #schedule-service {
        bottom: 20px;
        right: 20px;
        border-radius: 50%;
        padding: 5px 12px;
    }
    .main #schedule-service i {
        font-size: 1.8rem;
    }
    #schedule-service span {
        display: none;
    }
    #workModal .info-column {
        flex-direction: column;
    }
    #workModal #curriculum-area {
        width: 100%;
    }
    #workModal form button[type="submit"] {
        width: 100%;
    }
}