@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;600;700&family=Nunito:wght@300;400;600;700;800&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ===========================
   DESIGN SYSTEM — Shawty
   =========================== */

:root {
  /* Cores principais */
  --pink:          #ff6b9d;
  --pink-light:    #ff8fab;
  --pink-pale:     #ffb3c6;
  --pink-blush:    #ffe4ec;
  --blue:          #6b9dff;
  --blue-light:    #a8c8ff;
  --purple:        #c77dff;
  --purple-dark:   #9b5de5;
  --navy:          #1a1a2e;
  --navy-mid:      #16213e;
  --brown:         #8d6e63;
  --cream:         #fff8f0;
  --white:         #ffffff;
  --gold:          #ffd700;
  --green-ok:      #4ade80;
  --red-err:       #ef4444;

  /* Tipografia */
  --font-romantic: 'Dancing Script', cursive;
  --font-body:     'Nunito', sans-serif;
  --font-display:  'Playfair Display', serif;

  /* Sombras */
  --shadow-sm:   0 2px 8px rgba(0,0,0,.25);
  --shadow-md:   0 4px 20px rgba(0,0,0,.35);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.45);
  --shadow-pink: 0 0 20px rgba(255,107,157,.4);
  --shadow-glow: 0 0 30px rgba(255,107,157,.6);

  /* Bordas */
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-full: 9999px;
}

/* ===== Reset ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===== Animações ===== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

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

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(.85); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.08); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%  { transform: translateX(-8px); }
  40%  { transform: translateX(8px); }
  60%  { transform: translateX(-5px); }
  80%  { transform: translateX(5px); }
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  14%  { transform: scale(1.18); }
  28%  { transform: scale(1); }
  42%  { transform: scale(1.12); }
  70%  { transform: scale(1); }
}

@keyframes twinkle {
  0%, 100% { opacity: .3; transform: scale(.8); }
  50%       { opacity: 1;  transform: scale(1.1); }
}

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

@keyframes bounceIn {
  0%   { transform: scale(0); opacity: 0; }
  60%  { transform: scale(1.1); }
  80%  { transform: scale(.95); }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes petalFall {
  0%   { transform: translateY(-20px) rotate(0deg);   opacity: 0; }
  10%  { opacity: .7; }
  90%  { opacity: .7; }
  100% { transform: translateY(110vh) rotate(380deg); opacity: 0; }
}

@keyframes ropeSwing {
  0%, 100% { transform: translate(-50%, 0) rotate(-1.5deg); }
  50%       { transform: translate(-50%, 0) rotate(1.5deg); }
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar       { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 3px; }

/* ===== Mobile tap: remove 300ms delay + highlight azul ===== */
button, a, [role="button"], input, textarea, select, label {
  touch-action: manipulation;
}
button, a, [role="button"] {
  -webkit-tap-highlight-color: transparent;
}
* { -webkit-tap-highlight-color: transparent; }

/* ===== Canvas de partículas (compartilhado) ===== */
canvas.particles {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
