/* ==================================================
   IDENTIDADE VISUAL KAVÔD CONFEITARIA
   ================================================== */

:root {
  --rosa-claro: #f6d6df;
  --rosa-medio: #e8a8b8;
  --dourado: #c9a24d;
  --amarelo-suave: #f4e7b5;
  --lilas: #c6b7d8;
  --roxo-suave: #7a5c8d;
  --pink-detalhe: #e04b7a;
  --marfim: #fffaf4;
  --texto-principal: #4a3b35;
}

/* ==================================================
   RESET & BASE
   ================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--marfim);
  color: var(--texto-principal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: var(--roxo-suave);
}

h1 { font-size: clamp(2.2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
h3 { font-size: 1.2rem; }

p { max-width: 68ch; }

a {
  text-decoration: none;
  color: inherit;
  transition: .3s ease;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

/* ==================================================
   CONTAINER & GRID
   ================================================== */

.container {
  max-width: 1140px;
  margin: auto;
  padding: 0 20px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

/* ==================================================
   HEADER & NAV
   ================================================== */

.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.logo {
  font-size: 1.8rem;
  color: var(--roxo-suave);
}

.nav-menu {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-menu a.active,
.nav-menu a:hover {
  color: var(--pink-detalhe);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
}

/* ==================================================
   HERO
   ================================================== */

.hero {
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(180deg, #fff, var(--rosa-claro));
}

/* ==================================================
   SEÇÕES
   ================================================== */

.section { padding: 80px 0; }

.section-soft { background: #f8f2ec; }

.eyebrow {
  font-size: .75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 12px;
}

/* ==================================================
   BOTÕES
   ================================================== */

.btn-primary {
  background: var(--pink-detalhe);
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  display: inline-block;
}

.btn-primary:hover { background: #c93a66; }

.btn-secondary {
  border: 1px solid var(--dourado);
  padding: 10px 24px;
  border-radius: 30px;
  color: var(--dourado);
}

.btn-secondary:hover { background: var(--amarelo-suave); }

/* ==================================================
   CARDS
   ================================================== */

.card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0,0,0,.05);
}

/* ==================================================
   FOOTER
   ================================================== */

.site-footer {
  background: #fff;
  border-top: 1px solid #eee;
  padding: 32px 0;
  text-align: center;
}

/* ==================================================
   ANIMAÇÕES
   ================================================== */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: .6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ==================================================
   WHATSAPP FIXO
   ================================================== */

.whatsapp-fixo {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  z-index: 999;
}

/* ==================================================
   RESPONSIVO + MENU MOBILE FUNCIONAL
   ================================================== */

@media (max-width: 768px) {

  .menu-toggle { display: block; }

  .nav-menu {
    position: fixed;
    top: 72px;
    right: 0;
    background: #fff;
    flex-direction: column;
    width: 100%;
    padding: 24px;
    gap: 20px;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: .3s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
  }

  .nav-menu.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}
