:root {
  --bg: #fff9f4;
  --bg-soft: #fff2eb;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #fffdfb;
  --text: #43283d;
  --muted: #725669;
  --line: rgba(115, 76, 96, 0.14);
  --accent: #c16086;
  --accent-dark: #8f4062;
  --accent-soft: #f8d5dd;
  --gold: #d7a15c;
  --shadow: 0 24px 60px rgba(118, 75, 92, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 220, 210, 0.7), transparent 28%),
    radial-gradient(circle at bottom right, rgba(245, 200, 220, 0.55), transparent 24%),
    linear-gradient(180deg, #fffdfb 0%, var(--bg) 55%, #fff7f0 100%);
  font-family: "Nunito", "Trebuchet MS", sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 247, 0.75);
  border-bottom: 1px solid rgba(115, 76, 96, 0.08);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.brand strong,
.section-heading h2,
.hero h1,
.service-card h3,
.cta-shell h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.brand strong {
  display: block;
  font-size: 1.6rem;
  line-height: 1;
}

.brand span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
  color: var(--muted);
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 16px;
  font: inherit;
  font-weight: 800;
}

.hero {
  padding: 64px 0 16px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--accent-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.1rem);
  line-height: 0.92;
}

.section-heading p,
.service-card p,
.cta-shell p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: 0 18px 35px rgba(193, 96, 134, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  color: var(--text);
}

.service-card,
.cta-shell {
  background: var(--surface);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.section {
  padding: 110px 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 36px;
}

.section-heading h2,
.cta-shell h2 {
  margin: 0 0 14px;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 0.95;
}

.service-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 720px;
}

.service-card {
  padding: 30px;
  border-radius: 28px;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(193, 96, 134, 0.16), rgba(215, 161, 92, 0.24));
  color: var(--accent-dark);
  font-weight: 800;
}

.service-card h3 {
  margin: 18px 0 10px;
  font-size: 2rem;
  line-height: 0.95;
}

.location-section {
  padding-top: 10px;
}

.location-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: center;
}

.location-photo-card,
.location-copy {
  background: var(--surface);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  border-radius: 30px;
}

.location-photo-card {
  overflow: hidden;
}

.location-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.rosaria-photo-section {
  padding-top: 0;
}

.rosaria-photo-card {
  max-width: 760px;
  margin: 0 auto;
}

.rosaria-photo-card img {
  min-height: 320px;
  max-height: 520px;
}

.location-copy {
  padding: 34px;
}

.location-address {
  margin: 22px 0 0;
  color: var(--accent-dark);
  font-weight: 800;
  line-height: 1.85;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.section-cta {
  padding-top: 40px;
}

.cta-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 241, 235, 0.92), rgba(255, 250, 247, 0.95));
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 18px 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #27d467, #149c47);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 20px 38px rgba(20, 156, 71, 0.35);
}

.whatsapp-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.whatsapp-icon svg {
  display: block;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.menu-toggle {
  font-size: 1.4rem;
  line-height: 1;
}

@media (max-width: 1024px) {
  .hero-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .cta-shell {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-radius: 24px;
    background: rgba(255, 251, 248, 0.98);
    border: 1px solid rgba(115, 76, 96, 0.1);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 10px;
    border-bottom: 1px solid rgba(115, 76, 96, 0.08);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    padding-top: 32px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 20px 0;
  }

  .section-heading h2,
  .cta-shell h2 {
    font-size: 2.0rem;
  }

  .brand span {
    display: none;
  }

  .whatsapp-float span:last-child {
    display: none;
  }

  .whatsapp-float {
    width: 58px;
    justify-content: center;
    padding-right: 14px;
  }
}

/* ── Feira do Empreendedor ── */
/* ── BANNER FEIRA — PÓS-EVENTO ── */
.feira-banner {
  background: linear-gradient(135deg, #0d1f3a 0%, #1a0d14 50%, #0d2550 100%);
  color: #fff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.feira-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 10% 60%, rgba(255,209,102,.1) 0%, transparent 50%),
    radial-gradient(circle at 90% 20%, rgba(193,96,134,.12) 0%, transparent 45%);
  pointer-events: none;
}

/* Faixa superior com confetes */
.feira-banner::after {
  content: '🎆 🎉 🏆 🎇 ✨ 🎊';
  position: absolute; top: 0; left: 0; right: 0;
  text-align: center; font-size: 1.1rem;
  letter-spacing: .6em;
  background: rgba(255,209,102,.08);
  border-bottom: 1px solid rgba(255,209,102,.2);
  padding: 6px 0;
  pointer-events: none;
}

.feira-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
  position: relative;
  padding-top: 10px;
}

/* Badge de resultado */
.feira-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,209,102,.18);
  border: 1.5px solid rgba(255,209,102,.5);
  color: #ffd166;
  font-weight: 800; font-size: .88rem;
  letter-spacing: .05em;
  padding: 6px 20px; border-radius: 999px;
  text-transform: uppercase;
}

.feira-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 700; color: #fff;
  margin: 0 0 10px; line-height: 1.2;
}
.feira-title em { color: #ffd166; font-style: normal; }

.feira-desc {
  font-size: clamp(.95rem, 2vw, 1.08rem);
  color: rgba(255,255,255,.85);
  max-width: 640px; margin: 0 auto; line-height: 1.75;
}
.feira-desc strong { color: #ffd166; }

/* Painel de números */
.feira-numeros {
  display: flex; align-items: stretch;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px; overflow: hidden;
  margin: 4px 0;
}
.feira-num-item {
  flex: 1; padding: 18px 24px;
  text-align: center; border-right: 1px solid rgba(255,255,255,.1);
}
.feira-num-item:last-child { border-right: none; }
.feira-num-val {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900; line-height: 1; display: block;
}
.feira-num-label {
  font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: rgba(255,255,255,.5); margin-top: 5px; display: block;
}

/* Reconhecimentos */
.feira-reconhecimentos {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  max-width: 680px;
}
.feira-rec {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px; padding: 7px 16px;
  font-size: .82rem; font-weight: 700; color: rgba(255,255,255,.85);
}

.feira-actions { margin-top: 4px; display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.btn-feira {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #f7941d, #e8820c);
  color: #fff; font-weight: 800; font-size: 1rem;
  padding: 14px 32px; border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(247,148,29,.4);
  transition: transform .18s, box-shadow .18s;
}
.btn-feira:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(247,148,29,.55); }

@media (max-width: 600px) {
  .feira-banner { padding: 44px 0; }
  .feira-numeros { flex-direction: row; }
  .feira-num-item { padding: 14px 12px; }
  .btn-feira { font-size: .95rem; padding: 12px 22px; }
}

