
/* Estilos generales */
body {
    font-family: sans-serif;
    margin: 0;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

.top-banner {
    background-color: black;
    color: white;
    text-align: center;
    padding: 0.5rem;
}

/* Encabezado */
header {
    border-bottom: 1px solid #eee;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo a {
    font-weight: bold;
    font-size: 1.5rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-icons a {
    margin-left: 1rem;
}

/* Sección de héroe */
.hero {
    background-image: url('https://via.placeholder.com/1500x600');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 6rem 2rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.btn {
    background-color: #333;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
}

/* Productos */
.products {
    padding: 4rem 2rem;
    text-align: center;
}

.products h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.product-card {
    border: 1px solid #eee;
    padding: 1.5rem;
    border-radius: 5px;
}

.product-card img {
    max-width: 100%;
    margin-bottom: 1rem;
}

.product-card h3 {
    font-size: 1.25rem;
}

.product-card span {
    font-weight: bold;
}

/* Pie de página */
footer {
    background-color: #f8f8f8;
    padding: 3rem 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.social-links a {
    margin-right: 1rem;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
    margin-top: 2rem;
}

/* Media queries para diseño responsivo */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Ocultar para un menú de hamburguesa */
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}
