/* YAKANI — estilos visuais */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(1200px 400px at 50% -80px, #d7e8f7 0%, transparent 70%),
    #F7F6F2;
}

img {
  max-width: 100%;
  height: auto;
}

.chip, .city-chip {
  padding: 0.6rem 1rem;
  border-radius: 9999px;
  border: 1.5px solid #d1d5db;
  background: white;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.15s ease;
  cursor: pointer;
}

.chip:hover, .city-chip:hover, .type-card:hover {
  border-color: #185FA5;
  background: #E6F1FB;
}

.chip.active, .city-chip.active {
  background: #185FA5;
  color: white;
  border-color: #185FA5;
}

.type-card {
  padding: 0;
  overflow: hidden;
  border-radius: 14px;
  border: 2px solid #e5e7eb;
  background: white;
  text-align: left;
  cursor: pointer;
  transition: all 0.15s ease;
}
.type-card img {
  width: 100%;
  height: 104px;
  object-fit: cover;
  display: block;
}
.type-card span {
  display: block;
  padding: 0.55rem 0.7rem 0.65rem;
  font-weight: 600;
  font-size: 0.9rem;
}
.type-card.active {
  border-color: #185FA5;
  background: white;
  box-shadow: 0 0 0 3px rgba(24, 95, 165, 0.22);
}
.type-card.active span {
  background: #185FA5;
  color: white;
}
.type-card:hover {
  background: white;
}

.btn-primary {
  background: #185FA5;
  color: white;
  border-radius: 12px;
  font-weight: 600;
  transition: background 0.15s;
}
.btn-primary:hover:not(:disabled) {
  background: #0C447C;
}

.btn-secondary {
  background: white;
  color: #1F1F1D;
  border: 1.5px solid #d1d5db;
  border-radius: 12px;
  font-weight: 500;
  transition: all 0.15s;
}
.btn-secondary:hover {
  background: #F7F6F2;
  border-color: #185FA5;
}

.screen {
  animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin: 1rem 0 1.25rem;
  min-height: 168px;
  box-shadow: 0 10px 30px rgba(12, 68, 124, 0.12);
}
.hero img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 40, 72, 0.12) 10%, rgba(8, 40, 72, 0.78) 100%);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.1rem 1.15rem 1.2rem;
}
.hero-overlay h1,
.hero-overlay h2 {
  font-size: 1.45rem;
  line-height: 1.2;
  font-weight: 800;
  margin: 0 0 0.25rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.25);
}
.hero-overlay p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.95;
}

.progress-bar {
  height: 10px;
  border-radius: 9999px;
  background: #e5e7eb;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  border-radius: 9999px;
  transition: width 0.4s ease;
}

.plan-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f3f4f6;
}
.plan-item:last-child {
  border-bottom: none;
}

.checklist-box {
  width: 22px;
  height: 22px;
  border: 2px solid #185FA5;
  border-radius: 6px;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s;
}
.checklist-box.done {
  background: #185FA5;
  color: white;
}

.expense-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.875rem;
}

.pro-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 0.9rem;
  box-shadow: 0 6px 18px rgba(31, 31, 29, 0.04);
}
.pro-avatar {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
  background: #E6F1FB;
}

.how-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
}
.how-card img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  display: block;
}

.result-hero {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  margin-bottom: 0.85rem;
}

.badge-exemplo {
  background: #FAEEDA;
  color: #854F0B;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 9999px;
}

.badge-pending {
  background: #E6F1FB;
  color: #0C447C;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 9999px;
}

.step-dots {
  display: flex;
  gap: 6px;
  margin: 0.35rem 0 0.75rem;
}
.step-dots span {
  height: 6px;
  flex: 1;
  border-radius: 99px;
  background: #dbe4ee;
}
.step-dots span.on {
  background: #185FA5;
}

.brand-link {
  display: flex;
  align-items: center;
  min-width: 0;
  flex-shrink: 1;
}
.brand-logo {
  display: block;
  width: 196px;
  height: auto;
  max-width: 55vw;
  object-fit: contain;
  object-position: left center;
}

@media (max-width: 420px) {
  .brand-logo {
    width: 132px;
  }
  header nav a {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    font-size: 0.78rem;
  }
}

.site-footer {
  max-width: 36rem;
  margin: 0 auto;
  padding: 0.5rem 1rem 2rem;
  text-align: center;
  color: #5F5E5A;
  font-size: 0.75rem;
}
.footer-logo {
  display: block;
  width: min(260px, 80%);
  height: auto;
  margin: 0 auto 0.75rem;
  object-fit: contain;
}

input, select, textarea {
  background: white;
}

.site-header {
  background: rgba(247, 246, 242, 0.94);
}
