@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url(header.css);
@import url(home.css);
@import url(clientes.css);
/* @import url(servicos.css); */
@import url(footer.css);

:root{
    --color-primary: rgb(77, 105, 230);
    --color-primary2:  rgba(0, 47, 255, 0.288);
}


*{
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth; /*deixando roalgem suave*/
}

/* body{
    background-color: rgba(0, 26, 255, 0.103);
} */

section{
    padding: 28px 8%;

}

.btn-default{
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(255, 255, 255);
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 600;
    box-shadow: 1px 1px 10px 2px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color .3s ease;
    color: rgba(0, 62, 197);
}

.btn-default a{
    color: rgba(0, 62, 197);
    text-decoration: none;
}

.btn-default:hover {
    background-color: rgb(131, 161, 245);
    color: black;
}



.social-media-buttons{
    display: flex;
    gap: 18px;
}

.social-media-buttons a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 40px;
    background-color: rgba(29, 78, 212, 0.76);
    font-size: 1.25rem;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.068);
    transition: background-color .3s ease;

}

.social-media-buttons a:hover{
    color: black;    
    background-color: rgb(29, 78, 212);
    box-shadow: 0px 0px 12px 8px rgba(0, 0, 0, 0.24);
}

.section-title{
    color: rgba(0, 62, 197);
    font-size: 1.569rem;
}

.section-subtitle{
    font-size: 2.187rem;
}