/*
  GoToo UI Base
  - Componentes reutilizáveis (buttons, cards, chips)
  - Mantém o layout consistente entre Home, MassPages e Booking
  - Leve: sem dependências externas
*/

:root{
  --gotoo-focus: rgba(255, 106, 0, 0.35);
}

/* ---------- Buttons ---------- */
.gotoo-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.gotoo-btn:focus{
  outline: 3px solid var(--gotoo-focus);
  outline-offset: 2px;
}

.gotoo-btn--primary{
  background: var(--gotoo-primary);
  color: #fff;
  box-shadow: var(--gotoo-shadow-btn);
}
.gotoo-btn--primary:hover{
  background: var(--gotoo-primary-hover);
  box-shadow: var(--gotoo-shadow-btn-hover);
  text-decoration:none;
}

.gotoo-btn--cta{
  background: var(--gotoo-accent);
  color: var(--gotoo-accent-contrast);
  box-shadow: 0 14px 30px rgba(255, 106, 0, 0.28);
}
.gotoo-btn--cta:hover{
  background: var(--gotoo-accent-hover);
  box-shadow: 0 16px 34px rgba(255, 106, 0, 0.34);
  text-decoration:none;
}

.gotoo-btn--ghost{
  background: transparent;
  border-color: var(--gotoo-border);
  color: var(--gotoo-text);
}
.gotoo-btn--ghost:hover{
  background: rgba(15,23,42,0.03);
  text-decoration:none;
}

.gotoo-btn--block{ width:100%; }

/* ---------- Cards ---------- */
.gotoo-card{
  background:#fff;
  border:1px solid var(--gotoo-border);
  border-radius: var(--gotoo-radius-lg);
  box-shadow: var(--gotoo-shadow-1);
  padding: 18px;
}

.gotoo-card__title{
  margin:0 0 6px;
  font-size:1.05rem;
  font-weight:700;
}

.gotoo-card__meta{
  margin:0;
  color: var(--gotoo-muted-2);
  font-size:0.95rem;
}

/* ---------- Chips (tags) ---------- */
.gotoo-chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.gotoo-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--gotoo-border);
  background: rgba(255,255,255,0.8);
  color: var(--gotoo-text);
  font-weight:600;
  font-size: 0.92rem;
  cursor:pointer;
  text-decoration:none;
}

.gotoo-chip:hover{ background: rgba(15,23,42,0.03); text-decoration:none; }

.gotoo-chip.is-active{
  border-color: rgba(255,106,0,0.35);
  background: rgba(255,106,0,0.10);
}

/* ---------- Forms (base) ---------- */
.gotoo-field{ display:flex; flex-direction:column; gap:6px; }
.gotoo-field label{ font-weight:600; font-size:0.92rem; }

.gotoo-input,
.gotoo-select,
.gotoo-textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--gotoo-border);
  background:#fff;
  color: var(--gotoo-text);
}

.gotoo-input:focus,
.gotoo-select:focus,
.gotoo-textarea:focus{
  outline: 3px solid var(--gotoo-focus);
  border-color: rgba(255, 106, 0, 0.35);
}

.gotoo-grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

@media (max-width: 900px){
  .gotoo-grid{ grid-template-columns: repeat(6, 1fr); }
}

@media (max-width: 560px){
  .gotoo-grid{ grid-template-columns: repeat(2, 1fr); }
}
