@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap&family=Raleway:ital,wght@0,100..900;1,100..900');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Raleway", sans-serif;
}

html {
    scroll-behavior: smooth;
}

.block-up,
.block-down,
.block-left,
.block-right,
.block-left1,
.block-right1 {
    visibility: hidden;
}

#navbar {
    position: fixed;
    display: flex;
    justify-content: space-between;
    z-index: 99;
    height: 4rem;
    background-color: transparent;
    align-items: center;
    width: 100%;
    padding: 0 6rem 0 6rem;
    transition: all ease-in-out .4s;
}

#navbar img {
    filter: brightness(1000%);
    width: 40px;
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: #ffffff;
    position: relative;
}

nav a::after {
    content: " ";
    width: 0%;
    height: 2px;
    background-color: #ffffff;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 0.3s ease-in-out;
}

nav a:hover::after {
    width: 100%;
}

#navbar.rolar {
    background-color: #ffffff;
    box-shadow: 0px 1px 8px -4px #010101;
    transition: ease-in-out .4s;

    a{
        color: #345D6C;
    }
    a::after {
        background-color: #345D6C;
    }
    img {
        filter: none;
    }
}




/* INICIO */
#inicio {
    height: 98vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    padding: 6rem;
}

.background {
    height: 100%;
    width: 100%;
    background: url(./img/background.png) center no-repeat;
    background-size: cover;
    position: absolute;
}

.overlay {
    height: 100%;
    width: 100%;
    background: linear-gradient(45deg, #345D6C, #010101);
    opacity: 0.8;
    position: absolute;
}

#text {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
    font-size: 2em;
    color: #ffffff;
    text-align: center;
    z-index: 3;
}

#text h1 {
    font-weight: 600;
}

#text h2 {
    font-family: "Playfair Display";
    font-size: 40px;
    font-weight: 400;
}

#text p {
    font-size: 20px;
    max-width: 600px;
}

#desc-inicio {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

#desc-inicio a {
    text-decoration: none;
    color: #ffffff;
    border: 1px solid #ffffff;
    font-size: 20px;
    padding: 1rem;
    width: fit-content;
    transition: .3s;
    text-shadow: none;
    overflow: hidden;
    position: relative;
}

#overlay-btn {
    width: 100%;
    height: 100%;
    background-color: #345D6C;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transform: translateX(-100%);
    transition: .8s;
}

#desc-inicio a:hover #overlay-btn{
    transform: translateX(0%);
}


/* SOBRE */
#sobre {
    background-color: #F7F6F2;
    padding: 6rem;
}

#container-sobre {
    display: flex;
    width: 100%;
}

#dsc-sobre {
    display: flex;
    flex-direction: column;
    width: 60%;
    gap: 2rem;
    text-align: justify;
    padding: 1.5rem;
    color: #345D6C;
    padding-right: 6rem;
}

#dsc-sobre h2 {
    font-family: "Playfair Display";
    font-size: 2.5em;
    text-align: center;
    color: #345D6C;
}

#img-sobre {
    background: url(./img/deb1.jpeg) top no-repeat;
    background-size: cover;
    width: 40%;
    border-radius: 1rem;
    position: sticky;
}

/* SERVIÇOS */
#servicos {
    display: flex;
    flex-direction: column;
    padding: 6rem 6rem 6rem 6rem;
    align-items: center;
    gap: 5rem;
}

#servicos h2 {
    font-size: 40px;
}

#servicos p {
    color: #345D6C;
    font-size: 20px;
}

#servicos h2 span {
    font-weight: 300;
}

#container-services-tpc {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.services-tpc {
    width: 300px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 1rem;
    padding: 0 1rem 0 1rem;
    border-radius: 2rem;
    transition: .3s;
    color: #345D6C;
}

.services-tpc:hover {
    background-color: #345D6C;
    color: #ffffff;
}


.services-tpc h3{
    max-width: 186px;
}

.services-tpc i {
    font-size: 26px;
}




/* CONTATO */
#contato {
    background-color: #345D6C;
    color: #ffffff;
    position: relative;
    display: flex;
    padding: 6rem;
}


#text-contato {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 40%;
    text-align: justify;
    z-index: 30;
}

#text-contato h2 {
    font-size: 40px;
    text-align: start;
}

#text-contato span {
    color: #79ceff;
}

.overlay-contato {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: url(./img/Logo_branco.png) no-repeat center;
    background-size: contain;
    opacity: 0.1;
    transform: scale(.9);
}

#container-contato {
    display: flex;
    width: 60%;
    flex-direction: column;
    padding-left: 6rem;
    gap: 2rem;
    z-index: 30;
}

#contato-links {
    width: 100%;
    display: flex;
    gap: 2rem;
}

#contato-links a {
    text-decoration: none;
    color: #345D6C;
    background-color: #ffffff;
    border: solid 1px #ffffff;
    width: fit-content;
    height: fit-content;
    padding: 1rem;
    border-radius: 1rem;
    transition: .3s;
}

#contato-links i {
    font-size: 30px;
    transition: .3s;
}

#contato-links p {
    display: none;
    font-family: sans-serif;
}

#formulario form {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

form input {
    background-color: #a3d0e049;
    color: #ffffff;
    padding: .5rem;
    margin-bottom: 1rem;
    border-radius: 1rem;
    border: none;
    font-family: sans-serif;
}

form textarea {
    background-color: #a3d0e049;
    border-radius: 1rem;
    border: none;
    height: 100px;
    padding: .5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

form label {
    padding-left: 10px;
}

::-webkit-input-placeholder {
    color: #cfcfcf;
    font-family: sans-serif;
}

form input:focus,
form textarea:focus {
    outline: 1px solid #ffffff;
}

form button {
    cursor: pointer;
    padding: .5rem;
    margin-bottom: 1rem;
    border-radius: 1rem;
    border: none;
    transition: .3s;
}

form button:hover {
    transform: translateY(-3px);
    box-shadow: 1px 1px 3px 0px #010101;
    background-color: #1e3c47;
    color: #cacaca;
}

.confirmacao-envio {
    display: none;
    justify-content: center;
    align-items: center;
    background-color: #01010165;
    height: 100dvh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
}

.confirmacao-envio-container {
    width: 550px;
    display: flex;
    flex-direction: column;
    border: 1px solid black;
    border-radius: 11px;
    box-shadow: 1px 1px 5px #01010194;
}

.confirmacao-envio-titulo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background-color: #1e3c47;
    border-radius:  10px 10px 0 0;
    font-weight: 600;
}

.close-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0px;
    height: 0px;
    border: 1px solid white;
    border-radius: 50%;
    text-align: center;
    padding: 8px;
    font-size: 10px;
    cursor: pointer;
}

.close-btn:hover {
    border: 1px solid #345D6C;
    color: #345D6C;
}

.confirmacao-envio-container > p {
    background-color: white;
    padding: 15px;
    border-radius: 0 0 10px 10px;
    font-size: 20px;
    color: #345D6C;
    text-align: center;
    padding: 40px;
    font-weight: 300;
}



/* ###### FOOTER ####### */

footer {
    display: flex;
    background-color: #111111;
    padding: 1rem 6rem 1rem 6rem;
    justify-content: space-between;
    align-items: center;
    color: #a3a3a3;
    font-size: 0.8em;
    text-align: center;
}

footer img {
    height: 70px;
}

#footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    
}

.footer-links {
    display: inherit;
    gap: 1rem;
    align-items: center;
    font-size: 1.2em;
}

footer a {
    text-decoration: none;
    color: #345D6C;
}

/* 


    MEDIA QUERY


*/

