/* =============================================
   MYA ♡ ARTES — stylesheet
   Paleta: rosa claro, creme, branco, lilás suave
   Fonte display: Playfair Display
   Fonte corpo: Quicksand
============================================= */

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

:root {
  --rosa:      #F2C4CE;
  --rosa-deep: #E8A0B0;
  --creme:     #FAF6F1;
  --branco:    #FFFDF9;
  --lilac:     #E8DEF0;
  --lilac-deep:#C9B8DC;
  --bege:      #F0E9DF;
  --texto:     #4A3F47;
  --texto-soft:#7A6B72;
  --border:    rgba(242,196,206,0.45);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-pill: 999px;

  --shadow-soft: 0 4px 24px rgba(200,150,170,0.13);
  --shadow-card: 0 6px 28px rgba(200,150,170,0.18);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Quicksand', sans-serif;
  font-weight: 400;
  color: var(--texto);
  background: var(--branco);
  overflow-x: hidden;
}

/* ── Tipografia ── */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

/* ── Partículas flutuantes ── */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  font-size: 14px;
  opacity: 0;
  animation: floatUp var(--dur, 8s) ease-in infinite;
  animation-delay: var(--delay, 0s);
  color: var(--rosa-deep);
  user-select: none;
}

@keyframes floatUp {
  0%   { transform: translateY(100vh) rotate(0deg);   opacity: 0; }
  10%  { opacity: 0.55; }
  90%  { opacity: 0.35; }
  100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  background: rgba(255,253,249,0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1.5px solid var(--border);
  transition: box-shadow 0.3s;
}

.navbar.scrolled { box-shadow: var(--shadow-soft); }

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--texto);
  letter-spacing: 0.02em;
}
.nav-logo .bow { font-style: normal; }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--texto-soft);
  letter-spacing: 0.04em;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1.5px;
  background: var(--rosa-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover { color: var(--texto); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--texto);
  padding: 4px;
}

/* ── Fade-in ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ── HERO ── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 64px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #FFF5F8 0%, var(--branco) 55%, #F5EFFE 100%);
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 860px;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Foto com moldura */
.photo-frame {
  position: relative;
  flex-shrink: 0;
}

.profile-photo {
  width: 240px;
  height: 300px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  border: 3px solid var(--rosa);
  box-shadow: var(--shadow-card), 0 0 0 8px rgba(242,196,206,0.18);
  display: block;
}

/* Decos flutuantes em volta da foto */
.photo-deco {
  position: absolute;
  font-size: 1.2rem;
  color: var(--rosa-deep);
  animation: wiggle 3s ease-in-out infinite;
}
.photo-deco--star  { top: -14px; right: -10px; animation-delay: 0s;    color: #C9B8DC; font-size: 1rem; }
.photo-deco--heart { bottom: 18px; right: -18px; animation-delay: 0.6s; color: var(--rosa-deep); }
.photo-deco--flower{ bottom: -12px; left: 10px;  animation-delay: 1.1s; color: #C9B8DC; }

@keyframes wiggle {
  0%,100% { transform: translateY(0)   rotate(-6deg); }
  50%      { transform: translateY(-8px) rotate(6deg);  }
}

/* Texto hero */
.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  color: var(--rosa-deep);
  margin-bottom: 4px;
}

.hero-name {
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  font-weight: 600;
  font-style: italic;
  color: var(--texto);
  line-height: 1;
  margin-bottom: 16px;
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--texto-soft);
  margin-bottom: 32px;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border-radius: var(--radius-pill);
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  padding: 14px 30px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s;
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--rosa) 0%, var(--rosa-deep) 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(232,160,176,0.45);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(232,160,176,0.55);
}

.btn--download {
  background: linear-gradient(135deg, var(--lilac) 0%, var(--lilac-deep) 100%);
  color: var(--texto);
  font-size: 1.05rem;
  padding: 18px 40px;
  box-shadow: 0 6px 22px rgba(201,184,220,0.45);
}
.btn--download:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(201,184,220,0.55);
}

.btn-icon { font-size: 1.1em; }

/* Background hero decorativo */
.hero-bg-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg-deco span {
  position: absolute;
  font-size: 2rem;
  opacity: 0.1;
  animation: drift 12s ease-in-out infinite;
}
.bg-kitty  { top: 12%;  left: 5%;   animation-delay: 0s;   font-size: 2.8rem; }
.bg-star   { top: 65%;  left: 8%;   animation-delay: 2s;   font-size: 1.6rem; }
.bg-heart  { top: 20%;  right: 6%;  animation-delay: 3.5s; font-size: 2.4rem; }
.bg-bow    { bottom: 18%; right: 10%; animation-delay: 1s;  font-size: 3rem;   }
.bg-flower { bottom: 10%; left: 42%; animation-delay: 4s;  font-size: 2rem;   }

@keyframes drift {
  0%,100% { transform: translate(0,0)     rotate(0deg); }
  33%      { transform: translate(10px,-12px) rotate(8deg);  }
  66%      { transform: translate(-8px,8px)   rotate(-6deg); }
}

/* ── Seções genéricas ── */
.section { padding: 96px 24px; position: relative; z-index: 1; }
.section--cream  { background: var(--creme); }
.section--white  { background: var(--branco); }
.section--lilac  { background: var(--lilac); }
.section--download {
  background: linear-gradient(160deg, #FFF0F5 0%, var(--lilac) 100%);
}

.container {
  max-width: 740px;
  margin: 0 auto;
}

/* Tag de seção */
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  color: var(--rosa-deep);
  background: rgba(242,196,206,0.22);
  border: 1.5px solid var(--rosa);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-style: italic;
  color: var(--texto);
  margin-bottom: 20px;
}

.section-text {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--texto-soft);
  margin-bottom: 14px;
}

/* ── Tags / Pillzinhas ── */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tag {
  background: var(--branco);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 7px 16px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--texto-soft);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.tag:hover {
  border-color: var(--rosa-deep);
  color: var(--texto);
  transform: translateY(-2px);
}

/* ── Timeline ── */
.timeline {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--rosa), var(--lilac-deep));
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  gap: 24px;
  padding-bottom: 36px;
  position: relative;
}
.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--rosa);
  border: 2.5px solid var(--rosa-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #fff;
  position: relative;
  z-index: 1;
  transition: transform 0.25s;
}
.timeline-item:hover .timeline-dot { transform: scale(1.18); }

.timeline-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--texto);
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--texto-soft);
}

/* ── Quote card ── */
.quote-card {
  margin-top: 36px;
  background: rgba(255,255,255,0.65);
  border: 1.5px solid var(--lilac-deep);
  border-left: 4px solid var(--rosa-deep);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  backdrop-filter: blur(6px);
}

.quote-card p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--texto);
  line-height: 1.7;
  margin-bottom: 10px;
}

.quote-card span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--rosa-deep);
  letter-spacing: 0.06em;
}

/* ── Art grid ── */
.art-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.art-card {
  background: var(--branco);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
}
.art-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: var(--rosa);
}

.art-card--wide { grid-column: span 3; }

.art-card__icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
  display: block;
}

.art-card h3 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--texto);
  margin-bottom: 7px;
}

.art-card p {
  font-size: 0.87rem;
  color: var(--texto-soft);
  line-height: 1.65;
}

/* ── Avail cards ── */
.avail-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.avail-card {
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.25s;
}
.avail-card:hover { transform: translateY(-4px); }

.avail-card--free {
  background: rgba(242,196,206,0.18);
  border: 1.5px solid var(--rosa);
}
.avail-card--paid {
  background: rgba(232,222,240,0.35);
  border: 1.5px solid var(--lilac-deep);
}

.avail-card__icon { font-size: 1.8rem; margin-bottom: 10px; display: block; }

.avail-card h3 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--texto);
  margin-bottom: 8px;
}

.avail-card p {
  font-size: 0.9rem;
  color: var(--texto-soft);
  line-height: 1.65;
}

/* ── Download ── */
.download-card {
  max-width: 560px;
  margin: 0 auto;
  background: rgba(255,255,255,0.75);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 52px 40px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
}

.download-deco {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 1.1rem;
  color: var(--rosa-deep);
  margin-bottom: 20px;
  opacity: 0.7;
}

.download-title {
  font-size: 2rem;
  font-style: italic;
  color: var(--texto);
  margin-bottom: 14px;
}

.download-desc {
  font-size: 0.97rem;
  color: var(--texto-soft);
  line-height: 1.8;
  margin-bottom: 30px;
}

.download-note {
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--texto-soft);
  opacity: 0.7;
}

/* ── Footer ── */
.footer {
  background: var(--creme);
  border-top: 1.5px solid var(--border);
  text-align: center;
  padding: 36px 24px 28px;
}

.footer-deco {
  font-size: 1rem;
  color: var(--rosa-deep);
  letter-spacing: 0.2em;
  margin-bottom: 14px;
  opacity: 0.6;
}

.footer-msg {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--texto);
  margin-bottom: 6px;
}

.footer-name {
  font-size: 0.82rem;
  color: var(--texto-soft);
}

/* ══════════════════════════════════════
   Responsivo — mobile
══════════════════════════════════════ */
@media (max-width: 700px) {

  .navbar { padding: 12px 20px; }

  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100svh;
    width: min(280px, 80vw);
    background: var(--branco);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    border-left: 1.5px solid var(--border);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 200;
  }

  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.05rem; }

  .nav-toggle { display: block; z-index: 210; }

  .hero { padding: 80px 20px 56px; }

  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .profile-photo { width: 170px; height: 210px; }

  .hero-name { font-size: 3rem; }

  .art-grid {
    grid-template-columns: 1fr 1fr;
  }
  .art-card--wide { grid-column: span 2; }

  .avail-cards { grid-template-columns: 1fr; }

  .download-card { padding: 36px 22px; }

  .section { padding: 72px 20px; }
}

@media (max-width: 440px) {
  .art-grid { grid-template-columns: 1fr; }
  .art-card--wide { grid-column: span 1; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .fade-in { opacity: 1; transform: none; }
}
