body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #2A39BB, #000000);
    color: #333;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-attachment: fixed;
    background-size: cover;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-radius: 0 0 10px 10px;
    width: 80%;
    padding: 0px 20px 20px 20px;
    text-align: center;
    background: white;
}

.logo {
    margin: 20px 0;
}

.facebook-icon i {
    font-size: 30px;
    position: absolute;
    top: 10px;
    right: 10px;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 20px 0;
}

.contact-info h2 {
    width: 100%;
    margin-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
}

.contact-card {
    flex: 1 1 calc(33.333% - 20px);
    margin: 10px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-card .photo {
    width: 150px;
    height: 150px;
    background: #ddd;
    border-radius: 50%;
    margin: 0 auto 10px;
    overflow: hidden;
}

.contact-card .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-card p {
    margin: 5px 0;
}

.contact-card .name {
    font-weight: bold;
}

.contact-card .phone {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card .phone i {
    margin-right: 5px;
}

.whatsapp-button {
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.whatsapp-button:hover {
    background-color: #1EBE57;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Contenedor para la lista de productos */
.product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.product-list {
    padding: 0;
    list-style-position: inside;
    text-align: left;
    width: 100%;
}

.product-list li {
    flex: 1 1 calc(33.333% - 10px); /* 3 columnas en pantallas grandes */
    margin: 5px;
    list-style-type: square;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

/* Solo cambia el color de las viñetas */
.product-list li::marker {
    color: #2A39BB; /* Azul para las viñetas */
}

/* Línea debajo del título Productos */
.product-container h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 1.5em;
    font-weight: bold;
}

.product-container h2::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: #2A39BB;
    margin-top: 5px;
}

/* Media queries para ajustarse a pantallas medianas */
@media (max-width: 1000px) {
    .product-list li {
        flex: 1 1 calc(50% - 10px); /* 2 columnas en pantallas medianas */
    }
}

/* Media queries para pantallas pequeñas */
@media (max-width: 768px) {
    .product-list li {
        flex: 1 1 calc(50% - 10px); /* 2 columnas en pantallas pequeñas */
    }
}

/* Orientación horizontal en dispositivos móviles */
@media screen and (max-width: 600px) and (orientation: landscape) {
    .product-list li {
        flex: 0 1 calc(50% - 5px); /* 2 columnas en móviles en posición horizontal */
    }
}

/* Pantallas muy pequeñas */
@media (max-width: 600px) {
    .product-list li {
        flex: 1 1 100%; /* 1 columna en pantallas de 600px o menos */
    }
}

.brand-logos {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
    background: #f0f0f0;
    padding: 10px 0;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    align-items: center;
}

.brand-logos .logo-container {
    display: flex;
    -webkit-animation: scroll 180s linear infinite;
    animation: scroll 180s linear infinite;
}

.brand-logos img {
    max-width: 100px;
    height: auto;
    margin: 0 20px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.brand-logos img:hover {
    filter: grayscale(0%);
}

@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-50%);
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.footer {
    margin-top: 20px;
    text-align: center;
    font-size: 0.9em;
    color: #777;
}
