body {
    font-family: 'Cookie';
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: italic;
}

header {
    background-color: pink;
    padding: 10px 0;
    text-align: center;
}

nav.top-menu {
    text-align: center;
    background-color: yellow;
}

nav.top-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav.top-menu li {
    display: inline-block;
    margin-right: 20px;
}

nav.top-menu a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-size: 16px;
    padding: 10px;
}

.productos{
  display: flex;
}

.producto img {
    max-width: 250px;
    height: auto;
    margin-bottom: 10px;
}

.imagenModal {
    max-width: 450px;
    height: auto;
    margin-bottom: 10px;
}

footer {
    background-color: pink;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 20px; /* Ajusta según sea necesario */

}

.redes-sociales {
    list-style: none;
    padding: 0;
    text-align: center;
    display: flex; /* Cambio a flexbox */
    justify-content: center; /* Centra los elementos en el contenedor flex */
}

.redes-sociales li {
    display: inline;
    margin-right: 10px;
}

.redes-sociales img {
    width: 50px; /* Ajusta el tamaño según tus necesidades */
    height: 50px; /* Ajusta el tamaño según tus necesidades */
    display: block;
    /* margin: 0 auto;  Quitar el margen */
}

.container-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-title {
    display: flex;
    align-items: center;
}

.logo {
    width: 100px;
    height: auto;
    margin-right: 10px;
}

.container {
    text-align: center;
}


.fila-productos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.producto {
    width: 23%;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.producto img {
    max-width: 100%;
    height: auto;
}

section {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    padding: 20px;
    width: 80%;
    max-width: 1500px;
    text-align: center;
    border: 2px solid #ddd;
}

form {
    display: grid;
    gap: 15px;
}

label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type="submit"] {
    background-color: yellow;
    color: black;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

input[type="submit"]:hover {
    background-color: pink;
}

h2 {
    text-align: center;
    font-size: 2rem;
    padding-top: 50px;
}

.slider-frame {
    width: 500px;
    height: 300px; /* Establece la altura deseada para todas las imágenes */
    margin: 50px auto 0;
    overflow: hidden;
}

.slider-frame ul {
	display: flex;
	padding: 0;
	width: 400%;
	overflow: hidden;
	animation: slide 20s infinite alternate ease-in-out;
}

.slider-frame li {
	width: 25%;
	list-style: none;
}

.slider-frame img {
    width: 100%;
    height: auto;
}

@keyframes slide {
	0% {margin-left: 0;}
	20% {margin-left: 0;}

	25% {margin-left: -100%;}
	45% {margin-left: -100%;}

	50% {margin-left: -200%;}
	70% {margin-left: -200%;}

	75% {margin-left: -300%;}
	100% {margin-left: -300%;}
}

small{
  font-size: 15px;
  color: #BABABA;
}
