/* === BOTÕES === */
.btn-grad,
.btn-ol,
.btn-ghost {
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-weight: 700;
}

.btn-grad {
  background: linear-gradient(135deg, var(--skyA), var(--skyB));
  color: #fff;
  box-shadow: 0 14px 28px rgba(3, 105, 161, 0.25);
}

.btn-ol {
  border: 1px solid rgba(3, 105, 161, 0.26);
  background: rgba(255, 255, 255, 0.88);
  color: var(--skyB);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(8px);
}

/* === NAVEGAÇÃO === */
.nav-link,
.filter-btn {
  border: 1px solid rgba(2, 132, 199, 0.16);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.86);
  color: #1f3f5b;
  font-weight: 700;
}

.nav-link {
  padding: 0.55rem 0.82rem;
  font-size: 0.88rem;
}

.filter-btn {
  padding: 0.62rem 1rem;
}

.filter-btn.selected,
.nav-link.active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--skyA), var(--skyB));
  color: #fff;
  box-shadow: 0 10px 24px rgba(3, 105, 161, 0.24);
}

.mobile-link {
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.95rem;
  color: #23425d;
  font-weight: 700;
}

.mobile-link:hover {
  background: rgba(14, 165, 233, 0.08);
}

.mobile-link.is-disabled {
  cursor: not-allowed;
  opacity: 0.55;
  pointer-events: none;
}

/* === ÍCONES E SELOS === */
.icon-24 {
  width: 24px;
  height: 24px;
  display: inline-block;
  border-radius: 8px;
}

.top-icon {
  width: 18px;
  height: 18px;
}

.seal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.seal-list img {
  height: 42px;
  width: auto;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.9);
  padding: 0.2rem;
  box-shadow: 0 10px 24px rgba(8, 25, 43, 0.18);
}

/* === CARDS E BADGES === */
.card {
  border: 1px solid rgba(216, 227, 236, 0.95);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.metric-card {
  border-left: 4px solid var(--skyA);
  padding: 1rem;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 9999px;
  background: rgba(14, 165, 233, 0.1);
  color: var(--skyB);
  padding: 0.45rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  padding: 0.48rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: #4ade80;
  box-shadow: 0 0 0 5px rgba(74, 222, 128, 0.18);
}

/* === SLIDER === */
.slider {
  position: absolute;
  inset: 0;
  isolation: isolate;
  overflow: hidden;
  background: #0f2335;
}

.slide-track {
  display: flex;
  height: 100%;
  transition: transform 0.65s ease;
}

.slide {
  min-width: 100%;
  flex: 0 0 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 20, 34, 0.86) 0%, rgba(7, 20, 34, 0.64) 42%, rgba(7, 20, 34, 0.18) 100%),
    linear-gradient(180deg, rgba(7, 20, 34, 0.18) 0%, rgba(7, 20, 34, 0.48) 100%);
  pointer-events: none;
}

.slider-nav {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  box-shadow: var(--shadow-sm);
}

.dot-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1rem;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 0.55rem;
}

.dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.54);
}

.dot.active {
  width: 28px;
  background: #fff;
}

/* === PRODUTOS === */
.product-card {
  min-width: 0;
}

.product-card .card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.product-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #eef4f8;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.product-card:hover img {
  transform: scale(1.035);
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.15rem;
}

.product-tag {
  display: inline-flex;
  width: max-content;
  border-radius: 9999px;
  background: rgba(22, 163, 74, 0.1);
  color: var(--green700);
  padding: 0.28rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.swatch {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 9999px;
  background: #fff;
}

.swatch-blue {
  background: #0b63b6;
}

.swatch-black {
  background: #111827;
}

.swatch.selected {
  outline: 3px solid rgba(14, 165, 233, 0.38);
  outline-offset: 2px;
}

/* === ETAPAS DE PROCESSO === */
.etapa-card {
  position: relative;
  padding: 1rem;
}

.etapa-card img {
  aspect-ratio: 16 / 10;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.etapa-num {
  position: absolute;
  left: 0.8rem;
  top: 0.8rem;
  z-index: 2;
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--skyA);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(14, 165, 233, 0.34);
}

.etapa-num-alt {
  background: #174e8f;
}

/* === HAMBURGUER === */
.hamburger {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--skyB);
}

/* === FORMULÁRIO === */
.form-shell {
  border: 1px solid rgba(216, 227, 236, 0.95);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.field-control {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  background: #fff;
  padding: 0.78rem 0.9rem;
  color: var(--ink);
}

.field-control:focus {
  border-color: var(--skyA);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
  outline: 0;
}

.field-prefix {
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.field-prefix span {
  background: #eef4f8;
  color: var(--ink);
}

/* === FABs FLUTUANTES === */
.fab-whats,
.fab-ig {
  position: fixed;
  right: 18px;
  z-index: 60;
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  color: #fff;
  box-shadow: var(--shadow-md);
}

.fab-whats {
  bottom: 18px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.fab-ig {
  bottom: 84px;
  background: linear-gradient(135deg, #ff7a59, #d62976);
}

/* === TOAST === */
.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 80;
  display: none;
  max-width: min(92vw, 520px);
  transform: translateX(-50%);
  border-radius: var(--radius-md);
  background: var(--ink);
  color: #fff;
  padding: 0.82rem 1rem;
  box-shadow: var(--shadow-lg);
}

.toast.show {
  display: block;
}

/* === MODAL === */
.modal-panel {
  max-height: calc(100vh - 2rem);
  overflow: auto;
  border-radius: var(--radius-lg);
}

.modal-actions {
  display: flex;
  gap: 0.75rem;
}

/* === POPUP INSTAGRAM === */
#igPrompt .content {
  width: 100%;
  max-width: 28rem;
}
