body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 1rem;
  background: #fff8f0;
}
  header {
  text-align: center;       
}
h1 {
  text-align: center;
  color: #d14d72;
}
nav {
  font-family: Arial, sans-serif;  
  text-align: center;
  word-spacing: 30px;
  padding: 10px;
  background-color: #fae3f1
}            
h2{
  text-align: center;
  color: #d14d72;      
}
u{
  color:blue;
}    
.catalogo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.producto {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 1rem;
  text-align: center;
  transition: transform 0.3s;
}
.producto:hover {
  transform: translateY(-5px);
}
.producto img {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}
.producto h2 {
  font-size: 1.2rem;
  color: #333;
  margin: 0.5rem 0;
}
.producto p {
  font-size: 0.95rem;
  color: #666;
}
.footer {
  background-color: #fae3f1;
  color: #333;
  padding: 2rem 1rem;
  margin-top: 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  max-width: 1000px;
  margin: auto;
}

.footer-section {
  flex: 1 1 250px;
}

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.footer-section p,
.footer-section a {
  font-size: 1rem;
  color: #333;
  text-decoration: none;
  display: block;
  margin: 0.3rem 0;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-section i {
  margin-right: 0.5rem;
}

.social-icons a i {
  color: #555;
}

