/* Importação de fontes */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilos Globais */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f7fafc;
    color: #1a202c;
}

/* Hexagons */

.hexagon-1 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: auto;
    height: 150vh;
}

.hexagon-2 {
    position: absolute;
    top: 15vh;
    left: 0;
    z-index: 1;
    width: auto;
    height: 100vh;
}

.hexagon-3 {
    z-index: 0;
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
}

.hexagon-4 {
    position: absolute;
    top: -10%;
    left: 30%;
    z-index: 1;
    width: auto;
    height: 120%;
}


.hexagon-5{
    position: absolute;
    top: -15%; 
    right: 0;
    z-index: 1; 
    width: auto;
    height: 100vh;
}
/* -- */

.hero{
    background-image: url('../images/banner.png');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.div-hero{
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 0 1rem;
    gap: 1rem;
}

.div-hero p{
    color: #fff;
    max-width: 50%;
    line-height: 2.5rem;
    font-size: 1.5rem;
    z-index: 2;
}

.div-hero img{
    width: 500px
}

.portfolio{
    background: rgb(90,7,76);
    background: linear-gradient(180deg, rgba(90,7,76,1) 0%, rgba(24,27,102,1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.section-services{
    display: flex;
    justify-content: center;
    width: 100%;
}

.div-services{
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 1rem;
    margin: 5rem 0rem;
    gap: 10rem;
}

.div-services-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 2rem;
}

.div-services h2{
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    width: 200px;
    line-height: 2.5rem;
}

.div-services img{
    transition: all 0.3s ease;
}

.div-services img:hover{
    transform: scale(1.02);
}

.btn{
    background-color: #F26E00;
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    color: #fff;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    font-family: Poppins;
}

.btn:hover{
    transform: scale(1.1);
}

.section-portfolio{
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.div-portfolio{
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    margin: 5rem 0rem;
    gap: 1.5rem;
}

.div-portfolio h2{
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
}

.div-portfolio hr{
    width: 80px;
    border: 1px solid #fff;
}

.div-portfolio-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    justify-content: center;
    align-items: center;
    margin-top: 5rem;
}

.div-portfolio-card{
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    color: #fff;
    z-index: 1;
}

.div-portfolio-card p{
    font-size: 1.2rem;
    width: 300px;
    margin-bottom: 15px;
}

.div-portfolio-card img{
    transition: all 0.5s ease;
}

.div-portfolio-card:hover img{
    transform: rotate(15deg);
}

.solutions{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.div-solutions{
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    margin: 5rem 0rem;
}

.div-solutions-text{
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 2rem;
    max-width: 450px;
    
    z-index: 2;
    background-color: #fff;
    border-radius: 40px;
}

.div-solutions-text p{
    font-size: 0.8rem;
    line-height: 1.8rem;
    color: #232323;
    text-align: justify;
}

.div-solutions-icons{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.div-solutions-icons div{
    display: flex;
    width: 100px;
    height: 100px;
    justify-content: center;
    align-items: center;
}

.div-solutions-btns{
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.div-solutions-btns .btn{
    width: 250px;
    border-radius: 5px;
    padding: 1rem;
    font-size: 1rem;
    cursor: auto;
}

.div-solutions-btns .btn:hover{
    transform: scale(1.05);
}

.form{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    background-image: url('../images/banner-form.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.div-form{
    max-width: 1280px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 1rem;
}

.div-form h2{
    color: #fff;
    font-size: 2.5rem;
    font-weight: 800;
    flex: 1;
    max-width: 300px;
    line-height: 3rem;
}

.div-form-form{
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    max-width: 500px;
}

.div-form-form form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 1rem;
}

.div-form-form form div{
    width: 100%;
}

.div-form-form form label{
    color: #fff;
    font-size: 1rem;
}

.div-form-form form input, .div-form-form form textarea, .div-form-form form select{
    width: 100%;
    padding: 1rem 1rem;
    border-radius: 10px;
    border: none;
    background-color: #fff;
    color: #232323;
    font-size: 1rem;
    margin-top: 5px;
}

.div-form-form form textarea{
    max-height: 500px;
    min-height: 100px;
}

.div-form-form input:focus, .div-form-form textarea:focus, .div-form-form select:focus{
    outline: none;
}

.form .btn{
    width: 100%;
    border-radius: 10px;
    font-size: 1.1rem;
}

.form .btn:hover{
    transform: scale(1.02);
}

.contact{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    background-color: #100C68;
    box-shadow: 0px -10px 30px rgba(5, 1, 59, 0.688);
    position: relative;
    z-index: 2;
}

.div-contact{
    max-width: 1280px;
    width: 100%;
    margin: 5rem 0rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    color: #fff;
}

.div-contact-info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 1rem;
}

.div-contact-info-item{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

a{
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}

a:hover{
    text-decoration: underline;
}

footer{
    background-color: #0B0B23;
    color: #fff;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

@media (max-width: 1400px) {
    .hexagon-4{
        left: 25%;
    }
}

@media (max-width: 1280px) {
    .div-hero, .div-services, .div-portfolio, .div-solutions, .div-form, .div-contact{
        max-width: 1024px;
    }
    .hexagon-4{
        top: -20%;
        left: 25%;
    }
    .hexagon-5{
        right: -10%
    }
}

@media (max-width: 1024px) {
    .div-hero, .div-services, .div-portfolio, .div-solutions, .div-form, .div-contact{
        padding: 5rem;
    }
    .div-services img{
        max-width: 500px;
    }
    .div-portfolio-card img{
        max-width: 120px;
    }
    .div-portfolio-card p{
        font-size: 1rem;
    }
    .hexagon-4{
        left: 12%;
    }
}

@media (max-width: 768px) {
    .hero{
        position: relative;
        overflow: hidden;
    }
    .div-hero, .div-services, .div-portfolio, .div-solutions, .div-form, .div-contact{
        padding: 2rem;
    }
    .hexagon-1{
        right: -60%;
    }
    .hexagon-2, .hexagon-4{
        display: none;
    }
    .div-services{
        justify-content: space-between;
    }
    .div-services img{
        max-width: 300px;
    }
    .div-portfolio-cards{
        grid-template-columns: repeat(1, 1fr);
        gap: 1.5rem;
    }
    .div-solutions-btns .btn {
        z-index: 2;
    }
    .div-form{
        flex-direction: column;
    }
    .div-form h2{
        max-width: 90%;
        font-size: 1.8rem;
        text-align: center;
        line-height: 2.2rem;
    }
    .div-form-form{
        max-width: 480px;
        width: 100%;
    }
    .div-form-form form{
        max-width: 100%;
    }

    .div-contact{
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hexagon-1,.hexagon-2, .hexagon-4, .hexagon-5{
        display: none;
    }
    .hero{
        background-position: right;
        position: relative;
        z-index: 1;
    }
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(13, 1, 57, 0.5);
        z-index: -1;
    }
    .div-hero{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .div-hero img{
        max-width: 180px;
    }
    .div-hero p{
        max-width: 100%;
        text-align: center;
    }
    .div-services{
        flex-direction: column-reverse;
        gap: 1rem;
    }
    .div-services-text{
        align-items: center;
    }
    .div-services h2{
        width: 100%;
        text-align: center;
    }
    .div-portfolio-card{
        gap: 0.5rem;
    }
    .div-portfolio-card img{
        max-width: 80px;
    }
    .div-portfolio-card p{
        font-size: 0.8rem;
        width: auto;
    }
    .div-portfolio-card .btn{
        font-size: 0.8rem;
        padding: 0.2rem 1rem;
    }
    .div-solutions{
        flex-direction: column;
        gap: 1rem;
    }
    .div-solutions p{
        width: 100%;
        text-align: center;
    }
    .div-solutions-icons{
        justify-content: center;
        align-items: center;
        gap: 0;
    }
    .div-solutions-icons div{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .div-solutions-icons img{
        max-width: 50px;
    }
    .div-contact-info{
        font-size: 0.8rem;
    }
    .contact-logo{
        max-width: 180px;
    }
}
  