:root {
  --deep: #0e2529;
  --deep-2: #18383d;
  --mint: #0b766d;
  --gold: #e5b44b;
  --surface: #ffffff;
  --wash: #eef6f4;
}

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.site-header {
  min-height: 76px;
  box-shadow: 0 10px 35px rgba(14, 37, 41, .08);
}

.brand span {
  letter-spacing: .01em;
}

.main-nav a {
  padding: 9px 4px;
  font-weight: 750;
}

.header-cta,
.btn.primary {
  box-shadow: 0 10px 24px rgba(11, 118, 109, .24);
}

.hero {
  min-height: calc(100vh - 76px);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero:after {
  content: "";
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 36px;
  width: min(420px, 38vw);
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), #f36f45, var(--mint));
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  max-width: 900px;
  text-wrap: balance;
}

.hero p {
  max-width: 680px;
}

.trust-strip {
  box-shadow: 0 -1px 0 rgba(255,255,255,.25) inset;
}

.section {
  position: relative;
}

.section-head h2 {
  text-wrap: balance;
}

.product-card,
.feature-card,
.contact-card,
.contact-form,
.admin-card,
.login-box {
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.product-card:hover,
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 118, 109, .28);
  box-shadow: 0 18px 45px rgba(20, 44, 48, .12);
}

.product-media {
  position: relative;
  overflow: hidden;
}

.product-media:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(14,37,41,.34), transparent);
}

.feature-card {
  min-height: 220px;
}

.page-hero,
.visual-hero {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--page-hero-overlay, #123236) 88%, transparent), rgba(11,118,109,.68)),
    var(--page-hero-image, url("/assets/img/paint-hero.svg")) center/cover no-repeat;
}

.visual-hero {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.visual-hero .btn {
  width: fit-content;
  margin-top: 14px;
}

.contact-card,
.contact-form {
  box-shadow: 0 20px 55px rgba(20, 44, 48, .09);
}

.site-footer {
  margin-top: 24px;
}

.floating-whatsapp {
  font-size: 13px;
  border: 3px solid #fff;
}

.admin-shell {
  background: #f3f7f6;
}

.admin-sidebar {
  background: linear-gradient(180deg, var(--deep), #0a1b1f);
  box-shadow: 16px 0 40px rgba(14, 37, 41, .08);
}

.admin-sidebar h2 {
  margin-top: 0;
  font-size: 22px;
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.admin-brand img {
  border-radius: 10px;
  background: #fff;
}

.admin-brand strong,
.admin-brand span {
  display: block;
}

.admin-brand strong {
  color: #fff;
  line-height: 1.1;
}

.admin-brand span {
  color: rgba(255,255,255,.62);
  font-size: 12px;
  font-weight: 800;
}

.admin-sidebar a {
  margin-bottom: 4px;
  font-weight: 750;
}

.admin-credit {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.62);
  font-size: 12px;
  font-weight: 800;
}

.admin-footer-credit {
  margin-top: 30px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.admin-main h1 {
  margin-top: 0;
  letter-spacing: 0;
}

.admin-card {
  border-color: #dce9e7;
}

.admin-table th {
  background: #eef6f4;
  color: var(--deep);
}

.admin-table tr:hover td {
  background: #fbfdfc;
}

.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 22px;
  background:
    radial-gradient(circle at 18% 20%, rgba(229,180,75,.18), transparent 32%),
    linear-gradient(135deg, #0e2529, #0b766d);
}

.login-wrap {
  width: min(1080px, 100%);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0,0,0,.28);
  backdrop-filter: blur(12px);
}

.login-info {
  padding: clamp(28px, 5vw, 58px);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 620px;
  background:
    linear-gradient(90deg, rgba(14,37,41,.9), rgba(14,37,41,.55)),
    url("/assets/img/paint-hero.svg") center/cover no-repeat;
}

.login-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 22px;
  margin-bottom: auto;
}

.login-brand img {
  border-radius: 12px;
}

.login-info h1 {
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1;
  margin: 40px 0 18px;
  max-width: 620px;
}

.login-info p {
  max-width: 560px;
  color: rgba(255,255,255,.86);
  font-size: 18px;
}

.login-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.login-badges span {
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255,255,255,.08);
  font-weight: 800;
  font-size: 13px;
}

.pro-login-box {
  width: auto;
  border-radius: 0;
  box-shadow: none;
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pro-login-box h2 {
  margin: 0 0 8px;
  font-size: 32px;
  line-height: 1.1;
}

.login-help {
  margin-top: 0;
  color: var(--muted);
}

.pro-login-box label {
  display: block;
  font-weight: 850;
  margin: 14px 0;
}

.pro-login-box input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 13px;
  font: inherit;
  margin-top: 7px;
  background: #fbfdfc;
}

.pro-login-box input:focus {
  outline: 3px solid rgba(11, 118, 109, .16);
  border-color: var(--mint);
  background: #fff;
}

.pro-login-box .btn {
  width: 100%;
  margin-top: 10px;
}

.login-back {
  text-align: center;
  margin-top: 16px;
  color: var(--mint);
  font-weight: 850;
}

.login-made-by {
  text-align: center;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero {
    min-height: 620px;
  }

  .login-wrap {
    grid-template-columns: 1fr;
  }

  .login-info {
    min-height: auto;
    padding: 28px;
  }

  .login-brand,
  .login-badges {
    margin: 0;
  }
}

@media (max-width: 560px) {
  .login-page {
    padding: 0;
  }

  .login-wrap {
    min-height: 100vh;
    border-radius: 0;
    border: 0;
  }

  .login-info {
    display: none;
  }

  .pro-login-box {
    min-height: 100vh;
  }
}
