.masinfo-body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: #0b5c5a;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.masinfo-banner-superior {
  width: 100vw;
  background: #011d1c;
  padding: 1.2rem 0 1rem 0;
  box-sizing: border-box;
  border: 1px solid #222;
}

.masinfo-banner-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-left: 1.5rem;
}

.masinfo-logo-img {
  width: 90px;
  height: auto;
  display: block;
}

.masinfo-banner-title {
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  margin-left: 1.2rem;
  letter-spacing: 1px;
}

@media (max-width: 600px) {
  .masinfo-banner-link {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0.5rem;
  }
  .masinfo-logo-img {
    width: 60px;
  }
  .masinfo-banner-title {
    font-size: 1.2rem;
    margin-left: 0.5rem;
  }
}

.info-card {
  background: #072626;
  color: #f5f5f5;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  max-width: 1000px;
  margin: 2.5rem auto 0 auto;
  padding: 2.2rem 2rem 2rem 2rem;
  border: 1.5px solid #ffb92a;
}

.info-card-header {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 1.2rem;
  width: 100%;
}

.info-card-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 10px;
  background: rgb(255, 255, 255);
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  border: 1.5px solid #eab308;
  padding: 6px;
  margin-right: 1.5rem;
  z-index: 1;
}

.info-title-container {
  flex: 1;
  display: flex;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none; /* El título no tapa el logo */
}

.info-title {
  text-align: center;
  margin: 0;
  color: #ffb32c;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 1px;
  pointer-events: auto;
}

.info-subtitle {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 2.2rem 0 1rem 0;
  color: #ffb92a;
  letter-spacing: 0.5px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid #174646;
  padding: 1rem 0;
  font-size: 1.08rem;
  gap: 1.5rem;
}

.info-row:last-of-type {
  border-bottom: none;
}

.info-label {
  color: #b6e2e2;
  font-weight: 600;
  min-width: 160px;
  flex-shrink: 0;
}

.info-value {
  color: #fff;
  font-weight: 400;
  flex: 1;
  text-align: left;
}

.info-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.2rem;
}

.info-social-bar {
  background: #072626;
  padding: 0.7rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  border: 1.5px solid #072626;
  border-radius: 4px;
}

.info-social-icon img {
  width: 35px;
  height: 35px;
  
  transition: transform 0.2s, filter 0.2s;
  vertical-align: middle;
}

.info-social-icon img:hover {
  
  transform: scale(1.12);
}

.info-social-separator {
  display: inline-block;
  width: 2px;
  height: 28px;
  background: #fff;
  opacity: 0.5;
  margin: 0 0.5rem;
  border-radius: 2px;
}

.info-quick-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.2rem;
  gap: 1.5rem;
}

.info-quick-label {
  color: #b6e2e2;
  font-weight: 500;
  font-size: 1rem;
}

.info-quick-value {
  color: #222;
  color: #fff;
  font-weight: 600;
  font-size: 1.25rem;
}

.info-quick-note {
  margin-top: 1.2rem;
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.5;
}

.info-card-flex .info-card-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}