*{
    padding: 0;
    margin : 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

body {
    background: #080808;
    color: #fff;
}

html{
    scroll-behavior: smooth;
}

/* ----------------------------- Header --------------------------- */


#header {
    width: 100%;
    height: 100vh;
}

.container {
    padding: 10px 10%;
}

.containerSite {
    padding: 10px -5%;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px 0;
    border-bottom: 1px solid #ed145b;
}

nav ul li {
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}

nav ul li a {
    color:#fff;
    text-decoration: none;
    font-size: 20px;
    position: relative;
}


nav ul li a::after{
    content: '';
    width: 0;
    height: 3px;
    background: #ed145b;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.60s;
}

nav ul li a:hover::after{
    width: 100%;
}

.img_logo {
    width: 130px;
    height: 100px;
}

.header-text{
    margin-top: 10%;
    font-size: 30px;
}

.header-text h1 {
    font-size: 60px;
    margin-top: 20px;
}

.header-text h1 span {
    color: #ed145b;
}

.img_logo2 {
    width: 16em;
    float: right;
}

/* ----------------------------- Sobre --------------------------- */


#about {
    padding: 80px 0;
    color: #fff;
}

.row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-col-1 {
    flex-basis: 35%;
}

.about-col-1 img {
    width: 100%;
    margin-top: 10%;
}

.about-col-2 {
    flex-basis: 60%;
}

.sub-title {
    font-size: 60px;
    font-weight: 600;
    color: #fff;
}

.tab-titles {
    display: flex;
    margin: 20px 0 40px;
}

.tab-links {
    margin-right: 50px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}

.tab-links::after {
    content: '';
    width: 0;
    height: 3px;
    background: #ed145b;
    position: absolute;
    left : 0;
    bottom : -8px;
    transition: 1s;
}

.tab-links.active-link::after{
    width: 50%;
}

.tab-content ul li {
    list-style: none;
    margin: 10px 0;
}

.tab-content ul li span {
    color : #ed145b;
    font-size: 14px;
}

.tab-content {
    display: none;
}

.tab-content.active-tab{
    display: block;
}

/* ----------------------------- Serviços --------------------------- */

#services {
    padding: 30px 0;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(250px, 500px));
    grid-gap:40px;
    margin-top: 50px;
    justify-content: center;
}


.services-list div{
    background: #262626;
    padding: 40px;
    font-size: 13px;
    font-weight: 300;
    border-right: 10px;
    border-radius: 20px;
    transition: background 0.5s, transform 1s;
}

.services-list div i {
    font-size: 30px;
    margin-bottom: 20px;
    transition: color 0.5s transform 0.5s;
    color: #ed145b;
}

.services-list div h2 {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 15px;
}

.services-list div a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    margin-top: 20px;
    display: inline-block;
}

.services-list div:hover {
    background: #ed145b;
    transform: translateY(-10px);
}



.services-list div:hover i {
    color: #fff;
}

.completo {
    display: none;
}

.text-service{
    text-align: justify;
    font-size: 18px;
}

.saiba-box {
    border: 1px solid #ed145b;
    border-radius: 10px;
    padding: 10px;
}
.saiba-mais{
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    width: 50%;
}

.saiba-menos{
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-top: 20px;
    width: 50%;
}

.services-list div:hover .saiba-box {
        border: 1px solid #fff;
}

.services-list div:hover .paragrafo-servico {
    background: #ed145b;
    transform: translateY(-10px);
}

.paragrafo-servico {
    margin-left: -40px;
    margin-right: -40px;

}

/* ----------------------------- Portifolio --------------------------- */

#portfolio{
    padding: 50px 0;
    
}

.item-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(250px, 500px));
    grid-gap:40px;
    margin-top: 50px;
    justify-content: center;
}

.item-list-site {
    display: grid;
    grid-template-columns: repeat(2, minmax(250px, 500px));
    grid-gap:70px;
    margin-top: 50px;
    justify-content: center;
}


.item {
    border-radius: 10px;
    position:relative;
    transition: max-height 0.5s;
}

.item.hidden {
    display: none;
  }



.item img{
    width: 100%;
    border-radius: 10px;
    display: block;
    transition: 0.5s;
}

.layer{
    width: 100%;
    height: 0;
    background: linear-gradient(rgba(0,0,0,0.6), #ed145b);
    border-radius: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    transition: 0.5s;
    transform: scale(1.1);
}

.layer h3 {
    font-weight: 500;
    margin-bottom: 20px;
}

.layer a {
    margin-top: 20px;
    color: #ed145b;
    text-decoration: none;
    font-size: 14px;
    line-height: 60px;
    background: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
}


.item:hover img{
    transform: scale(1.1);
}

.item:hover .layer {
    height: 100%;
}

.item:hover .layera{
    height: 50%;
}

.btn {
    display: block;
    margin: 60px auto 40px;
    width: 190px;
    border: 1px solid #ed145b;
    padding: 14px 40px;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    transition: 1s;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background: #ed145b;   
}

.mobile-text {
    display: none;
}

.site-text{
    font-size: 1.5em
}



/* ----------------------------- Contato --------------------------- */

.contact-left {
    flex-basis: 35%;
}

.contact-right {
    flex-basis: 60%;
}

.contact-left p {
    margin-top: 30px;
}

.contact-left p i {
    color: #ed145b;
    margin-right: 15px;
    font-size: 25px;
}

.social-icons{
    margin-top: 30px;
}

.social-icons a{
    text-decoration: none;
    font-size: 30px;
    margin-right: 15px;
    color: #ed145b;
    display: inline-block;
    transition: 1s;
}

.social-icons a:hover{
    color: #fff;
    transform: translateY(-5px);
}

.btn.btn2{
    display: inline-block;
    background-color: #ed145b;
}

.contact-right form {
    width: 100%;
}

form input, form textarea {
    width: 100%;
    border: 1px solid #ed145b;
    outline: none;
    background: #262626;
    padding: 15px;
    margin: 15px 0;
    color: #fff;
    font-size: 16px;
    border-radius: 2px;
}

form .btn2 {
    padding: 14px 60px;
    font-size: 18px;
    margin-top: 20px;
    cursor: pointer;
}

.copyright {
    width: 100vw;
    text-align: center;
    padding: 50px 0;
    background: #262626;
    font-weight: 300;
    margin-top: 30px;
    margin-left: -14%;
    margin-bottom: -2%; 
}

.copyright i {
    color: #ed145b;
}


nav .fa-solid {
    display: none;
}

.fixed-icons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 2;
}

.fixed-icons a i {
    font-size: 25px;
    color: #ed145b;
    margin: 10px;
    display: block;
    text-align: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #262626;
    line-height: 50px;
    transition: 1s;
    border: 0.5px solid #ed145b ;
}

.fixed-icons a i:hover {
    background: #ed145b;
    color: #fff;
}


.fixed-icons a {
    text-decoration: none;
}

#msg {
    color: #ed145b;
    margin-top: -20px;
    display: block;
}

/* --------------------------------  404  ----------------------------- */

.error-col-1 {
    flex-basis: 30%;

}

.error-col-2 {
    flex-basis: 50%;

}

.title-404 {
    font-size: 160px;
    font-weight: 100;
    color: #fff;
}

.text-center {
    text-align: center;
}

.sub-title-404 {
    margin-top: -10%;
    font-size: 30px;
    color: #ed145b;
    font-weight: 0;
}

.text-404 {
    margin-top: 2%;
    color: #e6e6e7b7;
}


/* ----------------------------- Para celular ------------------------- */
@media only screen and (max-width: 600px){



    .header-text{
        margin-top: 20%;        
        font-size: 16px;
    }
    
    .header-text h1{
        font-size: 30px;
    }
    
    .img_logo2 {
        display: none;
    }

    nav .fa-x {
       display: block;
       font-size: 25px;

    }

    nav .fa-bars{
        display: block;
        font-size: 25px;
        left:  80%;
        position: fixed;
        border: 1px solid #ed145b;
        padding: 0.5em;
        border-radius: 2em;
        background: #262626;
        z-index: 1;
    }

    nav ul {
        background: #ed145b;
        position: fixed;
        top : 0;
        right: -200px;
        width: 200px;
        height: 100vh;
        padding-top: 50px;
        z-index: 2;
        transition: 0.5s;
    }

    nav ul li {
        display: block;
        margin: 25px;
    }

    nav li {
        border-bottom: 1px solid #fff;
        width: 50%;
    }
    
    nav ul .fa-x {
        position: absolute;
        top: 25px;
        left: 25px;
        cursor: pointer;
    }



    .sub-title{
        font-size: 40px;
    }

    .about-col-1, .about-col-2 {
        flex-basis: 100%;
    }

    .about-col-1 {
        margin-bottom: 30px;
    }

    .about-col-2{
        font-size: 14px;
    }

    .tab-links{
        font-size: 16px;
        margin-right: 20px;
    }
    .contact-left, .contact-right{
        flex-basis: 100%;
    }
    .copyright{
        font-size: 14px;
    }



    .services-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        grid-gap:40px;
        margin-top: 50px;
    }

    .item-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        grid-gap:40px;
        margin-top: 50px;
    }

    .item-list-site {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        grid-gap:40px;
        margin-top: 50px;
    }

    body {
        overflow-x: hidden;
    }

    .services-list div:hover {
        background: #262626;
        transform: translateY(0px);
    }
    
    .services-list div:hover i {
        color: #ed145b;
    }

    .services-list div:hover .saiba-box {
        border: 1px solid #ed145b;
    }

    .mobile-text{
        display: block;
        font-size: 1em;
        text-align: justify;
        margin-top: 1em;
    }

    .layer{
        transform: scale(1.0);
    }

    .item:hover img{
        transform: scale(1.0);
    }

    #services {
        padding: 0;
        margin-top: -5%;
    }

    .btn:hover {
        background: none;   
    }

    .services-list div:hover .paragrafo-servico {
        background: #262626;
        transform: translateY(0px);
    }

    .site-text {
        display: none;
    }

    .insta-mobile {
        height: 400px;
    }

    .insta-mobile img {
        height: 100%;
    }

    .copyright {
        margin-left: -12.5%;
        margin-bottom: -6%;
    }

    .layer-menu {
        overflow: visible;
        height: 100%;
    }
    
    .about-col-1 img {
        width: 100%;
        height: 30em;
        margin-top: 10%;
    }

    .error-col-1, .error-col-2 {
        flex-basis: 100%;
    }

    .error-col-1 img {
        width: 100%;
        height: 25em;
        margin-top: 10%;
    }

    .error-col-2 {
        margin-top: -10%;
    }

}