    body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: white;
    overflow: auto; 
    -webkit-overflow-scrolling: touch; 
    height: 100%; 
}

header {
    text-align: center;
    padding: 20px;
    background-color: #f5f5f5;
}

header img {
    max-width: 200px;
}

.banner {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
}

.menu-toggle {
    position: absolute;
    top: 10px;
    left: 20px;
    z-index: 999;
    color: rgb(203, 3, 221);
    border: none;
    padding: 10px;
    font-size: 20px;
    cursor: pointer;
}

.menu-lateral {
    position: absolute;
    top: 50px;
    left: -220px;
    width: 200px;
    background-color: #f56ae2;
    color: white;
    padding: 0px;
    transition: left 0.3s ease;
    z-index: 998;
}

.menu-lateral.show {
    left: 10px;
}

.menu-lateral a {
    display: block;
    color: white;
    padding: 20px 10px;
    text-decoration: none;
    border-bottom: 1px solid #ec09b4;
}

.titulo-showroom {
    text-align: center;
    font-size: 28px;
    color: #b265e6;
    margin-top: 40px;
    font-weight: bold;
    position: relative;
    opacity: 0;
    animation: fadeIn 1.2s ease forwards;
}

.titulo-showroom::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 3px;
    background-color: #f111cc;
    transition: width 0.4s ease;
}

.titulo-showroom:hover::after {
    width: 60%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carrusel {
    position: relative;
    display: flex;
    overflow: visible; 
    padding: 20px;
}

.carrusel-container {
    display: flex;
    transition: transform 0.3s ease;
    overflow: hidden; 
}

.producto {
    min-width: 300px;
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s;
}

.producto:hover {
    transform: scale(1.05);
}

.producto img {
    width: 100%;
    border-radius: 8px;
}

.btn-carrusel {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(185, 89, 209, 0.8);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.btn-carrusel:hover {
    background-color: #d705eb;
}

#btn-prev {
    left: 10px;
}

#btn-next {
    right: 10px;
}

form {
    padding: 20px;
    background-color: rgb(228, 171, 211);
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    margin: 40px auto;
    border-radius: 10px;
}

input,
textarea,
button {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.busqueda [type="text"]  {
    width: 40%;
}

button {
    background-color: #f107bf;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #551c7a;
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    color: rgb(4, 207, 21);
    font-size: 30px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background-color 0.3s;
    z-index: 999;
}

.whatsapp-btn:hover {
    transform: scale(1.2);
    background-color: #a9fac7;
}

body, html {
    overflow: auto; 
}

.carrusel-container {
    overflow: hidden; 
}

footer {
    margin-top: 40px;
    text-align: center;
    background-color: #fc03e7;
    color: white;
    padding: 20px;
}

.redes {
    margin-top: 10px;
}

.redes a {
    color: white;
    font-size: 20px;
    margin: 0 10px;
    text-decoration: none;
}
