/* =========================================================
   Amanda.marketing  |  one-page institucional
   Paleta: #B5306C (magenta) / #F4C7CC (rosa claro)
           #C9A961 (dourado) / #F5EFE6 (off-white) / #1A1A1A
   Tipografia: Playfair Display (headings) + Inter (body)
   ========================================================= */

:root {
  --magenta: #B5306C;
  --magenta-deep: #8E2455;
  --rose: #F4C7CC;
  --rose-soft: #FBE6E9;
  --gold: #C9A961;
  --gold-soft: #E3CC97;
  --cream: #F5EFE6;
  --cream-deep: #ECE3D2;
  --ink: #1A1A1A;
  --ink-soft: #4A4A4A;
  --ink-muted: #6E6E6E;
  --line: rgba(26, 26, 26, .08);

  --max: 1180px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 18px;
  --radius-sm: 10px;

  --shadow-soft: 0 14px 40px rgba(181, 48, 108, .10);
  --shadow-card: 0 20px 50px rgba(26, 26, 26, .06);

  --t-fast: .18s ease;
  --t-base: .28s cubic-bezier(.4,.2,.2,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.01em;
  margin: 0;
}

p { margin: 0; }

em { font-style: italic; color: var(--magenta); }

.container {
  width: 100%;
  max-width: var(--max);
  padding-inline: var(--gutter);
  margin-inline: auto;
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--magenta);
}
.eyebrow__div {
  display: inline-block;
  margin: 0 8px;
  color: var(--gold);
  font-weight: 400;
}

/* =====================  NAV  ===================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 239, 230, .85);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: -.01em;
}
.brand__mark {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--magenta);
  color: var(--cream);
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1;
}
.brand__name {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}
.brand__dot { color: var(--magenta); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color var(--t-fast);
}
.nav__links a:hover { color: var(--magenta); }
.nav__cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--magenta);
  color: var(--cream) !important;
  transition: background var(--t-base), transform var(--t-base);
}
.nav__cta:hover { background: var(--magenta-deep); transform: translateY(-1px); }

/* =====================  BUTTONS  ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .01em;
  transition: transform var(--t-base), background var(--t-base), color var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn__icon { flex: 0 0 auto; }

.btn--primary {
  background: var(--magenta);
  color: var(--cream);
  box-shadow: 0 10px 24px rgba(181, 48, 108, .25);
}
.btn--primary:hover {
  background: var(--magenta-deep);
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 14px 32px rgba(181, 48, 108, .32);
}

.btn--link {
  padding: 14px 4px;
  border-radius: 0;
  color: var(--ink);
  border-bottom: 1.5px solid var(--gold);
}
.btn--link:hover { color: var(--magenta); border-bottom-color: var(--magenta); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  transform: translateY(-2px);
}

.btn--invert {
  background: var(--cream);
  color: var(--magenta-deep);
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
}
.btn--invert:hover {
  background: #fff;
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* =====================  HERO  ===================== */
.hero {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 0 clamp(56px, 9vw, 110px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -10% -10% auto auto;
  width: 60%;
  height: 60%;
  background: radial-gradient(closest-side, var(--rose-soft), transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}
.hero__copy { max-width: 560px; }
.hero__title {
  font-size: clamp(36px, 5.6vw, 60px);
  margin: 18px 0 20px;
}
.hero__sub {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--ink-soft);
  max-width: 50ch;
}
.hero__ctas {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero__media {
  position: relative;
  padding: 18px;
}
.hero__photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 5;
  background: var(--rose);
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}
.hero__media::before {
  content: "";
  position: absolute;
  inset: 0 -22px -22px 0;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}
.hero__badge {
  position: absolute;
  left: -10px;
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--cream);
  padding: 12px 20px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}
.hero__badge-line {
  width: 28px;
  height: 2px;
  background: var(--magenta);
}
.hero__badge-text {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
}

/* =====================  SECTION BASE  ===================== */
.section {
  padding: clamp(72px, 10vw, 120px) 0;
}
.section--soft {
  background: var(--rose-soft);
}
.section__head { max-width: 640px; margin-bottom: clamp(40px, 6vw, 64px); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__title {
  font-size: clamp(30px, 4vw, 44px);
  margin: 14px 0 12px;
}
.section__lead {
  color: var(--ink-soft);
  font-size: 17px;
}

/* =====================  CARDS / SERVICOS  ===================== */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 32px);
}
.card {
  background: #fff;
  border-radius: var(--radius);
  padding: clamp(28px, 3.4vw, 40px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  position: relative;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 97, .55);
  box-shadow: 0 28px 60px rgba(26, 26, 26, .10);
}
.card__icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--rose-soft);
  color: var(--magenta);
  margin-bottom: 22px;
}
.card__title {
  font-size: 26px;
  margin-bottom: 10px;
}
.card__desc {
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.card__list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  color: var(--ink);
}
.card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 1.5px;
  background: var(--gold);
}

/* =====================  SOBRE  ===================== */
.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.sobre__media {
  position: relative;
  padding: 16px 16px 0 0;
}
.sobre__media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.sobre__deco {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 70%;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}
.sobre__copy p {
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 18px;
  max-width: 52ch;
}
.sobre__copy .btn { margin-top: 14px; }

/* =====================  PILLARS  ===================== */
.pillars {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
}
.pillar {
  text-align: center;
  padding: clamp(24px, 3vw, 36px) 20px;
  border-top: 1px solid var(--line);
  position: relative;
}
.pillar + .pillar::after {
  content: "";
  position: absolute;
  left: 0;
  top: 30%;
  height: 40%;
  width: 1px;
  background: var(--line);
}
.pillar__icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--magenta);
  margin-bottom: 18px;
  transition: background var(--t-base), color var(--t-base);
}
.pillar:hover .pillar__icon {
  background: var(--magenta);
  color: var(--cream);
  border-color: var(--magenta);
}
.pillar h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.pillar p {
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 32ch;
  margin: 0 auto;
}

/* =====================  CTA FINAL  ===================== */
.cta-final {
  background:
    radial-gradient(120% 100% at 80% 10%, rgba(201,169,97,.18), transparent 55%),
    linear-gradient(135deg, var(--magenta) 0%, var(--magenta-deep) 100%);
  color: var(--cream);
  padding: clamp(72px, 10vw, 120px) 0;
  position: relative;
  overflow: hidden;
}
.cta-final::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 28px;
  width: 80px;
  height: 1px;
  background: var(--gold);
  transform: translateX(-50%);
}
.cta-final__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.cta-final__title {
  font-size: clamp(30px, 4.4vw, 48px);
  max-width: 18ch;
}
.cta-final__title em { color: var(--gold-soft); }
.cta-final__sub {
  max-width: 52ch;
  color: rgba(245, 239, 230, .88);
  font-size: 17px;
}

/* =====================  FOOTER  ===================== */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 36px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.brand--footer .brand__mark { background: var(--magenta); color: var(--cream); }
.brand--footer .brand__name { color: var(--cream); }
.footer__copy {
  font-size: 13px;
  color: rgba(245, 239, 230, .65);
}
.footer__links {
  display: flex;
  gap: 22px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__links a {
  font-size: 13px;
  color: rgba(245, 239, 230, .85);
  transition: color var(--t-fast);
}
.footer__links a:hover { color: var(--gold-soft); }

/* =====================  RESPONSIVO  ===================== */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__copy { max-width: none; order: 2; }
  .hero__media { order: 1; max-width: 460px; margin-inline: auto; }
  .hero__badge { left: 0; }

  .sobre__grid { grid-template-columns: 1fr; }
  .sobre__media { max-width: 420px; margin-inline: auto; }

  .pillars { grid-template-columns: 1fr; }
  .pillar + .pillar::after { display: none; }
  .pillar { border-top: 1px solid var(--line); }
}

@media (max-width: 720px) {
  .nav__links a:not(.nav__cta) { display: none; }
  .nav__links { gap: 0; }

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

  .hero__title { font-size: clamp(30px, 9vw, 40px); }
  .hero__ctas { gap: 14px; }
  .btn { padding: 12px 22px; font-size: 14px; }

  .footer__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 420px) {
  .hero__badge { padding: 10px 16px; }
  .hero__badge-text { font-size: 11px; }
  .section__title { font-size: 28px; }
}

/* Acessibilidade: foco visivel */
a:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 999px;
}

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