@charset "utf-8";
:root{
  --brand: #5C3B99;
  --brand-2: #8ec760;
  --bg-soft: #f6f7fb;
  --card: #ffffff;
  --text: #1f2937;
  --muted: #374FAC;
  --border: rgba(31,41,55,.12);
  --shadow: 0 10px 25px rgba(0,0,0,.06);
}

body{
  color: var(--text);
  background: #fff;
}

.hero{
  background: radial-gradient(1200px 450px at 20% 0%, rgba(92,59,153,.18), transparent 60%),
              radial-gradient(900px 420px at 90% 30%, rgba(142,199,96,.20), transparent 55%),
              linear-gradient(180deg, #ffffff 0%, #fbfbfe 100%);
  border-bottom: 1px solid var(--border);
}

.hero-content{
  padding: 1.2rem 0 2rem 0;
}

.hero-title{
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  margin: .25rem 0 .4rem 0;
}

.hero-subtitle{
  color: var(--muted);
  margin: 0;
  max-width: 60ch;
}

.breadcrumb-clean{
  margin-bottom: .2rem;
}
.breadcrumb-clean a{
  text-decoration: none;
  color: var(--muted);
}
.breadcrumb-clean a:hover{
  color: var(--brand);
}

.card-soft{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.form-note{
  color: var(--muted);
  font-size: .9rem;
}

.btn-primary{
  background: var(--brand);
  border-color: var(--brand);
}
.btn-primary:hover{
  background: #4b2f7d;
  border-color: #4b2f7d;
}

.location-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.location-head{
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(92,59,153,.10), rgba(142,199,96,.08));
  border-bottom: 1px solid var(--border);
}

.location-title{
  font-size: 1.02rem;
  margin: 0;
  font-weight:600;
}

.location-city{
  color: var(--muted);
  font-size: .9rem;
  margin-top: 2px;
}

.location-body{
  padding: 14px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.location-line{
  color: var(--text);
  font-size: .95rem;
  line-height: 1.35;
}

.location-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.location-phone{
  color: var(--muted);
  font-size: .9rem;
}

.brand-logo{
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  padding: 10px;
  box-shadow: 0 8px 18px rgba(0,0,0,.04);
}

@media (max-width: 991.98px){
  .hero-content{ padding-bottom: 1.2rem; }
}


