@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto Condensed", sans-serif;
}

body {
    background-image: url(./img/background.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
}

html {
    scroll-behavior: smooth;
}

/*HEADER*/
.container {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.logo {
    padding: 5px;
    margin-top: 25px;
}

.logo img {
    width: 100px;
    height: 100px;
}

.links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    gap: 10px;
    cursor: pointer;
}

.links li {
    margin: 30px;
    font-size: 24px;
    padding: 20px;
    font-weight: 600;
}

.links a {
    text-decoration: none;
    color: #00006a;
    transition: color 0.5s;
    position: relative;
}

.links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: #00006a;
    transition: width 0.3s ease;
  }

.links a:hover::after {
    width: 100%;
}

.links a:hover {
    color: #158311;
}

/* ESTILIZAÇÃO DO MENU MOBILE*/

.overlay-menu {
    background-color: #bdbaba9d;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 888;
    display: none;
}

.menu-mobile {
    background-color: #00006a;
    height: 100vh;
    position: fixed;
    right: 0;
    top: 0;
    width: 0%;
    overflow: hidden;
    z-index: 999;
    transition: .2s;
}

.menu-mobile.abrir-menu {
    width: 60%;
}

.menu-mobile.abrir-menu ~ .overlay-menu {
    display: block;
}

.menu-mobile .btn-fechar {
    padding: 10px;
}

.menu-mobile nav ul li {
    list-style-type: none;
    padding: 40px 4%;
}

.menu-mobile nav ul {
    text-align: right;
}

.menu-mobile nav ul li a {
    color: #fff;
    font-size: 28px;
    font-weight: 400;
}

.btn-abrir-menu{
    display: none;
}

/*LOGO GRANDE*/

.logo1 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.logo1 img {
    width: 770px;
    height: 770px;
    margin-top: -60px;
}

 /*ESTILIZAÇÃO DA FOTO COM "QUEM SOMOS"*/

.quemsomos {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 500px;
    gap: 40px;
}

.quemsomos img {
    width: 500px;
    height: 400px;
    margin-left: 20px;
    margin-top: 30px;
    border-radius: 20px;
    box-shadow: 5px 5px 10px #191919;
}

.quemsomos-texto {
    max-width: 800px;
    margin-left: 100px;
    background: linear-gradient(90deg, rgba(1,135,19,0.8) 0%, rgba(0,0,106,0.8) 66%, rgba(0,0,106,0.8) 100%);
    border-radius: 20px;
    padding: 20px;
    padding-top: 0;
}

.quemsomos h1 {
    text-align: center;
    font-size: 80px;
    color: #fff;
    padding: 20px;
    text-shadow: 2px 2px 2px #000;
}

.quemsomos h3 {
    color: #fff;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 24px;
    text-align: justify;
    text-shadow: 1px 1px 1px #000;
}

.quemsomos span {
    font-weight: 600;
    text-decoration: underline;
}

/*------- ESTILIZAÇÃO DOS CARDS DE SERVIÇOS --------------------*/

.servicos h1 {
    text-align: center;
    font-size: 80px;
    color: #fff;
    padding: 20px;
    text-shadow: 2px 2px 2px #000;
}

.card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.card {
    width: 350px;
    height: 450px;
    background: #00006a;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 20px;
    margin-top: 30px;
    padding: 5px;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(21, 131, 17, 0.5);
}

.card img {
    width: 150px;
    z-index: 1;
    margin-bottom: 30px;
}

.card h2{
    z-index: 1;
    color: white;
    font-size: 2em;
    margin-bottom: 30px;
}

.card h5{
    padding: 5px;
    z-index: 1;
    color: white;
    font-size: 18px;
    text-align: center;
}

.card::before {
    content: '';
    position: absolute;
    width: 100px;
    background-image: linear-gradient(180deg, #158311, #158311);
    height: 130%;
    animation: linhas 3s linear infinite;
    transition: all 0.2s linear;
}

@keyframes linhas {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.card::after {
    content: '';
    position: absolute;
    background: #07182e;
    inset: 5px;
    border-radius: 15px;
}

/*ESTILIZAÇÃO DOS PONTOS PRINCIPAIS*/

.informacoes-container h1 {
    text-align: center;
    font-size: 80px;
    color: #fff;
    padding: 20px;
    text-shadow: 2px 2px 2px #000;
    margin-top: 30px;
}

.informacoes {
    display: grid;
    grid-template-columns: repeat(4, auto);
    grid-template-rows: repeat(2, auto);
    justify-items: center;
    gap: 0;
    position: relative;
}

.info1 {
    grid-column: 2;
    grid-row: 1;
}

.info2 {
    grid-column: 4;
    grid-row: 1;
}

.info3 {
    grid-column: 1;
    grid-row: 2;
}

.info4 {
    grid-column: 5;
    grid-row: 2;
}

.info {
    background-color: #07182e;
    height: 300px;
    width: 300px;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    box-shadow: 3px 3px 10px #191919;
    margin-top: 20px;
}
  
.info img {
    height: 100px;
}
  
.info h5 {
    color: white;
    font-size: 24px;
    text-shadow: 2px 2px 2px #000;
}
  
.info p {
    color: #ffffff;
    margin-top: 20px;
    margin-bottom: 40px;
}

.logo-centro {
    position: absolute;
    width: 250px;
    height: 250px;
    bottom: 0;
}

/* ESTILIZAÇÃO DO FOOTER */

.footer {
    width: 100%;
    background-color: #07182e;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
}

.info-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.info-footer img{
    width: 50px;
    height: 50px;
}

.footer h1 {
    color: #fff;
    font-size: 35px;
    font-weight: 500;
    text-decoration: underline;
    margin-left: 60px;
    margin-top: 10px;

} 

/*Estilização telefone*/

.telefone {
    color: #000000;
    background-color: #ffffff;
    padding: 10px;
    border: 1px solid black;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.4s;
}

.telefone p {
    font-size: 24px;
    font-weight: 500;
}

.telefone a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #000;
}

.telefone:hover {
    transform: scale(1.07);
}

/*Estilização email*/

.email {
    color: #000000;
    background-color: #ffffff;
    padding: 10px;
    border: 1px solid black;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.4s;
}

.email p {
    font-size: 24px;
    font-weight: 500;
}

.email a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #000;
}

.email:hover {
    transform: scale(1.07);
}

/*Estilização instagram*/

.instagram {
    gap: 10px;
    color: #000000;
    background-color: #ffffff;
    padding: 10px;
    border: 1px solid black;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.4s;
}

.instagram p {
    font-size: 24px;
    font-weight: 500;
}

.instagram:hover {
    transform: scale(1.07);
}

.instagram a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #000;
}

/*Estilização google*/

.google{
    margin-right: 20px;
    margin-top: 10px;
    padding: 10px;
}

.google iframe {
    width: 500px;
    height: 300px;
}

.google iframe {
    border: none;
    box-shadow: 0 0 20px #1962b3;
    transition: box-shadow 0.4s ease;
  }
  
  .google iframe:hover {
    box-shadow: 0 0 40px #1962b3;
  }

  /*ESTILIZAÇÃO DOS DIREITOS E BOTÃO DE VOLTAR AO TOPO*/

  .direitos {
    background-color: #07182e;
    display: flex;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    width: 100%;
  }

  .topbtn {
    position: fixed;
    bottom: 40px;
    right: 80px;
    font-size: 18px;
    background-color: #00006a;
    color: white;
    border: none;
    border-radius: 50%;
    padding: 15px;
    cursor: pointer;
    box-shadow: 0 0 10px #158311;
    transition: all 0.5s ease;
  }
  
  .topbtn:hover {
    background-color: #158311;
  }
  
  /* AJUSTE DE QUEBRA DE LINHA DAS PALAVRAS GRANDES NA BARRA DE NAVEGAÇÃO*/

  .mobile {
    display: inline;
  }


/* RESPONSIVIDADE PARA TELAS DE COMPUTADORES EM GERAL*/

@media (max-width: 1627px) {

    .card-container {
        margin-left: 10px;
        margin-right: 10px;
    }

    .footer {
        justify-content: flex-start;
        gap: 50px;
    }

    .contatos {
        margin-right: 30px;
    }

    .info-footer {
        flex-direction: column;
        align-items: flex-start;
    }

}

@media (max-width: 1561px) {

    .avaliacoes {
        text-align: center;
    }
}

@media (max-width: 1448px) {

    .quemsomos-texto {
        margin-right: 20px;
    }

    .sst {
        text-align: center;
    }
}

@media (max-width: 1280px) {

    .contatos {
        position: absolute;
    }

    .info-footer {
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
        margin-top: 80px;
        margin-left: 20px;
    }

    .google iframe {
        width: 400px;
        height: 300px;
        margin-left: 15rem;
    }

    .topbtn {
        position: fixed;
        right: 17px;
    }
}

@media (max-width: 1212px) {

    .quemsomos-texto {
        margin-right: 20px;
    }

    .quemsomos-texto h3 {
        margin-right: 20px;
        font-size: 20px;
    }

    .informacoes {
        display: flex;
        align-items: flex-start;
        gap: 5px;
        margin-right: 10px;
        margin-left: 10px;
    }

}

@media (max-width: 1179px) {

    .google iframe {
        margin-left: 100px;
        
    }

}

@media (max-width: 1046px) {

    .links li {
        margin: 0;
    }

    .card-container {
        flex-direction: column;
    }

    .quemsomos {
        gap: 0;
    }

    .quemsomos-texto{
        margin-right: 20px;
    }

    .quemsomos-texto h1 {
        font-size: 50px;
    }

    .quemsomos-texto h3 {
        font-size: 18px;
    }

    .informacoes {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5px;
        margin-left: 10px;
        margin-right: 10px;
    }

    .informacoes .info2 p {
        font-size: 15px;
    } 

    .logo-centro {
        display: none;
    }

    .footer {
        display: flex;
    }

    .contatos {
        position: absolute;
        margin-bottom: 20px;
    }

    .telefone p, .email p, .instagram p {
        font-size: 18px;
    }

    .info-footer {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        margin-top: 60px;
        margin-left: 10px;
    }

    .google iframe {
        width: 400px;
        height: 200px;
        margin-left: 10px;
        margin-top: 20px;
    }
}

@media (max-width: 972px) {
    
    .info1 img {
        width: 80px;
        height: 80px;
    }

    .info1 h5 {
        font-size: 18px;
    }

    .info2 img {
        margin-top: -20px;
    }

    .info2 p {
        font-size: 18px;
    }

}

@media (max-width: 885px) {

    .info4 h5 {
        font-size: 18px;
    }

}


/* RESPONSIVIDADE PARA TABLETS */

@media (max-width: 834px) {

    .links li {
        gap: 30px;
        margin: 0;
        padding: 10px;
    }

    .mobile {
        display: block;
    }

    .logo1 img {
        margin-top: 15px;
        width: 500px;
        height: 500px;
    }

    .quemsomos {
        display: flex;
        justify-content: center;
    }

    .quemsomos img {
        width: 380px;
    }

    .quemsomos-texto {
        padding: 10px;
        margin-left: 20px;
    }

    .quemsomos-texto h1 {
        font-size: 40px;
    }

    .quemsomos-texto h3 {
        font-size: 21px;
        margin-bottom: 20px;
    }

    .card-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        margin-left: 25px;
    }

    .informacoes {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer {
        flex-wrap: wrap;
        gap: 0;
    }

    .info-footer {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        margin-top: 80px;
        margin-left: 30px;
        gap: 20px;
    }

    .google iframe {
        height: 350px;
        width: 600px;
        margin-left: 90px;
    }
}

@media (max-width: 800px) {

    .links li {
        gap: 30px;
        margin: 0;
        padding: 10px;
    }

    .mobile {
        display: block;
    }

    .logo1 img {
        margin-top: 15px;
        width: 500px;
        height: 500px;
    }

    .quemsomos {
        display: flex;
        justify-content: center;
    }

    .quemsomos img {
        width: 380px;
    }

    .quemsomos-texto {
        padding: 10px;
        margin-left: 20px;
    }

    .quemsomos-texto h1 {
        font-size: 40px;
    }

    .quemsomos-texto h3 {
        font-size: 21px;
        margin-bottom: 20px;
    }

    .card-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        margin-left: 25px;
    }

    .informacoes {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer {
        flex-wrap: wrap;
        gap: 0;
    }

    .info-footer {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        margin-top: 80px;
        margin-left: 30px;
        gap: 20px;
    }

    .google iframe {
        height: 350px;
        width: 600px;
        margin-left: 90px;
    }
}

@media (max-width: 720px) {

    .quemsomos {
        flex-direction: column;
        gap: 20px;
    }

    .servicos h1 {
        margin-top: 25px;
    }

    .card-container {
        display: flex;
        flex-direction: column;
        margin-top: 0;
    }

    .google iframe {
        width: 85vw;
        margin-left: 10px;
        display: block;
      }

}

@media (max-width: 600px) {

    .google iframe {
      width: 100%;
      margin: 0 auto;
      display: block;
    }

  }
  

/* RESPONSIVIDADE PARA CELULARES */

@media (max-width: 430px) {

    .btn-abrir-menu{
        display: block;
    }

    .logo {
        margin: 0;
        margin-top: 10px;
        padding: 0;
    }

    .links {
        display: none;
    }

    .logo1 img {
        width: 100%;
        margin-top: -50px;
        margin-bottom: 25px;
    }

    .quemsomos {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .quemsomos img {
        margin: auto;
        width: 80%;
        height: 80%;
    }

    .quemsomos-texto {
        width: 80%;
        height: 80%;
    }

    .quemsomos-texto h3 {
        font-size: 20px;
    }

    .servicos h1 {
        margin-top: 60px;
        color: #00006a;
    }

    .card-container {
        display: flex;
        flex-direction: column;
    }

    .informacoes-container h1 {
        color: #00006a;
    }

    .telefone p {
        font-size: 18px;
    }

    .email p {
        font-size: 18px;
    }

    .instagram p {
        font-size: 18px;
    }

    .google iframe {
        margin: auto;
        margin-left: 20px;
        width: 100%;
        height: 100%;
    }

    .topbtn {
        display: none;
    }
}

@media (max-width: 360px) {

    .menu-mobile nav ul li a {
        font-size: 22px;
        margin-right: 15px;
    }

    .quemsomos-texto h3 {
        font-size: 18px;
    }

    .card-container {
        margin: auto;
    }

    .card {
        width: 300px;
    }

    .telefone p, .email p, .instagram p {
        font-size: 14px;
    }

    .google iframe {
        width: 100%;
        margin-left: 10px;
    }

    .direitos {
        text-align: center;
    }

    .topbtn {
        display: none;
    }
}