/* assets/style.css */
* { box-sizing: border-box; }
body { margin:0; font-family: Arial, Helvetica, sans-serif; color:#0b1a22; background-image: url("../images/fondo-pag.jpg"); background-size: cover; }
a { text-decoration:none; }

.home .hero{
  min-height: 100vh;
  background: linear-gradient(0deg, rgba(0,0,0,.35), rgba(0,0,0,.35)),
              url("bg.jpg") center/cover no-repeat;
  padding: 28px;
  display:flex;
  flex-direction: column;
}

.topbar{ display:flex; }
.badge{
  background:#2f6f86;
  color:#fff;
  font-weight:700;
  padding: 14px 22px;
  font-size: 22px;
  letter-spacing:.5px;
  border-radius: 3px;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
}

.cards{
  margin-top: 60px;
  display:flex;
  gap: 60px;
  justify-content:center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.card{
  width: 320px;
  background:#fff;
  padding: 26px 26px 18px;
  border-radius: 2px;
  box-shadow: 0 10px 22px rgba(0,0,0,.35);
  text-align:center;
}

.card h3{
  margin: 0 0 12px;
  color:#0b3b86;
  font-size: 16px;
  letter-spacing:.6px;
  text-transform: uppercase;
}

.card p{
  margin: 0 0 28px;
  font-size: 12px;
  line-height: 1.4;
  color:#000;
}

.btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  background:#1d6a85;
  color:#fff;
  border-radius: 4px;
  padding: 10px 14px;
  font-weight:700;
  font-size: 12px;
  text-transform: uppercase;
  box-shadow: 0 6px 14px rgba(0,0,0,.2);
}

.btn:hover{ filter: brightness(1.05); }
.btn-ico{ font-size: 16px; }

.login{
  min-height: 100vh;
  background: #e9eef2;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 20px;
}
.login-wrap{ width: 100%; max-width: 420px; }
.login-card{
  background:#fff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
}
.login-card h2{ margin: 0 0 18px; color:#1d6a85; }
label{ display:block; margin: 12px 0 6px; font-size: 13px; color:#333; }
input{
  width:100%;
  padding: 10px 12px;
  border: 1px solid #cfd8df;
  border-radius: 6px;
  outline: none;
}
input:focus{ border-color:#1d6a85; }

.btn.full{ width:100%; border:0; cursor:pointer; margin-top: 16px; }
.alert{
  background: #ffe7e7;
  border: 1px solid #ffb2b2;
  color:#7c1212;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 13px;
}

.link{
  display:inline-block;
  margin-top: 14px;
  color:#1d6a85;
  font-weight:700;
  font-size: 13px;
}

.page{ padding: 24px; }
.page-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  border-bottom: 1px solid #d9e2ea;
  padding-bottom: 12px;
}
.userbox{ display:flex; gap: 12px; align-items:center; }
.page-body{ padding-top: 16px; }


.arbitrelex-header {
    width: 100%;
    background-color: #123c74;
    padding: 12px 20px;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo img {
    height: 48px;
    max-width: 100%;
}

.header-actions img {
    height: 34px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 600px) {
    .header-logo img {
        height: 38px;
    }

    .header-actions img {
        height: 30px;
    }
}
