@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('menu.css');
@import url('testimonials.css');
@import url('footer.css');

:root {
   --color-primary-1: #f2f2fc;
}
*{

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

body{
    overflow-x: hidden;
    background-color: #f2f2fc;
}

section {
    padding: 80px 8%;
}

.btn-default {
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2d538b;
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 600;
    box-shadow: 0px 0px 5px 2px rgb(32, 83, 185);
    cursor: pointer;
    transition: background-color .3s ease;
}

.btn-default:hover {
    background-color: #d40808;
}

.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: #fff;
    font-size: 1.25rem;
    border-radius: 10px;
    text-decoration: none;
    color: #1a1818;
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow .3s ease;
}

.social-media-buttons a:hover {
    box-shadow: 0px 0px 12px 8px rgba(0, 0, 0, 0.1);
}

.section-title {
    color: #021c44;
    font-size: 1.563rem;
}

.section-subtitle {
    font-size: 2.1875rem;
}
.voltar-menu {
    text-align: center;
    margin-top: 30px;
}

.voltar-menu button {
    background-color: #15224b;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.voltar-menu button:hover {
    background-color: #ad0601;
}

#coopyright {
    font-size: 10px;
}

html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }


