.container {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

html {
    scroll-behavior: smooth;
}


@media (min-width: 640px) {

    /* sm */
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 768px) {

    /* md */
    .container {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

@media (min-width: 1024px) {

    /* lg */
    .container {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

@media (min-width: 1280px) {

    /* xl */
    .container {
        padding-left: 5rem;
        padding-right: 5rem;
    }
}

@media (min-width: 1536px) {

    /* 2xl */
    .container {
        padding-left: 6rem;
        padding-right: 6rem;
    }
}

/* Custom colors */
.bg-custom-fefbf3 {
    background-color: #fefbf3;
}

.text-custom-545d5f {
    color: #545D5F;
}

.text-custom-8d1c16 {
    color: #8D1C16;
}

.bg-red-900 {
    background-color: #8D1C16;
}

/* Using a specific shade for consistency */
.text-red-900 {
    color: #8D1C16;
}

.bg-red-800 {
    background-color: #8D1C16;
}

.hover\:bg-red-700:hover {
    background-color: #A0201A;
}

/* Parceiros section link styles */
.parceiros-link-seguros {
    color: #545D5F;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.parceiros-link-seguros:hover {
    color: #545D5F;
    text-decoration: underline;
    text-decoration-color: #545D5F;
}

.parceiros-link-seguros.active-carousel {
    text-decoration: underline;
    text-decoration-color: #545D5F;
}

.parceiros-link-assistencia {
    color: #8D1C16;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.parceiros-link-assistencia:hover {
    color: #8D1C16;
    text-decoration: underline;
    text-decoration-color: #8D1C16;
}

.parceiros-link-assistencia.active-carousel {
    text-decoration: underline;
    text-decoration-color: #8D1C16;
}

.parceiros-link-saude {
    color: #000000;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.parceiros-link-saude:hover {
    color: #000000;
    text-decoration: underline;
    text-decoration-color: #000000;
}

.parceiros-link-saude.active-carousel {
    text-decoration: underline;
    text-decoration-color: #000000;
}

/* Menu Link Styles */
.menu-link {
    color: #545D5F;
    text-transform: uppercase;
    position: relative;
    transition: color 0.2s;
    font-size: 1.125rem;
    /* text-lg */
}



@media (min-width: 1024px) {

    /* lg */
    .menu-link {
        font-size: 1rem;
        /* text-xl */
    }
}

.menu-link-active {
    color: #8D1C16;
    text-transform: uppercase;
    position: relative;
    transition: color 0.2s;
    font-size: 1.125rem;
}


.menu-link:focus {
    color: #8D1C16;
}


.menu-link.active::after,
.menu-link:focus::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: #8D1C16;
    border-radius: 2px;
}

.menu-link:hover {
    color: #8D1C16;
}

.menu-link-active::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: #000;
    border-radius: 2px;
}

.menu-link:hover::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: #000;
    border-radius: 2px;
}