       body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f9;
            margin: 0;
            padding: 0;
            text-align: center;
        }
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #4CAF50;
            color: white;
            padding: 1px 100;
            z-index: 1000;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            padding: 10px 10px 10px; /* Padding top increased to 100px */
        }
        .store-box {
    background-color: white;
    border: 2px solid #4CAF50;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    width: 360px;
    text-align: center; /* Centra el contenido del contenedor */
    transition: transform 0.3s;
}
.store-box:hover {
    transform: scale(1.05);
}
.store-box h2 {
    margin-top: 0;
    color: #4CAF50;
}
.store-box p {
    margin: 10px 0;
}
.store-button {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 5px 10px; /* Tama帽o reducido */
    text-decoration: none;
    border-radius: 4px;
    margin: 5px 2px; /* Espaciado reducido entre botones */
    transition: background-color 0.3s ease, color 0.3s ease;
}
.store-button1 {
    display: inline-block;
    background-color: #75ACFA;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    margin: 10px auto; /* Centra el bot贸n azul */
}
.store-button:hover {
    background-color: #3b8f3b;
}
.store-button1:hover {
    background-color: #4b9eea;
}
.ad-container {
    width: 100%;
    margin-top: 20px;
    text-align: center;
    background-color: #ffffff;
    padding: 10px;
    border: 1px dashed #fff;
    border-radius: 8px;
}
		.pagination {
            margin: 20px 0;
        }
        .pagination a {
            text-decoration: none;
            color: #4CAF50;
            font-size: 18px;
            margin: 0 10px;
        }
        .pagination a:hover {
            text-decoration: underline;
        }
		.search-container {
            margin: 150px 0 20px; /* Adjust margin top for fixed header */
        }
        .search-form {
            display: flex;
            justify-content: center;
            gap: 10px;
        }
        .search-form-e {
            display: flex;
            justify-content: center;
            gap: 10px;
        }
        .search-input {
            padding: 10px;
            font-size: 16px;
            width: 80%;
            max-width: 600px;
            border-radius: 4px;
            border: 1px solid #ddd;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        .search-button {
            padding: 10px 20px;
            font-size: 16px;
            border: none;
            border-radius: 4px;
            background-color: #4CAF50;
            color: white;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .search-button-e {
            padding: 10px 20px;
            font-size: 16px;
            border: none;
            border-radius: 4px;
            background-color: #75ACFA;
            color: white;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .search-button:hover {
            background-color: #45a049;
        }
  .contenedor {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px;
}

.publicidad1 {
    width: 200px; /* Ajusta el tamaño de la publicidad según necesidad */
    height: 300px; /* Altura de referencia, cámbiala si es necesario */
    background-color: #f1f1f1; /* Color de fondo para visualizar */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
}
.publicidad2 {
    width: 200px; /* Ajusta el tamaño de la publicidad según necesidad */
    height: 300px; /* Altura de referencia, cámbiala si es necesario */
    background-color: #f1f1f1; /* Color de fondo para visualizar */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: right;
}

.botones {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 20px;
    font-size: 16px;
}