body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

/* Header con logo y menú */
header {
  background-color: #fff;
   border-bottom: 2px solid linear-gradient(to right, #8B0000, rgb(202,56,3)); 
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  flex-wrap: wrap;
}

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

.logo img {
  max-height: 60px;
  margin-right: 15px;
}


nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: rgb(202, 56, 3);
  font-weight: bold;
}

nav ul li a:hover {
  color: #333;
}

/* Sección principal */
.container {
  display: flex;
  min-height: 50vh;
}

.left-section {
  flex: 1;
  padding: 50px;
  background: linear-gradient(to right, #8B0000, rgb(202,56,3));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.left-section h1 {
  
}

.left-section h1 span {
  margin: 0;
  
  color: #fdfdfd;
  font-size: 2rem;
  font-weight: 100;
}

.left-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.highlight-boxes {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.highlight-box {
  background-color: #d4af37; /* dorado para cajitas */
  color: #000;
  padding: 20px;
  border-radius: 8px;
  flex: 1;
}

.highlight-box h3 {
  margin-top: 0;
}


.highlight-box h3 {
  margin-top: 0;
}

.cta {
  background-color: #fff; /* botones blancos dentro de cajitas rojas */
  color: #8b0000;
  border: none;
  padding: 12px 20px;
  margin-top: 20px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
}

.cta:hover {
  background-color: #333333; /* gris oscuro al pasar el mouse */
  color: #fff;
}

/* Catálogo estilo cards */
.catalogo {
  padding: 50px;
  background-color: #fff;
  text-align: center;
}

.catalogo h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #8b0000;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card {
  background: #fdfdfd;
  border: 1px solid #ddd;
  border-radius: 10px;
  width: 280px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 10px;
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: rgb(202, 56, 3);
}



.ficha {
  font-size: 0.9rem;
  margin-bottom: 15px;
  color: #555;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.card ul li {
  margin: 8px 0;
  color: #555;
}

.card .cta {
  background-color: rgb(202, 56, 3);
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
}

.card .cta:hover {
  background-color: #333333;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #333333; /* gris oscuro sólido */
  color: #fff;
}
