body {
    font-size: 18px;
    font-family: 'Inter', sans-serif;
}

h1, h2, h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700; 
}

p {
    font-size: 1em;
    font-family: 'Inter', sans-serif;
    font-weight: 400; 
}



/********************************************
    Header
********************************************/

    #masthead #nav-main{
        min-height: 116px;
    }

    #masthead #nav-main .navbar-brand{
        margin: 0;
        padding: 0;
    }

    #masthead #nav-main .navbar-nav li{
        margin-right: 30px;
    }

    #masthead #nav-main .navbar-nav li a{
        padding: 0 0 6px;
        position: relative;
        font-size: 16px;
        font-weight: 600;
        color: #1E1E1E;
    }

    #masthead #nav-main .navbar-nav li a:hover{
        color: #FC393F;
    }

    #masthead #nav-main .navbar-nav li a::before{
        content: '';
        position: absolute;
        bottom: 4px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #FC393F;
        visibility: hidden;
        transform: scaleX(0);
        transition: all 0.3s ease-in-out;
    }

    #masthead #nav-main .navbar-nav li a:hover::before{
        visibility: visible;
        transform: scaleX(1);
    }

    #masthead #nav-main .navbar-nav li.current-menu-item a{
        color: #FC393F;
        
    }

    #masthead #nav-main .navbar-nav li.current-menu-item a::before{
        visibility: visible;
        transform: scaleX(1); 
    }



    /******************************************** 
        Sticky Header
    ********************************************/

        .sticky-top {
            position: sticky;
            top: 0;
            z-index: 1030;
            transition: all 0.3s ease;
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .sticky-top.scrolled {
            padding-top: 5px;
            padding-bottom: 5px;
        }

        #masthead.sticky-top.scrolled #nav-main{
            min-height: 55px;
        }

        #masthead.sticky-top.scrolled #nav-main .navbar-brand img{
            max-height: 28px;
            width: auto;
        }

        @media (max-width: 1200px) {
            #atiende-amalia .atiende-background-wrapper-top svg {
                width: 120%;
                margin-left: -10%;
            }
        } 



/********************************************
    Footer
********************************************/

footer{
    border-top: 1px solid #D9D9D9;
}

footer .navbar-brand{
    margin: 0 auto 40px;
    display: flex;
    justify-content: center;
    max-height: 50px;
}

footer .navbar-brand img{
    max-height: 35px;
}

.footer-menu-columns{
    padding: 80px 0 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #fff;
}

.footer-menu-columns h5.footer-menu-column-title{
    margin: 0 0 25px;
    font-size: 16px;
    font-weight: 600;
    color: #FC393F;
}

.footer-menu-columns ul{
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    list-style: none;
}

.footer-menu-columns ul li{
    margin-bottom: 10px;
    line-height: 1.15em;
}

.footer-menu-columns ul li a{
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: #1E1E1E;

    transition: all 0.3s ease;
}

.footer-menu-columns ul li a:hover,
.footer-menu-columns ul li a:focus{
    color: #888888;

    transition: all 0.3s ease;
}

footer .bg-body-tertiary{
    padding: 0 0 50px !important;
    border: 0 !important;
}

.bootscore-copyright{
    font-size: 16px;
    font-weight: 400;
    color: #1E1E1E;
}