/* styles.css */

body {
    
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    
}

.container {
    padding: 10px;
    max-width: 1200px;
    margin: 0 auto;
}



header {
    background-color: #ffffff;
    color: #0099f1;
    padding: 10px 0;
}

/* Estilo para o container do header */
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Estilo para o logo */
header .logo img {
    height: 100px; /* Ajuste conforme necessário */
}

/* Estilo para o menu no desktop */
.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: black; /* Ajuste conforme a paleta de cores */
    font-weight: bold;
}

/* Estilo para o menu mobile */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Estilo para o menu mobile ativo */
.nav-links.mobile-active {
    display: block;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: white; /* Ajuste conforme a paleta de cores */
    border-top: 1px solid #ccc;
}

.nav-links.mobile-active li {
    text-align: center;
    margin: 10px 0;
}

.hero {
    background: url('img/bg.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.hero .btn {
    background-color: #0084ff;
    color: #000;
    padding: 15px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.hero .container {
    justify-items: center;
}

.hero .btn:hover {
    background-color: #00c3ff;
}
.about{
    background: url('img/foto1.png') no-repeat center center/cover;
    display: flex;
    flex-direction:row; 
    align-items: center;
    height: 600px;
    justify-content: space-around;
    text-align: center;
    background-color: #00c3ff;
}
.fa-check-circle{
    color: #ffffff;
}
.about .container{
    text-align: initial;
    justify-content: center;
    padding: 23px;
    margin: 5px;
    color: #085a8c;
    font-size: 20px;
}

.tec {
    width: 100%;
}
.inks {
    display: flex;
    justify-content: start;
    gap: 15px;
}

.inks a {
    text-decoration: none;
    color: #fff;
}
.zap {
    background-color: #00c000;
    padding: 15px;
    border-radius: 10px;
}

.tel {
    background-color: #085a8c;
    padding: 15px;
    border-radius: 10px;
}

.services, .contact {
    padding: 60px 0;
    background-color: #fff;
    color: #000;
    text-align: center;
}

.services .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.services h2 {
    background-color: #085a8c;
    color: #fff;
    border-radius: 15px;
    padding: 25px;
    width: 100%;
    text-align: center;
}

.services .service-item {
    flex-basis: 30%;
    margin-bottom: 30px;
    margin: 5px;
    color: #edf8ff;
    background-color: #0099ff;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.services .service-item:hover {
    transform: translateY(-10px);
}

.services .service-item i {
    font-size: 40px;
    margin-bottom: 15px;
    color: #01325a;
}

.map {
    padding: 10px;
    background-color: #fff;
    text-align: center;
}

.map iframe {
    align-items: center;
}

.content-info{
    text-align: initial;
    padding: 10px;
    font-size: 18px;
    font-style: bold;
    color: #fff;
}

.contact {
    background-color: #009dff;
    display: flex;
    justify-content: space-around;
}

.contact form {
    display: flex;
    width: 300px;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #ffffff27;
    border-radius: 30px;
}

.contact .form-group {
    margin-bottom: 20px;
    width: 100%;
    max-width: 500px;
}

.contact label {
    display: block;
    margin-bottom: 10px;
}

.contact input,
.contact textarea {
    width: 80%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact button {
    padding: 10px 20px;
    background-color: #0a7ec5;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact button:hover {
    background-color: #085a8c;
}

footer {
    background-color: #0a7ec5;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

#back-to-top {
    display: none; /* Oculto por padrão */
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: black; /* Ajuste conforme a paleta de cores */
    color: white;
    border: none;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

#back-to-top i {
    line-height: 50px; /* Centraliza o ícone verticalmente */
}


@media (max-width: 768px) {
    header .container {
        flex-direction: row-reverse;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
    }

    .nav-links.mobile-active {
        top: 50px; /* Ajuste conforme necessário */
    }

    nav ul li {
        margin: 10px 0;
    }
    .contact {
        flex-direction: column
    }
    .contact img {
        
        text-align: center;
    }
    .services .container {
        flex-direction: column;
        padding: 0px;
        justify-items: center;
        display: flex;
        align-items: center;
    }

    .services .service-item {
        flex-basis: 10%;
    }

    .services h2 {
        width: 80%;
        align-items: center;
        text-align: center;
    }

    .services {
        justify-content: center;
    }
    .hero {
        padding: 60px 20px;
    }
    .hero .container {
        padding: 50px;
    }
    .about, .services, .contact {
        padding: 0px;
        margin: 0px;
    }
    .about {
        display: flex;
        flex-direction: column;
    }
    .about .container{
        font-size: 18px;
        color: white;
    }
    .tec {
        display: none;
    }
}
