body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


header {
	position: fixed;
	height: 50px;
    background-color: #fff;
    color: #000;
    display: flex;
    justify-content: space-between;
	vertical-align: middle;
    padding: 10px 20px;
    width: 100%;
    top: 0;
    left: 5px;
    z-index: 1000;
}
header ul
{
	display: flex;
	top:0px;
	align-items: center; /* Alinea verticalmente los elementos */
    list-style: none;
}
.logo {
    height: 40px;
	padding: 10px;
}

.menu-toggle {
    display: none;
    background-color: #fff;
    margin-left: 10px;
    height: 40px;
    color: #333;
    border: none;
    padding: 10px;
    cursor: pointer;
}
.logo_carrito
{
    background-color: #fff;
    margin-right: 50px;
    height: 40px;
    color: #333;
    border: none;
    padding: 10px;
    cursor: pointer;
}
.linea {
    
    margin-top: 100px; /* Ajuste para que la línea esté justo debajo del header */
    z-index: 1000;
}
nav
{
	position: fixed;
	background-color: #fff;
    color: #000;
    display: flex;
    justify-content: space-between;
	vertical-align: middle;
    padding: 5px 5px;
    width: 100%;
    top: 50px;
    left: 0px;
    z-index: 999;
	border-bottom: 1px solid #333;
}
nav ul {
    list-style: none;
    display: flex;
    color: #333;
    flex-wrap: wrap;
	 justify-content: space-between;
}
nav ul li
{
	padding:3px;
}
nav a {
    color: #000;
    text-decoration: none;
}

main {
    padding: 2rem;
    margin-top: 90px;
}

section {
    margin-bottom: 2rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.product {
    border: 1px solid #ccc;
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
	vertical-align: bottom;
}
.slides {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.slide {
    min-width: 100%;
    transition: transform 0.5s ease;
}

.slide img {
    width: 100%;
    height: auto;
}

.navigation-manual {
    position: absolute;
    width: 100%;
    margin-top: -40px;
    display: flex;
    justify-content: center;
}

.manual-btn {
    border: 2px solid #40d3dc;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: 1s ease;
}

.manual-btn:not(:last-child) {
    margin-right: 40px;
}

.manual-btn:hover {
    background: #40d3dc;
}

.formulario-contacto {
    max-width: 500px;
    width: 100%;
    padding: 3px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.formulario-contacto h2 {
    text-align: center;
    color: #333333;
}

.formulario-contacto input,
.formulario-contacto textarea {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border: 1px solid #dddddd;
    border-radius: 5px;
    box-sizing: border-box;
}

.formulario-contacto input:focus,
.formulario-contacto textarea:focus {
    border-color: #28a745;
}

.formulario-contacto button {
    width: 100%;
    padding: 15px;
    background-color: #28a745;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.formulario-contacto button:hover {
    background-color: #218838;
}
img {
    max-width: 100%;
    height: auto;
}
.product button {
    background-color: #28a745;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 5px;
}

.product button:hover {
    background-color: #218838;
}
.rrss img {
    filter: invert(0%);
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 5px;
}

.rrss img:hover {
    filter: invert(100%);
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 5px;

}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 0rem;
    position: static;
    width: 100%;
    bottom: 0;
}
footer ul{
	list-style-type: none;
}
footer a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

/* Media Queries */
@media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

    .product {
        margin-bottom: 1rem;
    }

    footer {
        position: static;
    }
		.rrss img
	{
		width: 30px;
	}
}
@media (max-width: 480px) {
    body {
        padding: 1rem;
    }

    nav{
       display: none;
       margin-top: 0px;
       margin-left: 0px;
            }
            .menu-toggle {
                display: block;
            }

    main {
        padding: 1rem;
    }

    .product {
        padding: 0.5rem;
    }
	.rrss img
	{
		width: 30px;
	}
}