/*cores da empresa

AZUL: color: #015eae;
Laranja: color: #f48222;
*/

*, body, html {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
body{
    background-color: #252525;
}
head {
    padding: 0;
    margin: 0;
    justify-self: center;
    align-items: center;
    overflow: hidden;
    box-sizing: border-box;
}

/* header */

header {
    position: fixed;
    display: flex;
    flex-direction: row;
    justify-content: space-between;  
    align-items: center;  
    top: 20px;
    left: 20px;
    right: 20px;
    height: 50px;
    overflow-y: hidden;
    z-index: 1000;
}

.menu-toggle {
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1000;
}
.menu-bar {
    width: 100%;
    height: 4px;
    background-color: #f48222;
    transition: transform 0.3s ease;
}
.menu {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #000000e8;
    width: 250px;
    height: 100%;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
}
.menu.open {
    transform: translateX(0);
    -webkit-box-shadow: 1px 0px 14px -8px rgba(255,255,255,1);
    -moz-box-shadow: 1px 0px 14px -8px rgba(255,255,255,1);
    box-shadow: 1px 0px 14px -8px rgba(255,255,255,1);
}
.menu ul {
    list-style-type: none;
    padding: 0;
    margin: 20px;
    text-align: right;
}
.menu ul li {
    margin-bottom: 10px;
}
.menu ul li a {
    text-decoration: none;
    color: #f48222;
    font-size: 18px;
    transition: 0.5s;
}
.menu ul li a:hover {
    color: #015eae;
    transition: 0.5s;
}
.menu-toggle.open .menu-bar:first-child {
    transform: translateY(10px) rotate(45deg);
}
.menu-toggle.open .menu-bar:last-child {
    transform: translateY(-10px) rotate(-45deg);
}
.menu-toggle.open .menu-bar:nth-child(2) {
    opacity: 0;
}

.social-icons a img {
    height: 50px;
}
.social-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.social-icons a:not(:first-child) {
    margin-left: 20px;
}

.fale-conosco {
    position: fixed;
    bottom: 30px;
    right: 20px;
    animation: pulse 1.5s infinite ease-in-out;
    z-index: 1000;
    display: flex;
    align-items: flex-end;
}
.fale-conosco p {
    opacity: 0;
    visibility: hidden;
    background-color: #252525;
    color: #fff;
    padding: 3px;
    font-size: 10px;
    font-weight: 600;
    width: 10vw;
    border: 2px #f48222 solid;
    border-radius: 5px;
    margin-right: 15px;
    transition: opacity 0.5s ease, visibility 0.5s;
    display: none;
}
.fale-conosco p.show {
    opacity: 1;
    visibility: visible;
    display: block;
}
@keyframes pulse {
    0% {
        transform: scale(1.0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1.0);
    }
}
.fale-conosco img {
    width: 40px;
}

/*section 1 */

.section {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;   
}
.slider {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
}
.slide {
    width: 500%;
    height: 100vh;
    display: flex;
    position: relative;
    transition: margin-left 0.5s ease;
}
.slide input {
    display: none;
}
.st {
    width: 20%;
    height: 100%;
    transition: 2s;
    overflow-y: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.st img {  
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
.st p {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
}

.st span {
    display: flex;
    align-items: center; 
    justify-content: center;
}

.st a { 
    width: 120px;
    text-transform: uppercase;
    font-size: 12px;
    padding: 10px;
    background-color: #f48222;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    border-radius: 5px;
}

/*primeiro slide específico*/
.first img{
    position: absolute;
    height:200px;
    width: 300px;
    margin-bottom: 200px;
}

.first p {
    left: 50%;
    top: 60%;
    margin-top: 50px;
}


.nav-m {
    position: absolute;
    width: 100vw;
    margin-top: -40px;
    justify-content: center;
    display: flex;
}
.m-btn {
    border: 2px solid #f48222;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.5s ease;
}
.m-btn:hover {
    background-color: #f48222;
}
.m-btn:not(:last-child) {
    margin-right: 30px;
}
#radio1:checked ~ .first {
    margin-left: 0;
}
#radio2:checked ~ .first {
    margin-left: -20%;
}
#radio3:checked ~ .first {
    margin-left: -40%;
}
#radio4:checked ~ .first {
    margin-left: -60%;
}
#radio5:checked ~ .first {
    margin-left: -80%;
}

.nav-auto {
    position: absolute;
    width: 100vw;
    margin-top: calc(100vh - 40px);    
    display: flex;
    justify-content: center;
}
.nav-auto div {
    border: 2px solid #f48222;
    padding: 5px;
    border-radius: 50%;
    transition: background-color 0.5s;
    cursor: pointer;
}
.nav-auto div:not(:last-child) {
    margin-right: 30px;
}
#radio1:checked ~ .nav-auto .a-b1,
#radio2:checked ~ .nav-auto .a-b2, 
#radio3:checked ~ .nav-auto .a-b3, 
#radio4:checked ~ .nav-auto .a-b4, 
#radio5:checked ~ .nav-auto .a-b5 {
    background-color: #f48222;
}

/*Section aboutUs*/



.aboutUs {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 60px;
}
.aboutUs h1 {
    margin: 3%;
    color: #f48222;
    font-size: 30px;
}
.aboutUs-desc {
    color: #015eae;
    font-size: 13px;
    max-width: 700px;
    width: 80vw;
    margin-bottom: 3%;
}
.aboutUs .exp-box {
    display: flex;
    justify-content: center;
    max-width: 604px;
    flex-wrap: wrap;
    color: #fff;
}

.exp-box h2, .exp-box p {
    margin-left: 10px ;
    margin-top: 5px;
}
.exp-box .one ,
.exp-box .two{
    width: 300px;
    height: 150px;
}
.exp-box .one {
    background-color: #015eae;
}
.exp-box .two {
    background-color: #f48222;
}
.exp-box .a{
    border-bottom: 1px  solid #fff ;
}
.exp-box .two {
    border-left: 1px solid #fff;
}

.navegation {
    margin-top: 3%;
    margin-bottom: 3%;
    display: flex;
}
.navegation a {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    padding: 10px;
    color: #fff;
    background-color: #f48222;
    border-radius: 5px;
    transition: 0.5s;
}

.navegation .one, .navegation .two {
    background-color: #f48222;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.navegation .two {
    background-color: #015eae;
}
.navegation .one:hover, .navegation .two:hover {
    transform: scale(1.01);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

footer {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999999;
}
footer a {
    text-decoration: none;
    color: #8822ff;
}



/*Epecífico*/
@media (max-width: 616px) {
    .exp-box .one ,
    .exp-box .two {
        border: none;
    }
}
/*Mobile*/
@media (max-width: 480px) {
    .menu {
        width: 180px;
    }
    .fale-conosco {
        align-items: flex-end;
        flex-direction: column;
        bottom: 48px;
    }
    .fale-conosco p {
        margin-right: 0px;
        margin-bottom: 5px;
        width: 20vw;
    }
    .navegation {
        flex-direction: column;
        align-items: center;
    }
    .navegation a {
        margin-bottom: 1%;
    }
}
/*Tablet*/
@media (max-width: 768px) {
    .second img {
        object-position: right;
    }
    .sixth img {
        object-position: right;
    }
    .exp-box .one ,
    .exp-box .two{
        width: 250px;
        height: 125px;
    }
}
/*Notebook*/
@media (max-width: 1024px) {

}
/*Até 4k*/
@media (max-width: 2056px) {

}