/* Section Title Styling */
.section-title {
  color: #1b2aa7;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin: 40px 0 24px 0;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(27, 42, 167, 0.08);
}
/* Product Table Styling */
.product-table {
  margin: 0 auto 40px auto;
  max-width: 400px;
  width: 100%;
  border-collapse: separate;
  border-spacing: 10px 8px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(27, 42, 167, 0.08);
  overflow: hidden;
}

.product-table td {
  padding: 16px 12px;
  border: 1px solid #e0e4f6;
  text-align: center;
  font-size: 1.1rem;
  color: #1b2aa7;
  background: #f4f4f9;
  font-weight: 500;
}
/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

/* body */
body {
  background: linear-gradient(
    90deg,
    rgba(224, 247, 250, 1) 0%,
    rgba(244, 244, 249, 1) 100%
  ); /* Azul suave de fondo */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: #333; /* Texto gris oscuro */
}

.centerinfor {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.centerinfor h1 {
  color: #1b2aa7;
  line-height: 1.3;
  margin: 20px 0;
}

.centerinfor img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  background: #fff;
  border: 4px solid #1b2aa7;
  box-shadow: 0 4px 24px rgba(27, 42, 167, 0.1);
}

/* Footer */

.footer {
  background-color: #1b2aa7; /* Gris oscuro */
  color: #b0bec5; /* Gris claro */
  padding: 40px 2px;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 0;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.footer-link {
  margin: 20px 0;
  text-align: center;
}

.footer-link h3 {
  color: #fff;
}

.footer-link a {
  color: #b0bec5;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link a:hover {
  color: white;
}

/* Social icons */
.social-icons a {
  font-size: 1.5rem;
  margin: 0 10px;
  color: #b0bec5;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #fff;
}

.email-link {
  color: #b0bec5;
  font-size: 1rem;
}

.email-link:hover {
  color: white;
}

@media (max-width: 768px) {
  .row {
    flex-direction: column;
    align-items: center;
  }

  .col-md-6.col-lg-3 {
    flex: 1 1 100%;
    max-width: 90%;
  }

  header {
    padding: 20px 0;
  }
}
