@import url('https://fonts.googleapis.com/css2?family=Exo+2&display=swap');

* {
    font-family: 'Exo 2', sans-serif;
}

p {
    font-size: 1.2rem;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body{
    background-color: #f5f5f5;
}

h1, h2, h3, h4, h5, h6{
    font-weight: bold;
    margin-bottom: 20px;
}

button {
    border: none;
    margin: 0;
    padding: 0;
    width: auto;
    overflow: visible;
}

li {
    list-style: none;
}

.color-primary {
    color: var(--primary);
}

.color-secondary {
    color: var(--secondary);
}

.color-tertiary {
    color: var(--tertiary);
}

:root{
    --primary: #000080;
    --secondary: #0080FF;
    --tertiary: #00BFFF;
}


.navbar {
    background-color: #f5f5f5!important;
}

.nav-link {
    color: var(--primary);
    font-size: 1.1rem;
}

.nav-item {
    margin-left: 20px;
}

.nav-item:first-child {
    margin-left: 350px;
}

@media (max-width: 768px) {
    .navbar-nav .nav-item {
        margin-left: 0px;
    }
}


.hero {
    width: 100%;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    background-image: url("../img/bg.png");
    height: 80vh;
    width: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;   
    display: flex;
    align-items: center;
}

.hero-content{
    background-color: #fff;
    padding: 50px;
    border-radius: 10px;

    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}


#sobre, #modulos, #conteudo, #contato, .bg-telas {
    padding-top: 70px;
}

@media (max-width: 768px) {
    #sobre, #modulos, #conteudo, #contato, .bg-telas {
        padding: 10px ;
    }
}


.image-bg{
  background:
  linear-gradient(
      rgba(0,0,0,.65),rgba(0,0,0,.65)
      ),
      url("../img/bg/fundo-1.jpg") no-repeat;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
}

.important {
    font-weight: bold;
}

.button-sec {
    color: #fff;
    background-color: var(--secondary);
    border-color: var(--secondary);
    border-radius: 5px;
    padding: 8px 12px;
    font-size: 1.2rem;
    text-decoration: none;    
}

.button-sec:hover {
    cursor: pointer;
}

.button-module {
    color: var(--primary);
    background-color: #fff;
    font-weight: bold;
    border: 1px solid var(--primary);
    border-radius: 10px;
    padding: 6px 12px;
    font-size: 1.2rem;
    margin: 0 10px;
}

.button-ter {
    color: white;
    background-color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.active {
    color: #fff!important;
    background-color: var(--primary)!important;
}


.barra {
    background-color: #fff;
    height: 2px;
    width: 20%;
    margin: 20px;
}

.customer {
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
    margin: 20px;
    width: 20%;
    height: 100px;
}


.card-module {
    background-color: #fff;
    border-radius: 5px;
    width: 100%;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.bg-telas {
    background-image: url("../img/bg2.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000000' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E") !important;
}
   
.carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000000' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E") !important;
}

.descricao-tela {
    background-color: #ffffff9a;
    padding: 30px;
    border-radius: 5px;
}


#contato li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.opcao-item {
    background-color: var(--primary);
    border-radius: 50%;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}


footer {
    background-color: #00003C;
    padding: 30px;
    color: #fff;
}

footer h5 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

footer li {
    list-style: inside;
}

footer a {
    color: var(--tertiary);
    text-decoration: none;
    font-family: 'Oxygen', sans-serif;
}