* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

svg {
    max-width: 100%;
    height: auto;
}

/* Exemplos de uso dos diferentes pesos */
.thin-text {
    font-weight: 100;
}

.extra-light {
    font-weight: 200;
}

.light-text {
    font-weight: 300;
}

.regular-text {
    font-weight: 400;
}

.medium-text {
    font-weight: 500;
}

.semi-bold {
    font-weight: 600;
}

.bold-text {
    font-weight: 700;
}

.extra-bold {
    font-weight: 800;
}

.black-text {
    font-weight: 900;
}

.fs-custom-gigante {
    font-size: 4rem;
}

@media (max-width: 767.98px) {
    .fs-custom-gigante {
        font-size: 2rem;
        /* 32px */
    }
}

body {
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    /* Peso padrÃƒÂ£o */
}

a {
    cursor: pointer;
    padding: 0;
    margin: 0 !important;
    color: #bdc3c7;
    text-decoration: none;
}

a:hover {
    color: #fff;
}

h1 {
    font-size: 50px;
}

.container {
    max-width: 1600px;
}

.container-fluid {
    padding: 0;
}

.menu {
    background: #081437e7;
    padding: 0;
    height: 94px;
    font-size: 18px;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

/* Estilo para as bordas de separaÃƒÂ§ÃƒÂ£o */
.navbar-nav .nav-item.border-end {
    border-right: 1px solid rgba(255, 255, 255, 0.3) !important;
}

/* Ajuste de espaÃƒÂ§amento para mobile */
@media (max-width: 767.98px) {
    .navbar-nav .nav-item {
        padding: 0.5rem 0;
        width: 100%;
        padding-left: 40px;
    }

    .menu {
        padding: 20px 0;
        height: auto;
        background: #081437;
    }

    .navbar-nav .nav-item.border-end {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* Estilo para o botÃƒÂ£o "Fale com a gente" */
.btn {
    background: #fff;
    color: #081437;
    border-radius: 20px;
    white-space: nowrap;
    padding: 5px 20px;
    z-index: 1;
}

.btn:hover {
    background: #A64B11;
    color: #FFF;
    border-radius: 20px;
}

/* VersÃƒÂ£o mobile do "Fale com a gente" */
.navbar-nav .nav-link:active {
    color: #fff !important;
}

@media (min-width: 768px) {

    .navbar-nav .nav-item {
        padding: 0rem 1rem;
    }

    .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar-nav .nav-link[href="contato"] {
        font-weight: normal;
    }

    .navbar-expand-md .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
        justify-content: space-between;
    }

    .navbar-expand-md .navbar-nav {
        flex-direction: row;
        width: 100%;
        justify-content: center;
        font-size: 20px;
    }

}

.site-footer {
    background-color: #2E496D;
    color: #ecf0f1;
    font-size: 14px;
}

.site-footer p{
    color: #ecf0f1;
}

.site-footer .container {
    max-width: 1400px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding: 40px 0 10px;
}

.footer-section {
    margin-bottom: 0px;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 15px;
}

.footer-title {
    color: #fff;
    margin-bottom: 10px;
    font-size: 24px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    color: #ecf0f1;
    margin-right: 15px;
    font-size: 18px;
}

.footer-bottom {
    height: 40px;
    background: #06101D;
    padding-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.legal-links a {
    color: #bdc3c7;
    margin-left: 15px;
    text-decoration: none;
}

.centralize-contents {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

address p {
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}


/* Estilos para os ÃƒÂ­cones SVG */
.icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    fill: currentColor;
}


/* Ajuste o espaÃƒÂ§amento dos itens com ÃƒÂ­cones */
address p,
.footer-links li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.infos {
    width: 100%;
    padding: 94px 0 0 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    font-size: 24px;
}

.infos .container {
    padding: 0 0 50px 0;
}

.infos h1 {
    color: #2E496D;
    padding: 50px 0 0 0;
}

.infos h3 {
    color: #4A4A4A;
}

.infos h4 {
    color: #4A4A4A;
    margin: 50px 0 10px 0;
}

.infos p {
    color: #4A4A4A;
    line-height: 30px;
    margin: 0 0 5px 0;
}

.infos ul {
    margin: 0;
}

.contact {
    width: 100%;
    padding: 94px 0 0 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    font-size: 24px;
}

.contact h1 {
    padding: 50px 0 0 0;
}

.form-group {
    max-width: 730px;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 22px 1%;
    align-content: flex-start;
    color: #767676;
}

.form-group .name {
    width: 100%;
}

.form-group .email {
    width: 49.4%;
}

.form-group .phone {
    width: 49.5%;
}

.form-group .enterprise {
    width: 100%;
}

.form-group .message {
    width: 100%;
}

.form-group .actions {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    font-size: 22px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input {
    background: #E7E7E7;
    border-radius: 25px;
    font-size: 16px;
    height: 37px;
    color: #767676;
}

input[type="text"],
input[type="email"] {
    width: 100%;
    padding: 0 20px;
    border: 1px solid #ddd;
    box-sizing: border-box;
}

textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    box-sizing: border-box;
    background: #E7E7E7;
    border-radius: 15px;
    font-size: 16px;
    height: 330px;
    color: #767676;
}

.required::after {
    content: " *";
    color: red;
}

.submit-btn {
    background: #767676;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 13px;
    cursor: pointer;
    font-size: 20px;
    width: 218px;
    height: 60px;
    transition: .3s ease;
}

.submit-btn:hover {
    background: #0E294D;
}

.contact .footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.contact .footer a{
    color: #0E294D;
}

button {
    color: #0E294D;
    font-size: 25px;
    text-transform: uppercase;
    font-weight: bold;
    border: 2px solid #0E294D;
    transition: .3s ease;
    padding: 20px 40px;
    border-radius: 10px;
    background: none;
}

button:hover {
    background: #0E294D;
    color: #FFFFFF;
}

#popupSucesso {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4CAF50;
    color: white;
    padding: 15px 25px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    animation: slideIn 0.5s, fadeOut 0.5s 3.5s forwards;
}

@keyframes slideIn {
    from {
        right: -100px;
        opacity: 0;
    }

    to {
        right: 20px;
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@media (max-width: 575.98px) {
    .site-footer {
        background-color: #2E496D;
        color: #ecf0f1;
        font-size: 14px;
    }

    .site-footer .container {
        max-width: 1400px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 40px;
        padding: 40px 0 10px;
    }

    .footer-section {
        margin-bottom: 0px;
    }

    .footer-logo {
        max-width: 200px;
        margin-bottom: 15px;
    }

    .footer-title {
        color: #fff;
        margin-bottom: 10px;
        font-size: 24px;
    }

    .footer-links {
        list-style: none;
        padding: 0;
    }

    .footer-links li {
        margin-bottom: 0px;
    }

    .footer-links a {
        color: #bdc3c7;
        text-decoration: none;
        transition: color 0.3s;
    }

    .footer-links a:hover {
        color: #fff;
    }

    .social-links {
        margin-top: 20px;
    }

    .social-links a {
        color: #ecf0f1;
        margin-right: 15px;
        font-size: 18px;
    }

    .footer-bottom {
        font-size: 12px;
        height: auto;
    }

    .legal-links a {
        color: #bdc3c7;
        margin-left: 15px;
        text-decoration: none;
    }

    .centralize-contents {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    address p {
        margin-bottom: 6px;
        display: flex;
        align-items: center;
        gap: 10px;
    }


    /* Estilos para os ÃƒÂ­cones SVG */
    .icon {
        width: 20px;
        height: 20px;
        vertical-align: middle;
        fill: currentColor;
    }


    /* Ajuste o espaÃƒÂ§amento dos itens com ÃƒÂ­cones */
    address p,
    .footer-links li {
        display: flex;
        align-items: center;
        margin-bottom: 0.5rem;
    }

    .infos {
        width: auto;
        padding: 80px 20px 0 20px;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        font-size: 24px;
    }

    .infos .container {
        padding: 0;
    }

    .infos h1 {
        color: #2E496D;
        padding: 20px 0 0 0;
        font-size: 38px;
    }

    .infos h3 {
        color: #4A4A4A;
    }

    .infos h4 {
        color: #4A4A4A;
        margin: 40px 0 10px 0;
    }

    .infos p {
        color: #4A4A4A;
        font-size: 20px;
        line-height: 24px;
        margin: 0 0 5px 0;
    }

    .infos ul {
        margin: 0;
        font-size: 20px;
    }

    .contact {
        width: 100%;
        padding: 94px 0 0 0;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        font-size: 24px;
    }

    .contact h1 {
        padding: 50px 0 0 0;
    }

    .form-group {
        max-width: 730px;
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 22px 1%;
        align-content: flex-start;
        padding: 20px 10px;
        color: #767676;
    }

    .form-group .name {
        width: 100%;
    }

    .form-group .email {
        width: 100%;
    }

    .form-group .phone {
        width: 100%;
    }

    .form-group .enterprise {
        width: 100%;
    }

    .form-group .message {
        width: 100%;
    }

    .form-group .actions {
        display: flex;
        width: 100%;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        font-size: 22px;
    }

    label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
    }

    input {
        background: #E7E7E7;
        border-radius: 10px;
        font-size: 16px;
        height: 50px;
        color: #767676;
    }

    input[type="text"],
    input[type="email"] {
        width: 100%;
        padding: 0 20px;
        border: 1px solid #ddd;
        box-sizing: border-box;
    }

    textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        box-sizing: border-box;
        background: #E7E7E7;
        border-radius: 10px;
        font-size: 16px;
        height: 330px;
        color: #767676;
    }

    .required::after {
        content: " *";
        color: red;
    }

    .submit-btn {
        background: #767676;
        color: white;
        padding: 10px 15px;
        border: none;
        border-radius: 13px;
        cursor: pointer;
        font-size: 20px;
        width: 218px;
        height: 60px;
        transition: .3s ease;
    }

    .submit-btn:hover {
        background: #0E294D;
    }

    .contact .footer {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    button {
        color: #0E294D;
        font-size: 25px;
        text-transform: uppercase;
        font-weight: bold;
        border: 2px solid #0E294D;
        transition: .3s ease;
        padding: 20px 40px;
        border-radius: 10px;
        background: none;
    }

    button:hover {
        background: #0E294D;
        color: #FFFFFF;
    }

    #popupSucesso {
        display: none;
        position: fixed;
        top: 20px;
        right: 20px;
        background: #4CAF50;
        color: white;
        padding: 15px 25px;
        border-radius: 5px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        animation: slideIn 0.5s, fadeOut 0.5s 3.5s forwards;
    }

}