* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    font-family: "Montserrat", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    color: #000000;
    font-size: 16px;
    position: relative;
}

header {
    position: fixed;
    top: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    z-index: 100;
    transition: height 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: #ffffff3d;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    width: fit-content;
    flex-shrink: 0;
    padding: 0;
}

.logo {
    width: 100%;
    height: auto;
    margin: 0;
    display: block;
    max-width: 300px;
    padding: 20px 30px;
    transition: transform 0.3s ease;
}

.logo-link:hover .logo {
    transform: scale(1.1);
}

.logo-link.touch-feedback-active .logo {
    transform: scale(1.05);
}

header nav ul {
    display: flex;
    gap: 20px;
    margin-right: 30px;
    margin-top: 3px;
    align-items: center;
}

nav a {
    color: #003d83;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
    transform: scale(1);
    display: inline-block;
}

nav a:hover {
    color: #00b7ff;
    transform: scale(1.05);
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: #00b7ff;
    transition: width 0.3s ease;
}


nav a:hover::after {
    width: 100%;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-link i {
    font-size: 28px;
    line-height: 0;
}

.whatsapp-link span {
    font-size: 20px;
    font-weight: 500;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 11;
}

.menu-toggle span {
    height: 3px;
    width: 30px;
    background-color: #003d83;
    border-radius: 2px;
    transition: all 0.3s ease;
}

#servicos {
    scroll-margin-top: 0px;
}

#sobre,
#contato,
#endereco {
    scroll-margin-top: 130px;
}

.hero-section {
    margin-top: 104px;
    height: 86vh;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 2vw;
    color: #020202;
    position: relative;
    background-image: url('background-purifiltros-belem-02.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.hero-background-fade-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    opacity: 0;
    z-index: 2;
}

.hero-content {
    position: relative;
    width: 50%;
    z-index: 6;
    text-align: center;
    align-items: center;
    margin-top: 50px;
    padding-left: 10px;
    transform: translateY(-50px);
}

.hero-content h1 {
    font-size: 2.5rem;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
    width: 90%;
    color: #003050;
    text-align: center;
    border-radius: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.438);
}

.hero-content p {
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #003050;
    text-align: justify;
    width: 90%;
    border-radius: 20px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}


.hero-content .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    opacity: 1;
    transform: scale(1);
    color: #ffffff;
    background: linear-gradient(90deg, #016dd3, #000261);
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.6s ease, background 0.3s ease;
    display: inline-block;
}

.active .btn {
    transform: scale(1);
    opacity: 1;
}


.hero-content h1,
.hero-content p,
.hero-content .btn {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hero-content.visible h1,
.hero-content.visible p,
.hero-content.visible .btn {
    opacity: 1;
    transform: translateY(0);
}

.hero-content.visible p {
    transition-delay: 0.2s;
}

.hero-content.visible .btn {
    transition-delay: 0.4s;
}

.container {
    height: 100vh;
    position: relative;
    overflow: hidden;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    background-color: #f8f9fa;
}

.list {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.item {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 0 40px;
    opacity: 0;
    transform: translateX(100vw);
    transition: transform 0.7s ease-in-out, opacity 0.7s ease-in-out;
    z-index: 2;
}

.active {
    opacity: 1;
    transform: translateX(0);
}

.product-img {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    max-width: 500px;

}

.product-img img {
    width: 80%;
    height: 80%;
    max-width: 450px;
    transform: translateX(200px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
    transition-delay: 0.5s;

}

.active .product-img img {
    transform: translateX(0);
    opacity: 1;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 900px;
    padding-left: 10px;
}

.product-tag {
    font-size: 1.2rem;
    text-transform: uppercase;
    color: #0047AB;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 10px;
    transform: translateX(200px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
    transition-delay: 0.5s;
}

.active .product-tag {
    transform: translateX(0);
    opacity: 1;
}

.product-name {
    font-size: 2.5rem;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    margin-bottom: 10px;
    transform: translateX(400px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
    transition-delay: 0.5s;
}

.active .product-name {
    transform: translateX(0);
    opacity: 1;
}

.description {
    font-size: 1.2rem;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 500px;
    text-align: justify;
    opacity: 0;
    transform: translateX(600px);
    transition: transform 0.6s ease, opacity 0.6s ease;
    transition-delay: 0.5s;
}

.active .description {
    transform: translateX(0);
    opacity: 1;
}

.btn {
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 30px;
    border: none;
    color: #ffffff;
    background: linear-gradient(90deg, #016dd3, #000261);
    cursor: pointer;
    text-decoration: none;
    transform: translateX(800px);
    transition: transform 0.6s ease, opacity 0.6s ease, background 0.3s ease;
    transition-delay: 0.5s;
}



.active .btn:hover {
    transform: translateX(0);
}

.arrows {
    position: absolute;
    width: 90%;
    display: flex;
    justify-content: space-between;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.arrow-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    color: #fff;
    background-color: rgb(112, 112, 112);
    border: 1px solid #ffffff;
}

.arrow-btn:hover {
    background-color: #089cff;
    border-color: #ffffff;
}

.indicators {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15%;
    z-index: 5;
}

.numbers {
    font-family: "Orbitron", sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.2);
}

.dots {
    display: flex;
    gap: 10px;
    top: 10px;
}

.dot {
    width: 40px;
    height: 4px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 2px;
}

.dot.active {
    background-color: #089cff;
}

.about-us-section {
    display: flex;
    min-height: 82vh;
    padding: 50px 30px;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 2px;
    background-color: #ffffff;
}

.about-us-logo {
    max-width: 350px;
    width: 350%;
    height: auto;
    margin-bottom: 30px;
}

.about-us-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #000000;
    margin-bottom: 20px;
}

.about-us-section p {
    font-size: 1.5rem;
    color: #000000;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 40px auto;
    text-align: justify;
}


.address-section {
    height: 90vh;
    padding: 30px 30px;
    text-align: center;
    margin-bottom: 1px;
}

.address-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #000000;
    margin-bottom: 10px;
}

#endereco-link {
    display: inline-block;
    color: #0047AB;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0px;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

#endereco-link:hover {
    color: #00b7ffb6;
}

#endereco-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: #00b7ffb6;
    transition: width 0.3s ease;
}

#endereco-link:hover::after {
    width: 100%;
}

.map-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 410px;
    border-radius: 15px;
    top: 20px;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.map-overlay::after {
    content: 'Clique aqui para interagir com o mapa';
    font-weight: 600;
}

.map-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.contact-section {
    height: auto;
    min-height: 90vh;
    padding: 30px 30px;
    text-align: center;
    background-color: #f8f9fa;
}

.contact-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #000000;
    margin-bottom: 10px;
}

.contact-section p {
    font-size: 1.1rem;
    color: #000000;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.contact-cards {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 60px;
    width: 100%;
    margin-top: 10px;
}

.contact-card {
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.808);
    min-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgb(0, 8, 77), 0 0 5px rgb(0, 71, 223);
}

.contact-card h3 {
    font-family: 'Playfair Display', serif;
    color: #000000;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.contact-card p {
    color: #000000;
}

.contact-card .btn {
    opacity: 1;
    transform: none;
    margin-top: 20px;
    display: inline-block;
}

.social-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    gap: 15px;
}

.social-bar a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    color: #ffffff;
    font-size: 22px;
    text-decoration: none;
    background-color: #015497;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-bar a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.social-bar a[href*="facebook.com"]:hover {
    background-color: #004eb4;
}

.social-bar a[href*="wa.me"]:hover {
    background-color: #25D366;
}

.social-bar a[href*="instagram.com"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

footer {
    padding: 40px 20px;
    padding-bottom: 80px;
    text-align: center;
    color: #ffffff;
    background-color: #015497;
}

.legal-page-content {
    background-color: #ffffff;
    color: #333333;
    max-width: 800px;
    margin: 0 auto;
    padding: 150px 20px 50px 20px;
}

.legal-page-content h1 {
    font-family: 'Playfair Display', serif;
    color: #0047AB;
    font-size: 2.5rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #dddddd;
    padding-bottom: 10px;
}

.legal-page-content h2 {
    font-family: 'Playfair Display', serif;
    color: #000000;
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-page-content p,
.legal-page-content li {
    font-size: 1rem;
    line-height: 1.8;
    text-align: justify;
    color: #333333;
}

.legal-page-content ul {
    list-style-type: disc;
    padding-left: 20px;
}

.legal-page-content p em {
    color: #555555;
    font-style: italic;
}

.legal-page-content a {
    color: #0047AB;
    text-decoration: underline;
}

.legal-page-content a:hover {
    color: #089cff;
}

.footer-links {
    margin-bottom: 20px;
    font-size: 90%;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 10px;
    transition: text-decoration 0.3s ease;
}

.footer-links a:hover {
    text-decoration: underline;
}

#consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #3f3f3f;
    border-top: none;
    padding: 20px 30px;
    z-index: 2000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transform: translateY(0);
    transition: transform 0.5s ease-in-out;
}

#consent-banner.hidden {
    transform: translateY(150%);
}

.consent-text {
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.6;
}

.consent-text a {
    color: #089cff;
    text-decoration: underline;
    font-weight: 600;
}

.consent-text a:hover {
    color: #fff;
}

#accept-consent-btn {
    flex-shrink: 0;
    opacity: 1;
    transform: none;
}

@media (max-width: 768px) {

    .logo-link {
        max-width: none;
        display: block;
    }

    .logo {
        width: 100%;

    }

    header {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        height: 14%;
        transition: background-color 0.3s ease;
    }

    header.open {
        width: 100%;
        height: auto;
        background-color: #151b2b;
        padding-bottom: 20px;
        height: auto;
    }

    header nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 1px;
        padding: 1px 0px;
        margin-top: 1px;
    }

    header.open nav {
        display: flex;
    }

    header nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 10px;
        padding: 1px 0;
        padding-left: 35px;
    }

    header nav ul li a {
        text-align: center;
        font-size: 1rem;
        color: #ffffff;
    }

    header.open nav ul li:not(:last-child) {
        width: 80%;
        text-align: center;
        border-bottom: 3px solid rgba(129, 129, 129, 0.514);
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    nav a:hover {
        color: #00b7ff;

    }

    nav a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        height: 2px;
        width: 0;
        background-color: #00b7ff;
        transition: width 0.3s ease;
    }

    .menu-toggle {
        display: flex;
        position: absolute;
        top: 45px;
        right: 25px;
        margin-top: -1%;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    #servicos,
    #sobre,
    #proposito,
    #contato,
    #endereco {
        scroll-margin-top: 90px;
    }

    .hero-section {
        margin-top: 100px;
        height: 90vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 20px;
        box-sizing: border-box;
        bottom: 0;
    }

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        background: linear-gradient(rgba(21, 27, 43, 0.6), rgba(21, 27, 43, 0.3)), url('background-purifiltros-belem-02.png');
        background-size: cover;
        background-position: center;
        filter: brightness(60%) contrast(90%);
    }

    .hero-content {
        position: absolute;
        top: 30px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        width: 100%;
        text-align: center;
        align-items: center;
        color: #ffffff;
        font-weight: 800;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9);
    }

    .hero-content p {
        font-size: 1.2rem;
        justify-content: center;
        width: 90%;
        text-align: center;
        color: #ffffff;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.9);
    }

    .highlight {
        color: #ffffff;
        font-weight: 700;
    }

    .hero-content .btn {
        width: 70%;
        max-width: 300px;
        padding: 15px 10px;
        text-align: center;
        box-sizing: border-box;
    }

    .container {
        height: auto;
        min-height: 90vh;
        padding: 0px 15px 20px 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 0;
        box-sizing: border-box;
    }

    .item {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        padding: 0;
        text-align: center;
        opacity: 0;
        transform: translateX(100vw);
        transition: transform 0.7s ease-in-out, opacity 0.7s ease-in-out;
        z-index: 2;
    }

    .active {
        opacity: 1;
        transform: translateX(0);
    }

    .product-img {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 1px;
    }

    .product-img img {
        width: 100%;
        height: 100%;

    }

    .active .product-img img {
        transform: translateX(0);
        opacity: 1;

    }

    .content {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 0;
        margin: 0;
    }

    .product-tag {
        font-size: 0.9rem;
        font-weight: 700;
        margin-bottom: 4px;
    }

    .active .product-tag {
        transform: translateX(0);
        opacity: 1;
    }

    .product-name {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 8px;
        max-width: 95%;
    }

    .active .product-name {
        transform: translateX(0);
        opacity: 1;
    }

    .description {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 16px;
        max-width: 90%;
    }

    .active .description {
        transform: translateX(0);
        opacity: 1;
    }

    .btn {
        font-size: 0.9rem;
        padding: 12px 24px;
    }

    .active .btn {
        transform: translateX(0);
        opacity: 1;
    }

    .arrows {
        width: 90%;
        top: 42%;
    }

    .arrow-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
        color: #fff;
        background-color: rgb(112, 112, 112);
        border: 1px solid #ffffff;
    }

    .arrow-btn:hover {
        background-color: rgb(112, 112, 112);
        border: 1px solid #ffffff;
    }

    .indicators {
        bottom: 40px;
    }

    .dot {
        width: 25px;
    }

    .about-us-section {
        top: 0;
        margin-top: 0;
        padding-top: 10;
        margin-bottom: 0px;
    }

    .about-us-section h2 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .about-us-section p {
        font-size: 1rem;
    }

    .address-section {
        height: auto;
        padding: 60px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-top: 15px;
        padding-top: 35px;
        bottom: 100px;
        margin-bottom: 30px;
    }

    .address-section h2 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    #endereco-link {
        margin-bottom: 15px;
        font-size: 0.9rem;
    }

    .map-container {
        height: 280px;
        top: 15px;
    }

    .map-overlay::after {
        font-size: 1rem;
        padding: 10px;
    }

    .contact-section {
        width: 100%;
        height: auto;
        padding: 60px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-top: 5px;
        align-items: center;
    }

    .contact-section h2 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .contact-section p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .contact-cards {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 15px;
    }

    .contact-card {
        width: 95%;
        max-width: 320px;
        padding: 20px;
    }

    .contact-card h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .contact-card p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .contact-card .btn {
        width: 70%;
        padding: 15px 20px;
        font-size: 0.9rem;
    }

    footer {
        padding: 40px 20px;
        padding-bottom: 60px;
    }

    footer p,
    footer P {
        font-size: 0.8rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .footer-links {
        margin-bottom: 15px;
    }

    .footer-links a {
        font-size: 0.8rem;
    }

    .social-bar {
        bottom: 20px;
        gap: 10px;
    }

    .social-bar a {
        width: 45px;
        height: 45px;
        font-size: 25px;
    }



    .arrow-feedback-active {
        background-color: rgba(10, 216, 223, 0.89) !important;
        border-color: #00f7ff !important;
    }

    .facebook-feedback-active {
        background-color: #1877F2 !important;
    }

    .whatsapp-feedback-active {
        background-color: #25D366 !important;
    }

    .instagram-feedback-active {
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    }

    #consent-banner {
        flex-direction: column;
        padding: 15px 10px;
        text-align: center;
    }

    .consent-text {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }

    #accept-consent-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
}