@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

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

:root {
  --ardosia: #50576D;
  --roxo: #5F4A66;
  --rose: #DDBAC4;
  --lila: #E0D4E4;
  --creme: #EFE3E0;
  --branco: #fff;
  --texto: #3a3040;
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Jost', sans-serif;
  --shadow-soft: 0 14px 40px -18px rgba(95, 74, 102, 0.22);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  color: var(--texto);
  background: var(--creme);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ===== NAV ===== */
nav {
  background: var(--ardosia);
  padding: 18px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-brand { display: flex; align-items: center; text-decoration: none; }
.nav-logo { height: 58px; width: auto; display: block; }
/* Legacy text labels kept for semantics but hidden — logo image already contains the wordmark */
.nav-brand-text { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.nav-brand-name, .nav-brand-sub { display: none; }

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  color: var(--lila);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
  padding: 4px 0;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta).active::after { transform: scaleX(1); }
.nav-links a:hover, .nav-links a.active { color: var(--rose); }
.nav-cta {
  background: var(--rose) !important;
  color: var(--ardosia) !important;
  padding: 12px 24px;
  font-weight: 600 !important;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--roxo) !important; color: var(--creme) !important; transform: translateY(-1px); }

/* Hamburger button */
.nav-burger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  z-index: 110;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.2px;
  background: var(--rose);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.2px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.2px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn-primary, .btn-ghost-light, .btn-ghost-dark, .btn-ghost {
  display: inline-block;
  padding: 16px 34px;
  font-size: 13px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--rose);
  color: var(--ardosia);
}
.btn-primary:hover {
  background: var(--roxo);
  color: var(--creme);
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}
.btn-ghost-light {
  background: transparent;
  color: var(--creme);
  border-color: rgba(255,255,255,0.45);
  font-weight: 500;
}
.btn-ghost-light:hover { border-color: var(--rose); color: var(--rose); }
.btn-ghost-dark {
  background: transparent;
  color: var(--roxo);
  border-color: var(--rose);
  font-weight: 500;
}
.btn-ghost-dark:hover { background: var(--rose); color: var(--ardosia); }
.btn-ghost {
  background: transparent;
  color: var(--rose);
  border-color: var(--rose);
  font-weight: 500;
}
.btn-ghost:hover { background: rgba(221,186,196,0.12); color: var(--creme); border-color: var(--creme); }

/* ===== TYPOGRAPHY ===== */
.section-label { font-size: 11px; font-weight: 600; letter-spacing: 3.5px; color: var(--rose); text-transform: uppercase; display: block; margin-bottom: 16px; }
.section-label-light { font-size: 11px; font-weight: 600; letter-spacing: 3.5px; color: var(--lila); text-transform: uppercase; display: block; margin-bottom: 16px; opacity: 0.85; }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.15; letter-spacing: -0.3px; }
h1 { font-size: clamp(42px, 5.6vw, 72px); }
h2 { font-size: clamp(32px, 4vw, 50px); }
h3 { font-size: clamp(22px, 2.5vw, 30px); }

.divider { height: 0.5px; background: var(--rose); opacity: 0.3; }

/* ===== FOOTER ===== */
footer {
  background: var(--roxo);
  padding: 32px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
footer span { font-size: 12px; color: var(--lila); opacity: 0.8; letter-spacing: 1px; }
.footer-links { display: flex; gap: 26px; }
.footer-links a {
  font-size: 12px;
  font-weight: 500;
  color: var(--rose);
  text-decoration: none;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: opacity 0.2s;
}
.footer-links a:hover { opacity: 0.7; }

/* ===== CONTATO section (shared) ===== */
.contato-section {
  background: var(--ardosia);
  padding: 80px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.contato-section h2 { color: var(--creme); margin-bottom: 28px; font-size: clamp(30px, 3vw, 42px); }
.contato-info p {
  font-size: 16px;
  color: var(--lila);
  line-height: 2.2;
  display: flex;
  gap: 14px;
  align-items: baseline;
}
.contato-info strong {
  color: var(--rose);
  font-weight: 600;
  min-width: 104px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.8s ease forwards; }
.fade-up-2 { animation: fadeUp 0.8s 0.15s ease both; }
.fade-up-3 { animation: fadeUp 0.8s 0.3s ease both; }
.fade-up-4 { animation: fadeUp 0.8s 0.45s ease both; }

/* ===== FLOATING WHATSAPP ===== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  box-shadow: 0 8px 22px rgba(37,211,102,0.35);
  text-decoration: none;
  transition: transform 0.2s;
}
.wa-float:hover { transform: translateY(-2px) scale(1.04); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  nav { padding: 14px 20px; }
  .nav-logo { height: 46px; }
  .nav-burger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 82vw);
    background: var(--ardosia);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 40px;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(.2,.8,.2,1);
    border-left: 1px solid rgba(221,186,196,0.15);
    box-shadow: -20px 0 40px -20px rgba(0,0,0,0.3);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 15px; letter-spacing: 3px; }
  .nav-cta { align-self: stretch; text-align: center; margin-top: 14px; }
  footer { padding: 24px 20px; }
  .contato-section { padding: 56px 20px; }
}

@media (max-width: 560px) {
  .wa-float { width: 50px; height: 50px; bottom: 18px; right: 18px; }
  .wa-float svg { width: 24px; height: 24px; }
}
