
@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&display=swap');

body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f4f4f4;
}
.header, .footer {
    width: 100%;
    max-width: 720px;
    background-color: #fff;
    padding: 15px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin: 5px 0;
    font-family: "Lexend Deca", serif;

}
.header .button-container {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.header button {
    padding: 10px 15px;
    background-color: #4d8f63;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}
.header button:hover {
    background-color: #636363;
}
.container {
    max-width: 720px;
    width: 100%;
    overflow-x: hidden;
    white-space: nowrap;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 4px 10px rgba(252, 252, 252, 0.1);
    border-radius: 10px;
    padding: 10px;
    position: relative;
}
.catalogo {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}
.catalogo::-webkit-scrollbar {
    display: none;
}
.catalogo img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    scroll-snap-align: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}
.indicator-container {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 10px;
}
.indicator {
    width: 10px;
    height: 10px;
    background: rgba(173, 165, 165, 0.6);
    border-radius: 50%;
    transition: background 0.3s;
}
.indicator.active {
    background: rgb(187, 116, 116);
}