@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Nunito", sans-serif;
    scroll-behavior: smooth;
}

:root {
    --sidebgColor: #0e1722;
    --themeColor: #7d83e2;
    --iconbgColor: #202647;
    --textColor: #ffffff;
    --bgColor: #f7f7f7;
}

header {
    height: 100vh;
    width: 300px;
    padding: 15px 30px;
    background-color: rgb(25, 23, 34);
    overflow: auto;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    transition: 0.4s;
    z-index: 99;
    box-shadow: 0 0 5px var(--themeColor);
}

header .profile{
    text-align: center;
    margin: 5px 0;
}

header .profile img {
    width: 200px;
    border-radius: 5px;
    box-shadow: 0 15px 100px 1px #5d5f7a;
}

header .profile h1 {
    color: white;
    font-weight: 600;
}

header .profile .social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-align: center;
    line-height: 37px;
    background-color: var(--iconbgColor);
    color: white;
    font-size: 18px;
    margin: 1.5px;
    transition: 0.4s;
    margin-top: 10px;
}

header .profile .social-icons a:hover {
    background-color: var(--themeColor);
}

header nav {
    margin-top: 40px;
}

header nav ul li {
    list-style: none;
}

header nav ul li a {
    display: inline-block;
    text-decoration: none;
    padding: 5px 10px;
    margin: 5px 0;
    color: lightgray;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.6px;
}

header nav ul li a i {
    margin-right: 10px;
    font-size: 20px;
    transition: 0.4s;
}

header nav ul li a:hover i {
    color: var(--themeColor);
}

header nav ul li a:hover {
    transform: translateX(5px);
}


hr {
    border: 1px dotted var(--themeColor);
    border-radius: 50%;
}

header .footer {
    text-align: center;
    background-color: rgb(25, 23, 34);
    width: 300px;
    color: lightgray;
    font-size: 14px;
    letter-spacing: 0.6px;
    padding: 15px;
    position: fixed;
    bottom: 0;
    left: 0;
    transition: 0.4s;
}

header .footer p a {
    color: var(--themeColor);
}

#MenuBtn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    font-size: 20px;
    width: 40px;
    height: 40px;
    color: white;
    background-color: var(--themeColor);
    text-align: center;
    line-height: 42px;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 20%);
    display: none;
    z-index: 999;
}

#MenuBtn:hover {
    background-color: var(--iconbgColor);
}

@media only screen and (max-width: 1050px) {
    header {
        left: -300px;
    }

    header .footer {
        left: -300px;
    }

    #MenuBtn {
        display: block;
    }
}

/* Header toggle */
.mobile-nav-active header{
    left: 0;
}

.mobile-nav-active .footer {
    left: 0;
}
/* Teste */
@media only screen and (max-width: 670px) {

    #MenuBtn {
        display: none;
    }
}



main {
    margin-left: 300px;
    background-color: var(--bgColor);
    transition: 0.3s;
}

@media only screen and (max-width: 1050px) {
    main {
        margin-left: 0;
    }
}

#home {
    height: 100vh;
    width: 100%;
    background-image: url(img/logistic2.png);
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px;
    position: relative;
}

/* overlay */
#home::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.431);
    position: absolute;
    top: 0;
    left: 0;
}

#home .home-row {
    z-index: 1;
}

#home .home-row h1 {
    font-size: 60px;
    color: white;
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 10px;
    line-height: 70px;
}

#home .home-row h1 span {
    color: var(--themeColor);
}

#home .home-row p {
    color: whitesmoke;
    font-size: 30px;
    font-weight: 500;
}

#home .home-row p span {
    border-bottom: 4px solid var(--themeColor);
}

#home .home-row a i {
    font-size: 20px;
    color: #000;
    transition: 0.4s;
}

.btn {
    display: inline-block;
    font-weight: bold;
    margin: 10px 3px;
    width: fit-content;
    padding: 14px 60px;
    border-radius: 80px;
    text-decoration: none;
    color: white;
    transition: 0.5s;
    background-color: var(--themeColor);
    box-shadow: 0 0 10px var(--sidebgColor);
}

.btn:hover {
    background: var(--sidebgColor);
    box-shadow: none;
}

/*Mobile View */
@media only screen and (max-width: 670px) {
    #home {
        padding: 30px;
    }
    #home .home-row h1 {
        font-size: 40px;
        letter-spacing: 0;
        line-height: 50px;
    }
    #home .home-row h1 br {
        display: none;
    }
    #home .home-row p {
        font-size: 20px;
        font-weight: 400px;
    }
}

/* About Section */
#about {
    padding: 70px 30px;
    background: #2b5876;
    background: -webkit-linear-gradient(to right, #4e4376, #2b5876);
    background: linear-gradient(to right, #4e4376, #2b5876);
}

.sub-heading {
    color: #fff;
    font-size: 30px;
    margin-bottom: 10px;
}

.divider {
    width: 80px;
    height: 4px;
    background-color: var(--themeColor);
    border-radius: 15px;
}

.sub-para {
    color: var(--textColor);
    font-size: 15px;
    letter-spacing: 0.4px;
    font-weight: 500;
    margin-top: 15px;
}

#about .about-col {
    display: flex;
    gap: 30px;
    margin-top: 25px;
}

#about .about-col .img-col {
    flex-basis: 35%;
    text-align: center;
}

#about .about-col .img-col img {
    width: 100%;
    border-radius: 15px;
    border: 4px solid var(--themeColor);
}

#about .about-col .info-col {
    flex-basis: 70%;
}

#about .about-col .info-col h2 {
    color: var(--themeColor);
    font-weight: 700;
    font-size: 35px;
    letter-spacing: 0.5px;
    margin-top: -10px;
}

#about .about-col .info-col p {
    color: var(--textColor);
    font-size: 15px;
    letter-spacing: 0.5px;
    font-style: italic;
}

#about .about-col .info-col .icon-list-col {
    display: flex;
    margin-top: 20px;
    gap: 40px;
}

#about .about-col .info-col .icon-list-col .icon-list ul li {
    list-style: none;
    margin: 15px 0;
}

#about .about-col .info-col .icon-list-col .icon-list ul li i {
    color: var(--themeColor);
}

#about .about-col .info-col .icon-list-col .icon-list ul li strong {
    color: var(--sidebgColor);
    font-weight: 600;
    margin-right: 2px;
}

#about .about-col .info-col .icon-list-col .icon-list ul li span {
    color: var(--textColor);
    font-weight: 500;
    font-size: 15px;
}

/* Mobile View */
@media only screen and (max-width: 830px) {
    #about {
        padding: 30px 10px;
    }
    #about .sub-para {
        font-size: 14px;
        letter-spacing: 0px;
        text-align: justify;
    }
    #about .about-col {
        flex-direction: column;
        gap: 20px;
        margin-top: 25px;
    }
    #about .about-col .img-col img {
        width: 50%;
    }
    #about .about-col .info-col h2 {
        font-weight: 600;
        font-size: 25px;
        letter-spacing: 0px;
    }
    #about .about-col .info-col p {
        font-size: 14px;
        letter-spacing: 0px;
    }
    #about .about-col .info-col .icon-list-col {
        flex-direction: column;
        gap: 0;
    }
    #about .about-col .info-col .icon-list-col .icon-list ul li {
        margin: 10px 0;
    }

    #about .about-col .info-col .icon-list-col .icon-list ul li strong {
        font-weight: 500;
        margin-right: 0px;
    }

    #about .about-col .info-col .icon-list-col .icon-list ul li span {
        font-weight: 400;
        font-size: 13px;
    }
}

@media only screen and (max-width: 400px) {
    #about .about-col .img-col img {
        width: 90%;
    }
}



/* FACTS 2 SESSAO */

#fact2 {
    padding: 70px 30px;
    background: #2b5876;
    background: -webkit-linear-gradient(to right, #4e4376, #2b5876);
    background: linear-gradient(to right, #4e4376, #2b5876);
}

#fact2 .service-row {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
}

#fact2 .service-row .service-box {
    display: flex;
    gap: 10px;
    padding: 10px;
}

#fact2 .service-row .service-box .icon i {
    width: 50px;
    height: 50px;
    font-size: 28px;
    line-height: 46px;
    color: white;
    text-align: center;
}

#fact2 .service-row .service-box .ser-info {
    border-left: 2px dotted var(--themeColor);
    font-size: 22px;
    padding-left: 10px;
}

#fact2 .service-row .service-box .ser-info h4 {
    color: var(--themeColor);
    font-size: 25px;
    font-weight: 600;
}

#fact2 .service-row .service-box .ser-info p {
    color: var(--textColor);
    font-size: 17px;
    font-weight: 500;
    font-style: italic;
}

#fact2 .service-row .service-box .ser-info ul {
    color: var(--textColor);
    font-size: 17px;
    font-weight: 500;
    font-style: italic;
    list-style-type: none;
}

#fact2 .service-row .service-box .ser-info li {
    margin: 10px 0;
    margin-left: 20px;
    color: var(--textColor);
    font-size: 15px;
}

/* Mobile View */
@media only screen and (max-width: 850px) {
    #fact2 {
        padding: 50px 15px;
    }

    #fact2 .service-row {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 15px;
    }
}

@media only screen and (max-width: 550px) {
    #fact2 .service-row {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 15px;
    }
}

/* EDUCATION Section */
#education {
    padding: 70px 30px 0px 30px;
    background: #2b5876;
    background: -webkit-linear-gradient(to right, #4e4376, #2b5876);
    background: linear-gradient(to right, #4e4376, #2b5876);
}

#education .edu-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 35px;
}

#education .edu-row .edu-cols {
    flex-basis: 50%;
}

#education .edu-row .edu-cols h2 {
    color: lightskyblue;
    font-weight: 600;
    font-size: 25px;
    margin: 15px 0;
}

#education .edu-row .edu-cols .my-info {
    padding: 0 20px 0 20px;
    margin: 20px 0;
    border-left: 2px solid var(--themeColor);
    position: relative;
}

#education .edu-row .edu-cols .my-info::before {
    content: '';
    position: absolute;
    top: 0px;
    left: -10px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid var(--themeColor);
    background-color: white;
}

#education .edu-row .edu-cols h3 {
    color: lightskyblue;
    font-style: 17px;
    font-weight: bold;
    text-transform: uppercase;
}

#education .edu-row .edu-cols .my-info p {
    color: var(--textColor);
    font-size: 15px;
    font-weight: 600;
    font-style: italic;
    margin: 10px 0;
}

#education .edu-row .edu-cols .my-info ul li {
    margin: 10px 0;
    margin-left: 20px;
    color: var(--textColor);
    font-size: 15px;
    font-weight: 500;
}

#education .edu-row .edu-cols .my-edu {
    padding: 0 20px 0 20px;
    border-left: 2px solid var(--themeColor);
    position: relative;
}

#education .edu-row .edu-cols .my-edu::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid var(--themeColor);
    background-color: white;
}

#education .edu-row .edu-cols .sp-box {
    padding: 4px 22px;
    background-color: lightblue;
    color: #5f5252;
    border-radius: 3px;
    font-style: italic;
    font-size: 14px;
    font-weight: 600;
    margin: 15px 0;
    display: inline-block;
}

#education .edu-row .edu-cols .my-edu span + p {
    color: var(--textColor);
    font-size: 15px;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 15px;
}

#education .edu-row .edu-cols .my-edu span + p + p {
    color: var(--textColor);
    font-size: 15px;
    font-weight: 500;
    padding-bottom: 15px;
}

#education .edu-row .edu-cols .pro-exp {
    padding: 0 20px 10px;
    border-left: 2px solid var(--themeColor);
    position: relative;
}

#education .edu-row .edu-cols .pro-exp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid var(--themeColor);
    background-color: white;
}

#education .edu-row .edu-cols .pro-exp p {
    color: var(--textColor);
    font-size: 17px;
    font-weight: 500;
    font-style: italic;
}

#education .edu-row .edu-cols .pro-exp ul li {
    margin: 10px 0;
    margin-left: 20px;
    color: var(--textColor);
    font-size: 15px;
}

/* Mobile View */
@media only screen and (max-width: 820px) {
    #education {
        padding: 50px 15px;
    }

    #education .edu-row {
        flex-direction: column;
    }

    #education .edu-row .edu-cols {
        flex-basis: 100%;
    }
}

/* carrossel SESSAO */

#carrossel {
    padding: 0px 30px 70px 30px;
    background: #2b5876;
    background: -webkit-linear-gradient(to right, #4e4376, #2b5876);
    background: linear-gradient(to right, #4e4376, #2b5876);
}

.container {
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}

.container input[type=radio]{
	display: none;
}
.container .card {
	position: absolute;
	width: 48%;
	height: 70%;
	left: 0;
	right: 0;
	margin: 150px auto;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	box-shadow: 0 0 10px 0 rgba(21, 111, 195, 0.5);
	transition: 0.4s ease;
	cursor: pointer;
    background-color: rgba(38, 39, 45, 1);
    border-radius: 20px;
    overflow: hidden;
    opacity: 0;
	z-index: 0;
	pointer-events: none;
	transform: translateX(0) scale(0.7);
}

.container .card img {
  width: 100%;
  height: 100%;
  object-fit: contain; 
  object-position: center;
}
.container .cards {
	position: relative;
	width: 100%;
	height: 100%;
}
#item-1:checked ~ .cards #song-8,
#item-2:checked ~ .cards #song-1,
#item-3:checked ~ .cards #song-2,
#item-4:checked ~ .cards #song-3,
#item-5:checked ~ .cards #song-4,
#item-6:checked ~ .cards #song-5,
#item-7:checked ~ .cards #song-6,
#item-8:checked ~ .cards #song-7 {
  transform: translateX(-20%) scale(0.8);
  opacity: 1;
  z-index: 0;
  pointer-events: auto;
}

/* POSIÇÃO DA DIREITA */
#item-1:checked ~ .cards #song-2,
#item-2:checked ~ .cards #song-3,
#item-3:checked ~ .cards #song-4,
#item-4:checked ~ .cards #song-5,
#item-5:checked ~ .cards #song-6,
#item-6:checked ~ .cards #song-7,
#item-7:checked ~ .cards #song-8,
#item-8:checked ~ .cards #song-1 {
  transform: translateX(20%) scale(0.8);
  opacity: 1;
  z-index: 0;
  pointer-events: auto;
}

/* CARD ATIVO (CENTRO) */
#item-1:checked ~ .cards #song-1,
#item-2:checked ~ .cards #song-2,
#item-3:checked ~ .cards #song-3,
#item-4:checked ~ .cards #song-4,
#item-5:checked ~ .cards #song-5,
#item-6:checked ~ .cards #song-6,
#item-7:checked ~ .cards #song-7,
#item-8:checked ~ .cards #song-8 {
  transform: translateX(0) scale(1);
  opacity: 1;
  z-index: 10;
   pointer-events: auto;
   will-change: transform;
}

/* Mobile View */
@media only screen and (max-width: 1050px) {
    #carrossel {
        padding: 0px 0px;
 }

.container .card {
	width: 80%;
	height: 40%;
}
}

/* Portfolio Section */
#portfolio {
    padding: 70px 30px;
    background: #2b5876;
    background: -webkit-linear-gradient(to right, #4e4376, #2b5876);
    background: linear-gradient(to right, #4e4376, #2b5876);
}

#portfolio .port-row {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 35px;
}

#portfolio .port-row .port-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

#portfolio .port-row .port-item h1 {
    color: white;
    font-size: 25px;
}

#portfolio .port-row .port-item .port-img img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

#portfolio .port-row .port-item .port-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(143, 139, 139, 0.8);
    padding: 0 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transform: scale(0);
    transition: 0.4s;
    border-radius: 10px;
    visibility: hidden;
}

#portfolio .port-row .port-item:hover .port-info {
    transform: scale(1);
    visibility: visible;
}

#portfolio .port-row .port-item .port-info  p {
    color: var(--bgColor);
    font-size: 16px;
}

/* Mobile View */
@media only screen and (max-width: 650px) {
  #portfolio {
    padding: 50px 10px;
  }
  #portfolio .port-row {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
  }
}

@media only screen and (max-width: 350px) {
  #portfolio .port-row {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 15px;
  }
}

/* Services Section */
#services {
    padding: 70px 30px;
    background: #2b5876;
    background: -webkit-linear-gradient(to right, #4e4376, #2b5876);
    background: linear-gradient(to right, #4e4376, #2b5876);
}

#services .service-row {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 30px;
}

#services .service-row .service-box {
    display: flex;
    gap: 10px;
    background-color: var(--iconbgColor);
    border: 10px solid var(--iconbgColor);
    border-radius: 15px;
    padding: 30px;
}

#services .service-row .service-box .icon i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--themeColor);
    font-size: 22px;
    line-height: 46px;
    color: var(--bgColor);
    transition: 0.7s;
    text-align: center;
}

#services .service-row .service-box:hover {
    color: white;
    background-color: var(--themeColor);
    border-color: var(--themeColor);
    transition: 0.4s;
}

#services .service-row .service-box .ser-info h4 {
    color: white;
    font-size: 20px;
    font-weight: 600;
}

#services .service-row .service-box .ser-info h4 + p {
    color: rgb(211, 209, 209);
    font-size: 14px;
    font-weight: 500;
}



/* Mobile View */
@media only screen and (max-width: 850px) {
    #services {
        padding: 50px 15px;
    }

    #services .service-row {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 15px;
    }
}

@media only screen and (max-width: 550px) {
    #services .service-row {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 15px;
    }
}

/* Contact Section */
#contact {
    padding: 70px 30px;
    background: #2b5876;
    background: -webkit-linear-gradient(to right, #4e4376, #2b5876);
    background: linear-gradient(to right, #4e4376, #2b5876);
}

#contact .contact-row {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    width: 100%;
}

#contact .contact-row .contact-left {
    flex-basis: 40%;
    min-width: 40%;
    background-color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 20%);
    border-radius: 4px;
    padding: 30px;
}

#contact .contact-row .contact-left .icon-box {
    display: flex;
    gap: 15px;
    align-items: center;
    margin: 30px 0;
}

#contact .contact-row .contact-left .icon-box .icon i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--themeColor);
    text-align: center;
    line-height: 47px;
    font-size: 20px;
    color: var(--themeColor);
    transition: 0.5s;
}

#contact .contact-row .contact-left .icon-box:hover .icon i {
    background-color: var(--themeColor);
    color: var(--bgColor);
}

#contact .contact-row .contact-left .icon-box .info h4 {
    font-size: 20px;
    color: var(--sidebgColor);
    font-weight: 600;
}

#contact .contact-row .contact-left .icon-box .info h4 + p {
    font-size: 15px;
    color: var(--sidebgColor);
    font-weight: 500;
}

#contact .contact-row .contact-right {
    flex-basis: 60%;
    min-width: 60%;
    background-color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 20%);
    border-radius: 4px;
    padding: 30px;
}

#contact .contact-row .contact-right form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0;
}

#contact .contact-row .contact-right form input,
#contact .contact-row .contact-right form textarea {
    display: flex;
    width: 100%;
    margin: 5px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--sidebgColor);
    padding: 10px 20px;
    border: 2px solid lightgray;
    border-radius: 2px;
    outline: none;
    resize: none;
    transition: 0.5s;
}

#contact .contact-row .contact-right form input:focus,
#contact .contact-row .contact-right form textarea:focus {
    border: 2px solid var(--themeColor);
}

#contact .contact-row .contact-right form input[type=submit] {
    background-color: var(--themeColor);
    color: var(--bgColor);
    border: 2px solid var(--themeColor);
    font-size: 17px;
    font-weight: 400;
    cursor: pointer;
}

#contact .contact-row .contact-right form input[type=submit]:hover {
    background-color: var(--iconbgColor);
}

#form-status {
    margin-top: 15px;
    font-weight: bold;
}

.success {
    color: green;
}

.error {
    color: red;
}

/* Mobile View */
@media only screen and (max-width: 800px) {
    #contact {
        padding: 50px;
    }

    #contact .contact-row {
        flex-direction: column;
        gap: 10px;
    }
}

@media only screen and (max-width: 500px) {
    #contact {
        padding: 50px 10px;
    }
}