/* =========================
   /assets/css/customers.css
   Tab/portal: CUSTOMERS (privado)
   ========================= */

html.theme-customers,
body.theme-customers{
  min-height: 100%;
  background: var(--customers-yellow) !important;
  background-color: var(--customers-yellow) !important;
  color: var(--customers-ink);
}

body.theme-customers .madonna-logo-wrap{ color: var(--customers-blue); }
body.theme-customers .tabs{ color: var(--customers-blue); }
body.theme-customers .tab-btn{ border-color: rgba(31,70,193,.55); }
body.theme-customers .tab-btn[aria-selected="true"]{ background: rgba(31,70,193,.12); }

body.theme-customers .info-shell{
  max-width:none;
  width:100%;
  min-height:100vh;
  margin:0;
}

/* Customers UI */
.customers-shell{
  padding: 24px 16px 40px;
}
.customers-header{
  max-width: 960px;
  margin-bottom: 16px;
}
.customers-title{
  margin: 0 0 6px 0;
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 32px;
  color: var(--customers-blue);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.customers-subtitle{
  margin: 0;
  color: rgba(36,18,0,.75);
}
.customers-grid{
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.customer-card{
  border: 2px solid rgba(31,70,193,.35);
  border-radius: 16px;
  padding: 12px;
  background: rgba(255,255,255,.35);
  box-shadow: 0 10px 24px rgba(31,70,193,.12);
}
.customer-card img{
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid rgba(31,70,193,.25);
  background: rgba(255,255,255,.6);
}
.customer-card h3{
  margin: 10px 0 6px 0;
  color: var(--customers-blue);
  font-size: 20px;
}
.customer-card p{
  margin: 0;
  color: rgba(36,18,0,.8);
  font-size: 14px;
}
