/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'PoppinsLocal';
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'PoppinsLocal', sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
    color: #fff;
}

p {
    font-size: 1.1em;
}


/* barra do topo*/
/* barra do topo*/
/* barra do topo*/
/* barra do topo*/
/* barra do topo*/
.top-bar .top-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

.top-bar {
    background-color: #00254A;
    color: #fff;
    text-align: center;
    padding: 5px 10px;
    font-size: 0.9em;
    display: flex;
    justify-content: left;
    gap: 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1100;
}

.top-bar .emoji {
    margin-right: -18px;
}

.top-bar a {
    color: #ffffff;
    text-decoration: none;
}

.top-bar a:hover {
    text-decoration: underline;
}

/* Navegação */
/* Navegação */
/* Navegação */
/* Navegação */
/* Navegação */
/* Navegação */
/* Navegação */
nav {
    background: rgba(0, 37, 74, 0.945);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px 0px;
    position: fixed;
    width: 100%;
    top: 20px;
    z-index: 1000;
    font-size: 20px;
}

nav img {
    height: 80px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;

}

nav a:hover {
    color: #00BFFF;
}

/* testes */
nav a {
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #00BFFF;
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}


/* Seções  Seções  Seções  Seções  Seções  Seções  Seções  Seções  Seções  Seções */

section {
    padding: 25px 30px 60px;
    text-align: center;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.13);
    margin: 20px;
    border-radius: 12px;
    scroll-margin-top: 150px;
}

#inicio {
    background: url('../img/imagem4.png') no-repeat center center;
    background-size: cover;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
    text-align: center;

    padding: 0;
    margin-top: 115px;
}

.inicio-conteudo h1 {
    font-size: 5em;
    text-shadow: 5px 5px 4px rgba(0, 0, 0, 0.9);
}

.inicio-conteudo h2 {
    text-shadow: 5px 5px 4px rgba(0, 0, 0, 1);
    font-size: 1.8em;
}

.inicio-texto {
    margin: 0px 20px;
    background: rgba(0, 37, 74, 0.89);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 20px;
    align-content: center;
    color: #fff;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#servicos h1,
#marcas h1,
#contato h1,
#localizacao h1 {
    /*  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.9);*/
    font-size: 2.1em;
}

#servicos h1,
#contato h1 ,
#localizacao h1{
    color: rgba(0, 37, 74, 0.89);
}



/* cartoes dentro da seção Serviços */
/* cartoes dentro da seção Serviços */
/* cartoes dentro da seção Serviços */
.servicos-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.servico-card {
    background: rgba(0, 37, 74, 0.945);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 20px;
    width: 300px;
    color: #fff;
    text-align: center;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);*/
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servico-card:hover {
    transform: scale(1.05);
    background: rgba(0, 37, 74, 0.945);
}

.servico-card h3 {
    margin-bottom: 10px;
    font-size: 1.4em;
}

.servico-card p {
    font-size: 1em;
}

#marcas {
    background-color: rgba(0, 37, 74, 0.89);
    ;
}

.quem {
    background: rgba(0, 37, 74, 0.89);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 20px;
    max-width: 400px;
    color: #fff;
    text-align: center;

    margin: 25px auto;
    margin-bottom: 20px;

}

/* whatsapp dentro de contatos */
/* whatsapp dentro de contatos */
/* whatsapp dentro de contatos */
.whatsapp-btn {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 12px 20px;
    margin-top: 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2em;
    transition: background 0.3s ease;
}

.whatsapp-btn i {
    margin-right: 10px;
    font-size: 1.4em;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
}

.endereco {
    background: rgba(0, 37, 74, 0.89);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 20px;
    max-width: 400px;
    color: #fff;
    text-align: center;

    margin: 25px auto;
    margin-bottom: 20px;

}

/* Rodapé  Rodapé  Rodapé  Rodapé  Rodapé  Rodapé  Rodapé  Rodapé  Rodapé  Rodapé  Rodapé  Rodapé */
.footer {
    background: rgba(0, 37, 74, 0.9);
    padding: 20px 30px;
    text-align: center;
    margin-top: 30px;
}

.footer img {
    height: 40px;
    margin-bottom: 10px;
}

.footer p {
    font-size: 0.9em;
    color: #ccc;
}

/* Responsividade  Responsividade  Responsividade  Responsividade  Responsividade */

.menu-toggle {
    display: none;
    font-size: 2em;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 900px) {
    .servico-card {
        width: 45%;
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    nav {
        font-size: 15px;
        position: relative !important;
    }

}

@media (max-width: 668px) {
    nav {
        font-size: 12px;
    }

}

@media (max-width: 600px) {
    .servico-card {
        width: 70%;
    }
}

@media (max-width: 568px) {
    .top-bar {
        display: flex;
        justify-content: space-between;

        font-size: 0.7em;
    }

    .top-bar .emoji {
        display: none;
        margin-right: 5px;
    }

    .top-bar .top-icon {
        display: none;
    }



    .menu-toggle {
        display: block;
    }

    nav ul {
        flex-direction: column;
        background: rgba(0, 37, 74, 0.95);
        position: absolute;
        top: 60px;
        right: 0;
        width: 170px;
        display: none;
        gap: 15px;
    }

    nav {
        background: rgba(0, 37, 74, 0.945);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px 0px;

        width: 100%;
        top: 20px;
        z-index: 1000;
        font-size: 18px;
    }

    nav.active {
        transform: translateX(0);
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        padding: 10px 10px 5px 10px;
        margin: 0;
    }

    nav img {
        height: 60px;
    }

    section {
        padding: 10px 10px 10px;
        margin: 10px 0px;
        border-radius: 12px;
        scroll-margin-top: 150px;
    }

    #inicio {
        background-size: cover;
        height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        color: #fff;
        text-align: center;
        padding: 0;
        margin-top: 30px;
    }

    .inicio-conteudo h1 {
        font-size: 3.5em;
    }

    .servicos-container {
        gap: 8px;
    }

    .servico-card {
        padding: 5px;
        width: 150px;
    }

    .servico-card h3 {
        margin-bottom: 10px;
        font-size: 1.1em;
    }

    .servico-card p {
        font-size: 0.8em;
    }

    .quem {
        font-size: 0.8em;
    }

    .mapa {
        margin: 10px auto;
        border: 1px solid #ffffff;
        border-radius: 8px;
        overflow: hidden;
        width: 600px;
        max-width: 100%;
        justify-content: center;
    }

    .whatsapp-fixo img {
        max-width: 40px;
        max-height: 40px;
        transition: transform 0.3s;
    }



    .menu-icon {
        position: fixed;
        left: 15px;
        top: 15px;
        z-index: 1001;
    }
}




.mapa {
    margin: 20px auto;
    border: 2px solid #ffffff;
    border-radius: 8px;
    overflow: hidden;
    width: 600px;
    max-width: 100%;
    justify-content: center;
}

/* nuvem de logos */
.logo-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.logo {
    width: 100px;
    transition: all 0.4s ease;
    filter: blur(3px);
    opacity: 0.5;
    transform: scale(0.7);
    cursor: pointer;
    animation: flutuar 6s ease-in-out infinite;
}

.logo:hover {
    animation-play-state: paused;
    filter: blur(0);
    opacity: 1;
    z-index: 10;
}

@keyframes flutuar {
    0% {
        transform: translateY(0px) scale(0.7);
        opacity: 0.5;
        filter: blur(3);

    }

    50% {
        transform: translateY(-15px) scale(1.2);
        opacity: 1;
        filter: blur(0);
    }

    100% {
        transform: translateY(0px) scale(0.7);
        opacity: 0.5;
        filter: blur(3);
    }
}

/* whatsapp icone inferior */
.whatsapp-fixo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.whatsapp-fixo img {
    width: 60px;
    height: 60px;
    transition: transform 0.3s;
}

.whatsapp-fixo img:hover {
    transform: scale(1.1);
}