@import url("scrollbar.css");
@import url("styl-desktop.css");
@import url("styl-mobile.css");

* {
    margin: 0;
    padding: 0;
    color: #fefefe;
    font-family: "Poppins", sans-serif;
}

.mask {
    height: 85px;
}
#hdr {
    top: 0;
    width: 100%;
    z-index: 1000;
    position: fixed;
    background: #182650f7;
}

header {
    gap: 1rem;
    display: grid;
}

header .logo img {
    width: 12rem;
}
header .navmenu ul li {
    list-style: none;
}
header .navmenu ul li a {
    text-decoration: none;
}

/* Estilo do Main */
main .left {
    margin: 5%;
    padding: 0 5%;
}
main .left ul {
    margin-top: 15px;
    padding-left: 25px;
}
li {
    list-style: none;
    color: #fefefe;
}
main .left button {
    width: 100%;
    border: none;
    cursor: pointer;
    padding:6px 5px;
    margin-top: 20px;
    font-weight: bold;
    transition: .3s ease;
    color: #000000;
    border-radius: 50px;
    background: #fefefe;
}
main .left button:hover {
    background: #d1d1d1;
}

/* Estilo do Sobre */
.box-about {
    flex: 1;
    width: 100%;
    display: flex;
    padding: 5% 10%;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background-color: #182650dd;
}
.box-about h2 {
    font-size: 2.5rem;
    text-align: center;
}
.box-about p {
    max-width: 1024px;
    text-align: center;
    font-size: 1.2rem;
    margin-top: 20px;
    color: #e1e1e1;
}

/* Estilo do Slide */
.tech-bar {
    width: 100%;
    background: #132239;
}
.slide {
    font-size: 4rem;
    width: 100%;
    margin: 0 auto;
    display: flex;
    min-height: 100px;
    max-width: 1024px;
    align-items: center;
}
.slide .item {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*  */
.hero-section, .services-section, .cta-section, .process-section {
    width: 100%;
    min-height: 100vh;
    background-color: #182650;
    background: radial-gradient(circle at center top, #1c2e5c 0%, #080d21 100%);
}
.about-section {
    display: flex;
    width: 100%;
}
.paralax {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transition: background-position 0.3s ease-out;
    background-image: url("../images/image_01.webp");
}
.process-section {
    display: flex;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transition: background-position 0.3s ease-out;
    background-image: url("../images/image_02.webp");
}
.box-process {
    flex: 1;
    width: 100%;
    background-color: #182650dd;
}

/* Global */
header .logo {
    grid-area: logo;
}
header .navmenu {
    grid-area: nav;
}
header .btn-menu {
    grid-area: btn;
}

/*  */
.services-section {
    display: flex;
    align-items: center;
    justify-content: center;
}
.services-section .box-services .left {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
}
.services-section .left img {
    width: 80%;
}
.box-services {
    padding: 5%;
}
.services-section .box-services .rigth h2 {
    text-align: center;
}

/* Estilo do Processo global */
.process-section .box-process .group .card {
    display: flex;
    margin-top: 20px;
    text-align: center;
    align-items: center;
    flex-direction: column;
}
.process-section .box-process .group .card i {
    font-size: 5rem;
}
.process-section .box-process .group .card h3 {
    font-size: 1.4rem;
}
.process-section .box-process .group .card p {
    max-width: 220px;
    color: #d1d1d1;
}

/* Estilo do CTA */
.cta-section {
    display: flex;
    align-items: center;
}
.cta-section .box-cta {
    padding: 5%;
    width: 100%;
    margin: 0 auto;
    max-width: 1024px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.cta-section .box-cta h2 {
    font-size: 2rem;
    max-width: 450px;
}
.cta-section .box-cta p {
    max-width: 450px;
}
.cta-section .box-cta a {
    width: 100%;
    border: none;
    padding: 10px 0;
    max-width: 450px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: bold;
    border-radius: 50px;
    transition: .2s ease;
    text-decoration: none;
    background: #297EEC;
}
.cta-section .box-cta a:hover {
    background: #25D366;
}

.footer {
    display: flex;
    min-height: 80px;
    align-items: center;
    background: #080d21;
    justify-content: center;
}
.footer p {
    text-align: center;
}