* {
  -webkit-tap-highlight-color: transparent !important;
  outline: none !important;
  box-sizing: border-box;
}

*:focus, *:focus-visible, *:active {
  outline: none !important;
  -webkit-tap-highlight-color: transparent !important;
}

body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background-color: #f5f0ea;
  overscroll-behavior-y: none;
  font-family: 'Montserrat', sans-serif;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.font-serif { font-family: 'Marcellus', serif; }
.font-sans { font-family: 'Montserrat', sans-serif; }
.font-logo, .font-brand { font-family: 'Barlow', 'Montserrat', sans-serif; }

.overlay {
  background: rgba(255, 255, 255, 0.25);
  pointer-events: none;
}

.text-main { color: #2E1B20; }
.text-sub { color: #682133; }

/* 1. Aura de Respiração Suave na Logo (Aura Breathe - ciclo de 5.5s) */
.logo-subtle-aura {
  position: absolute;
  inset: -8px;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(226, 200, 122, 0.38) 0%, rgba(226, 200, 122, 0) 72%);
  animation: auraBreathe 5.5s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 1;
}

@keyframes auraBreathe {
  0% {
    transform: scale(0.96);
    opacity: 0.35;
  }
  100% {
    transform: scale(1.06);
    opacity: 0.75;
  }
}

/* 2. Botões Boutique com Reflexo Acetinado Sutil (Subtle Sheen - ciclo de 6.8s) */
.btn-boutique-action {
  background: linear-gradient(135deg, rgba(238, 230, 222, 0.93) 0%, rgba(225, 214, 203, 0.88) 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  outline: none !important;
  -webkit-tap-highlight-color: transparent !important;
  user-select: none;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}

.btn-boutique-action::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -150%;
  width: 100%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent 35%,
    rgba(255, 255, 255, 0.28) 50%,
    transparent 65%
  );
  transform: rotate(25deg);
  animation: subtleSheen 6.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes subtleSheen {
  0%, 70% {
    left: -150%;
    opacity: 0;
  }
  78% {
    opacity: 1;
  }
  100% {
    left: 200%;
    opacity: 0;
  }
}

.btn-boutique-action:hover {
  border-color: rgba(226, 200, 122, 0.95);
  box-shadow: 0 6px 20px rgba(226, 200, 122, 0.28);
  transform: translateY(-2px);
}

.btn-boutique-action:active {
  transform: scale(0.985);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
