/* ============ MEI CLICK - ESTILOS COMPARTILHADOS ============ */
:root {
  --green-deep: #1a3a2e;
  --green-mid: #2d5a3d;
  --green-soft: #4a7c5a;
  --cream: #f5f0e6;
  --cream-warm: #ebe3d0;
  --gold: #c8a560;
  --gold-bright: #e0b56e;
  --ink: #1a1a17;
  --paper: #faf7f0;
  --rust: #b8533a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

.display { font-family: 'Fraunces', serif; font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; }

/* ============ LOGO ============ */
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.brand-mark {
  width: 42px; height: 42px;
  background: var(--green-deep);
  border-radius: 12px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.brand-mark::before {
  content: '';
  position: absolute;
  width: 8px; height: 8px;
  background: var(--rust);
  border-radius: 50%;
  top: 8px; right: 8px;
  box-shadow: 0 0 0 2px var(--green-deep), 0 0 0 4px var(--gold-bright);
  animation: clickPulse 2.4s infinite;
}

@keyframes clickPulse {
  0%, 70%, 100% { transform: scale(1); }
  35% { transform: scale(1.4); }
}

.brand-mark::after {
  content: 'M';
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--gold-bright);
  line-height: 1;
  margin-top: 4px;
  margin-left: -4px;
}

.brand-text {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--green-deep);
  letter-spacing: -0.02em;
  line-height: 1;
}

.brand-text span {
  display: block;
  font-size: 0.65rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--rust);
  margin-top: 2px;
  text-transform: uppercase;
}

/* ============ NAVBAR ============ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 5%;
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 58, 46, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--green-mid); }
.nav-links a.active { color: var(--green-deep); font-weight: 600; }

.btn-nav {
  background: var(--green-deep);
  color: var(--cream);
  padding: 0.6rem 1.3rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
}

.btn-nav:hover { background: var(--green-mid); transform: translateY(-1px); }

/* ============ MOBILE MENU ============ */
.menu-toggle {
  display: none;
  background: var(--green-deep);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 102;
  transition: background 0.2s;
}

.menu-toggle:hover { background: var(--green-mid); }

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold-bright);
  margin: 5px auto;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: var(--green-deep);
  z-index: 101;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0;
  padding: 5rem 1.5rem 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, visibility 0.25s ease;
  box-shadow: -10px 0 40px rgba(26, 58, 46, 0.3);
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(26, 58, 46, 0.4);
  backdrop-filter: blur(2px);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.menu-overlay a {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  transition: all 0.2s;
  border-bottom: 1px solid rgba(245, 240, 230, 0.08);
}

.menu-overlay a:last-of-type {
  border-bottom: none;
}

.menu-overlay a:hover, .menu-overlay a.active {
  color: var(--gold-bright);
  background: rgba(245, 240, 230, 0.05);
}

.menu-overlay .menu-whats {
  margin-top: 1.5rem;
  background: #25D366;
  color: white;
  padding: 0.9rem 1.2rem;
  border-radius: 100px;
  font-size: 0.95rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-bottom: none;
}

.menu-overlay .menu-whats:hover { color: white; background: #1faa55; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .menu-toggle { display: flex; flex-direction: column; justify-content: center; }
}

/* ============ SECTION HEADER ============ */
.section-header {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-tag {
  display: inline-block;
  color: var(--rust);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  color: var(--green-deep);
  margin-bottom: 0.8rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--ink);
  opacity: 0.75;
}

/* ============ BUTTONS ============ */
.btn-primary {
  background: var(--green-deep);
  color: var(--cream);
  padding: 1.1rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(26, 58, 46, 0.25);
}

.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26, 58, 46, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--green-deep);
  padding: 1.1rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--green-deep);
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: var(--green-deep);
  color: var(--cream);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  padding: 1.1rem 2.3rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

/* ============ FOOTER ============ */
footer {
  background: var(--ink);
  color: var(--cream);
  padding: 2.5rem 5% 1.5rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  margin-top: 1rem;
  opacity: 0.6;
  font-size: 0.9rem;
  max-width: 360px;
}

.footer-brand .brand-text { color: var(--cream); }

.footer h4 {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  color: var(--gold-bright);
  margin-bottom: 1rem;
}

.footer ul { list-style: none; }

.footer ul li {
  padding: 0.3rem 0;
  font-size: 0.9rem;
}

.footer ul li a {
  color: var(--cream);
  opacity: 0.7;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer ul li a:hover { opacity: 1; color: var(--gold-bright); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(245, 240, 230, 0.1);
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============ FLOATING WHATSAPP ============ */
.whats-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 50;
  text-decoration: none;
  color: white;
  transition: transform 0.2s;
  animation: bounce 2s infinite;
}

.whats-float:hover { transform: scale(1.1); }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ============ INTERNAL PAGE HERO ============ */
.page-hero {
  padding: 8rem 5% 4rem;
  background: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200, 165, 96, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--green-deep);
  margin-bottom: 1rem;
}

.page-hero h1 em { font-style: italic; color: var(--rust); font-weight: 500; }

.page-hero p {
  font-size: 1.15rem;
  color: var(--ink);
  opacity: 0.8;
}

/* ============ FINAL CTA ============ */
.final-cta {
  padding: 5rem 5%;
  background: var(--green-deep);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 100%; height: 100%;
  background: radial-gradient(ellipse at center, rgba(200, 165, 96, 0.15) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.final-cta-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 0.8rem;
  font-weight: 600;
  line-height: 1.1;
}

.final-cta h2 em { font-style: italic; color: var(--gold-bright); }

.final-cta p {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 2rem;
}
