/* =========================================================
   CHERRY — Vestuário Feminino
   Paleta baseada no logo: cinza grafite elegante + off-white,
   com toque sutil de cereja/rosé para a identidade de moda.
   ========================================================= */

:root {
  --graphite:   #5f5f5f;   /* cinza do logo */
  --graphite-d: #3c3a39;   /* texto/títulos */
  --ink:        #2b2a29;
  --ivory:      #faf7f4;   /* fundo principal */
  --ivory-2:    #f1ece7;   /* seções alternadas */
  --line:       #e4ddd6;
  --cherry:     #9c2f44;   /* acento moda feminina (sutil) */
  --cherry-d:   #7e2436;
  --blush:      #e9dcd8;
  --white:      #ffffff;

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Jost", "Segoe UI", system-ui, sans-serif;

  --maxw: 1140px;
  --radius: 2px;
  --shadow: 0 18px 50px -25px rgba(60,58,57,.45);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--graphite-d);
  background: var(--ivory);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ===== TIPOGRAFIA ===== */
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.15; color: var(--ink); }

.eyebrow {
  font-size: .72rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--cherry);
  margin-bottom: 14px;
  font-weight: 400;
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,247,244,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
}
.nav__logo { height: 26px; width: auto; object-fit: contain; mix-blend-mode: multiply; }
.nav__menu { list-style: none; display: flex; align-items: center; gap: 30px; }
.nav__menu a {
  font-size: .82rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--graphite); transition: color .2s;
}
.nav__menu a:hover { color: var(--cherry); }
.nav__cta {
  border: 1px solid var(--graphite-d);
  padding: 9px 18px; border-radius: var(--radius);
  color: var(--graphite-d) !important;
}
.nav__cta:hover { background: var(--graphite-d); color: var(--ivory) !important; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--graphite-d); transition: .3s; }

/* ===== HERO ===== */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 80% 20%, rgba(233,220,216,.6), transparent 55%),
    linear-gradient(180deg, var(--white) 0%, var(--ivory) 100%);
  padding: 96px 24px 110px;
  text-align: center;
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(transparent 0 calc(100% - 1px), var(--line) 100%);
  background-size: 100% 64px; opacity: .35; pointer-events: none;
}
.hero__inner { position: relative; max-width: 760px; margin: 0 auto; z-index: 1; }
.hero__eyebrow {
  font-size: .74rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--graphite); margin-bottom: 30px;
}
.hero__logo { height: 78px; width: auto; margin: 0 auto 26px; object-fit: contain; mix-blend-mode: multiply; }
.hero__title { font-size: clamp(2.4rem, 6vw, 4rem); letter-spacing: .01em; margin-bottom: 22px; }
.hero__text {
  font-size: 1.1rem; max-width: 540px; margin: 0 auto 36px; color: var(--graphite);
}
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== BOTÕES ===== */
.btn {
  display: inline-block; padding: 14px 30px;
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  border-radius: var(--radius); transition: all .25s; cursor: pointer; border: 1px solid transparent;
}
.btn--primary { background: var(--cherry); color: #fff; }
.btn--primary:hover { background: var(--cherry-d); transform: translateY(-2px); }
.btn--ghost { border-color: var(--graphite-d); color: var(--graphite-d); }
.btn--ghost:hover { background: var(--graphite-d); color: var(--ivory); }

/* ===== SEÇÕES ===== */
.section { padding: 92px 0; }
.section--alt { background: var(--ivory-2); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section__title { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 16px; }
.section__lead { color: var(--graphite); }
.section__content p { margin-bottom: 18px; color: var(--graphite); }
.section__content p strong { color: var(--graphite-d); font-weight: 500; }

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

/* moldura decorativa (sem foto) */
.media-frame {
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 30% 25%, rgba(233,220,216,.7), transparent 60%),
    linear-gradient(135deg, var(--white), var(--ivory-2));
  display: grid; place-items: center;
  position: relative;
}
.media-frame::before {
  content: ""; position: absolute; inset: 14px; border: 1px solid var(--line);
}
.media-frame__word {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(2.5rem, 7vw, 4.5rem); color: var(--graphite);
}

.link-arrow {
  display: inline-block; margin-top: 8px;
  font-size: .85rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--cherry); border-bottom: 1px solid currentColor; padding-bottom: 3px;
}
.link-arrow:hover { color: var(--cherry-d); }

/* ===== CARDS ===== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
  background: var(--white); border: 1px solid var(--line);
  padding: 42px 30px; text-align: center; transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card__icon { font-size: 1.6rem; color: var(--cherry); display: block; margin-bottom: 16px; }
.card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.card p { color: var(--graphite); font-size: .98rem; }

/* ===== CONTATO ===== */
.contact-list { list-style: none; margin: 0 0 32px; }
.contact-list li { padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-list__label {
  display: block; font-size: .7rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--cherry); margin-bottom: 5px;
}
.contact-list a { color: var(--graphite-d); transition: color .2s; }
.contact-list a:hover { color: var(--cherry); }

.map-wrap {
  border: 1px solid var(--line); overflow: hidden; height: 100%; min-height: 360px;
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 360px; border: 0; filter: grayscale(.3) contrast(.95); }

/* ===== FOOTER ===== */
.footer { background: var(--graphite-d); color: #d9d4cf; padding: 60px 0 36px; text-align: center; }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.footer__wordmark {
  font-family: var(--serif); font-size: 2.1rem; letter-spacing: .04em;
  color: #efe9e3; line-height: 1;
}
.footer__tagline { font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: #efe9e3; }
.footer__links { display: flex; gap: 26px; flex-wrap: wrap; justify-content: center; align-items: center; }
.footer__links a, .footer__policy {
  font-size: .8rem; letter-spacing: .08em; text-transform: uppercase;
  color: #cfc9c3; background: none; border: 0; cursor: pointer; font-family: var(--sans);
  transition: color .2s; padding: 4px 0;
}
.footer__links a:hover, .footer__policy:hover { color: #fff; }
.footer__policy { border-bottom: 1px solid rgba(255,255,255,.4); }
.footer__copy { font-size: .76rem; color: #9c9690; margin-top: 8px; letter-spacing: .03em; }

/* ===== WHATSAPP FLUTUANTE ===== */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 26px -8px rgba(37,211,102,.7);
  transition: transform .25s;
}
.wa-float:hover { transform: scale(1.08); }

/* ===== MODAL ===== */
.modal { position: fixed; inset: 0; z-index: 100; display: none; }
.modal.is-open { display: block; }
.modal__overlay { position: absolute; inset: 0; background: rgba(43,42,41,.55); backdrop-filter: blur(3px); }
.modal__dialog {
  position: relative; z-index: 1;
  max-width: 720px; width: calc(100% - 40px);
  max-height: 86vh; overflow-y: auto;
  margin: 7vh auto; background: var(--ivory);
  border-radius: var(--radius); box-shadow: var(--shadow);
  animation: pop .3s ease;
}
@keyframes pop { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.modal__close {
  position: sticky; top: 0; float: right;
  background: none; border: 0; font-size: 2rem; line-height: 1;
  color: var(--graphite); cursor: pointer; padding: 14px 20px; z-index: 2;
}
.modal__close:hover { color: var(--cherry); }
.modal__content { padding: 18px 44px 48px; }
.modal__content h2 { font-size: 2rem; margin-bottom: 6px; }
.modal__updated { font-size: .8rem; color: var(--graphite); margin-bottom: 26px; }
.modal__content h3 { font-size: 1.25rem; margin: 26px 0 8px; color: var(--graphite-d); }
.modal__content p { margin-bottom: 12px; color: var(--graphite); font-size: .96rem; }
.modal__content ul { margin: 0 0 14px 20px; color: var(--graphite); font-size: .96rem; }
.modal__content li { margin-bottom: 6px; }
.modal__content a { color: var(--cherry); border-bottom: 1px solid currentColor; }
.modal__note { font-style: italic; font-size: .88rem; margin-top: 22px; }

/* ===== RESPONSIVO ===== */
@media (max-width: 860px) {
  .grid-2 { grid-template-columns: 1fr; gap: 36px; }
  .cards { grid-template-columns: 1fr; }

  .nav__toggle { display: flex; }
  .nav__menu {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--ivory); border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height .35s ease;
  }
  .nav__menu.is-open { max-height: 420px; }
  .nav__menu li { width: 100%; text-align: center; }
  .nav__menu li a { display: block; padding: 16px; border-top: 1px solid var(--line); }
  .nav__cta { border: 0 !important; }
}

@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .hero { padding: 70px 20px 80px; }
  .modal__content { padding: 14px 24px 36px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
}
