.roboto-thin {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
}

.roboto-extra-light {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
}

.roboto-light {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

.roboto-regular {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.roboto-medium {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.roboto-semibold {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.roboto-bold {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.roboto-extrabold {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
}

.roboto-black {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto', sans-serif;
    font-optical-sizing: auto;
}

main {
    position: relative;
}

body {
    overflow-x: hidden;
    font-family: 'Roboto', sans-serif;
}

.btn.cta {
    padding: 6px 36px;
    font-size: 18px;
    font-weight: 500;
    border: 2px solid #FFFFFF;
    border-radius: 5px;
    min-width: 212px;

    &:hover {
        background-color: #FFFFFF;
        color: #2F2B60;
        text-decoration: none;
    }
}

section {
    span {
        color: #B09B4A;
        text-transform: uppercase;
        font-weight: 500;
        line-height: 18px;
        margin-bottom: 10px;
        font-size: 24px;
    }

    h2 {
        color: #2F2B60;
        font-size: 36px;
        line-height: 58px;
        font-weight: 600;
    }
}

header {
    position: fixed;
    background-color: #FDFDFD;
    width: 100%;
    top: auto;
    z-index: 99999;
    transition: all 0.3s ease;

    nav {
        min-height: 98px;
    }

    .navbar-brand {
        img {
            width: 10svw;
            height: auto;
        }
    }

    .collapse.navbar-collapse {
        gap: 32px;
    }

    .menu-items {
        a {
            color: #2F2B60;
            line-height: 24px;
            font-size: 18px;
            text-align: center;
            padding: 0 16px;

            &.active {
                font-weight: 600;
                position: relative;

                &::after {
                    content: '';
                    position: absolute;
                    width: 50%;
                    height: 3px;
                    background-color: #B09B4A;
                    bottom: -10px;
                    left: 25%;
                }
            }
        }
    }

    .redes {
        gap: 32px;

        a {
            line-height: normal;
            padding: 0;

            img {
                width: 1.2svw;
            }
        }
    }

    .btn.cta {
        line-height: normal;
        border-color: #2F2B60;
        color: #2F2B60;

        &:hover {
            background-color: #2F2B60;
            color: #FFFFFF;
            text-decoration: none;
        }
    }
}

footer {
    background-color: #2F2B60;
    color: #FFFFFF;
    padding: 48px 0 24px 0;
    text-align: center;

    .menu-footer {
        padding-bottom: 36px;
    }

    .logo-cover {
        background-color: #FFFFFF;
        border-radius: 10px;
    }

    p {
        margin: 0;
        font-size: 15px;
    }

    ul {
        padding: 0;
        line-height: 35px;

        li {
            list-style-type: none;

            a {
                font-size: 16px;
            }
        }
    }

}

@media (max-width: 1400px) {
    header {
        .redes {
            gap: 16px;
        }

        .menu-items {
            a {
                padding: 0 10px;
            }
        }
    }
}

@media (max-width: 1200px) {
    header {
        .navbar-brand {
            img {
                width: auto;
            }
        }

        .btn.cta {
            min-width: auto;
            padding: 6px 24px;
        }

        .redes {
            gap: 16px;

            a {
                img {
                    width: 1.8svw;
                }
            }
        }

        .menu-items {
            a {
                font-size: 14px;
                padding: 0 8px;
            }
        }
    }
}

@media (max-width: 768px) {
    header {
        .redes {
            gap: 16px;

            a {
                img {
                    width: auto;
                }
            }
        }

        .menu-items {
            a {
                font-size: 18px;
            }
        }
    }
}