/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.98rem;
  line-height: 1;
  letter-spacing: 0.005em;
  text-align: center;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast), border-color var(--t-fast);
  min-height: 48px;
  border: 1px solid transparent;
}
.btn svg{ width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary{
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover{ background: var(--accent-deep); transform: translateY(-1px); }
.btn-secondary{
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-secondary:hover{ background: var(--bg-alt); border-color: var(--text); }
.btn-wa{
  background: var(--wa-green);
  color: #fff;
}
.btn-wa:hover{ background: var(--wa-deep); transform: translateY(-1px); }
.btn-light{
  background: rgba(255,255,255,0.9);
  color: var(--text);
  backdrop-filter: blur(4px);
}
.btn-light:hover{ background: #fff; }
.btn-ghost-dark{
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost-dark:hover{ background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

/* Stars (SVG inline si besoin ext) */
.stars{ display: inline-flex; gap: 2px; color: #D9A441; }
.stars svg{ width: 16px; height: 16px; }

/* Badge Google */
.badge-google{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.74rem;
  color: var(--text-2);
  font-family: var(--ff-body);
  font-weight: 500;
}
.badge-google svg{ width: 12px; height: 12px; }

/* Cards stripe (LAY-5) */
.card-stripe{
  position: relative;
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 32px 26px 28px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.card-stripe::before{
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
}
.card-stripe:hover{
  transform: translateY(-4px);
  box-shadow: 0 22px 40px -28px rgba(31, 42, 36, 0.35);
  border-color: var(--border-strong);
}
.card-stripe__num{
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--accent);
}
.card-stripe__title{
  font-family: var(--ff-display);
  font-size: 1.55rem;
  line-height: 1.15;
  color: var(--text);
  margin: 0;
}
.card-stripe__desc{
  font-family: var(--ff-body);
  font-size: 0.96rem;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0;
}
.card-stripe__tags{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.card-stripe__tag{
  font-size: 0.74rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-family: var(--ff-body);
  font-weight: 500;
}

/* Modal */
.modal{
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal__overlay{
  position: absolute;
  inset: 0;
  background: rgba(31, 42, 36, 0.6);
  backdrop-filter: blur(4px);
}
.modal__box{
  position: relative;
  background: var(--surface);
  max-width: 540px;
  width: 100%;
  max-height: 84vh;
  overflow-y: auto;
  border-radius: var(--r-lg);
  padding: 36px 28px 28px;
  border: 1px solid var(--border);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.35);
}
.modal__close{
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text);
  transition: background var(--t-fast);
}
.modal__close:hover{ background: var(--bg-alt); }
.modal__close svg{ width: 18px; height: 18px; }
.modal h2{
  font-family: var(--ff-display);
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.modal h3{
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-top: 18px;
  margin-bottom: 6px;
}
.modal p{
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-2);
  margin-bottom: 8px;
}

/* Lightbox */
.lightbox{
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(8, 12, 10, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lb-image{
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: var(--r-md);
  box-shadow: 0 20px 60px -10px rgba(0,0,0,0.6);
  object-fit: contain;
}
.lb-close,
.lb-prev,
.lb-next{
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  transition: background var(--t-fast);
  backdrop-filter: blur(4px);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.25); }
.lb-close{ top: 18px; right: 18px; font-size: 1.2rem; }
.lb-prev{ left: 12px; top: 50%; transform: translateY(-50%); }
.lb-next{ right: 12px; top: 50%; transform: translateY(-50%); }
@media (min-width: 768px){
  .lb-prev{ left: 24px; }
  .lb-next{ right: 24px; }
  .lb-close{ top: 24px; right: 24px; }
}

/* Inputs */
.field{
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.field label{
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-2);
  font-family: var(--ff-body);
}
.field input,
.field textarea,
.field select{
  font: inherit;
  font-size: 1rem;
  padding: 14px 16px;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  background: var(--surface);
  color: var(--text);
  min-width: 0;
  width: 100%;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  min-height: 48px;
}
.field textarea{ resize: vertical; min-height: 120px; }
.field input:focus,
.field textarea:focus,
.field select:focus{
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

/* Form */
.form{ display: grid; gap: 16px; }
.form__row{ display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 720px){
  .form__row--2{ grid-template-columns: 1fr 1fr; }
}
.form__feedback{
  font-size: 0.92rem;
  padding: 12px 16px;
  border-radius: var(--r-md);
  background: var(--accent-soft);
  color: var(--accent-deep);
  border: 1px solid var(--accent);
}
