:root {
  --bg: #f7efe4;
  --bg-deep: #efe1cf;
  --surface: rgba(255, 252, 247, .90);
  --surface-strong: #fffaf3;
  --line: rgba(170, 108, 15, .28);
  --line-soft: rgba(94, 67, 43, .12);
  --text: #332318;
  --muted: #746456;
  --amber: #aa6c0f;
  --amber-deep: #815009;
  --amber-soft: #ead6b3;
  --rose: #e6cfc8;
  --sage: #d9e1d2;
  --shadow: 0 22px 60px rgba(88, 61, 35, .13);
  --shadow-soft: 0 10px 30px rgba(88, 61, 35, .09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(230, 207, 200, .68), transparent 28%),
    radial-gradient(circle at 88% 22%, rgba(234, 214, 179, .74), transparent 29%),
    radial-gradient(circle at 52% 94%, rgba(217, 225, 210, .72), transparent 34%),
    linear-gradient(180deg, #fffaf3 0%, var(--bg) 55%, #f3e7d8 100%);
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .22;
  background-image:
    linear-gradient(90deg, transparent 49.7%, rgba(170,108,15,.08) 50%, transparent 50.3%),
    linear-gradient(transparent 49.7%, rgba(170,108,15,.055) 50%, transparent 50.3%);
  background-size: 86px 86px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.35), transparent 72%);
}

.noise {
  position: fixed;
  inset: 0;
  opacity: .018;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(5px);
  opacity: .56;
  pointer-events: none;
  z-index: 0;
  animation: float 12s ease-in-out infinite;
}
.orb-a { width: 190px; height: 190px; left: -72px; top: 14%; background: rgba(224, 190, 181, .44); }
.orb-b { width: 250px; height: 250px; right: -105px; top: 44%; background: rgba(229, 202, 158, .42); animation-delay: -4s; }
.orb-c { width: 170px; height: 170px; left: 19%; bottom: -65px; background: rgba(196, 210, 188, .44); animation-delay: -7s; }

.shell {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 28px));
  margin: 0 auto;
  padding: 34px 0 38px;
}

.hero,
.experience,
.about {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 253, 249, .96), rgba(251, 243, 232, .86));
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 34px 26px 30px;
  text-align: center;
  border-radius: 34px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(120deg, transparent 18%, rgba(255,255,255,.8), transparent 50%);
  transform: translateX(-120%);
  animation: shimmer 7s ease-in-out infinite;
  pointer-events: none;
}
.hero::after {
  content: "✦   ❧   ✦";
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  color: rgba(170, 108, 15, .38);
  letter-spacing: .55em;
  font-size: .66rem;
  white-space: nowrap;
  pointer-events: none;
}

.brand-change {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 15px;
  border: 1px solid rgba(170,108,15,.24);
  border-radius: 999px;
  color: var(--amber-deep);
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: rgba(255, 250, 243, .76);
  box-shadow: 0 7px 20px rgba(88, 61, 35, .06);
}
.brand-change::before,
.brand-change::after {
  content: "";
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber));
}
.brand-change::after { transform: scaleX(-1); }

.logo-wrap {
  position: relative;
  margin: 24px auto 12px;
  width: min(470px, 100%);
  padding: 7px;
  border: 1px solid rgba(170,108,15,.24);
  border-radius: 27px;
  background: rgba(255, 252, 247, .84);
  box-shadow: var(--shadow-soft);
}
.logo-wrap::before,
.logo-wrap::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 28px;
  height: 28px;
  pointer-events: none;
}
.logo-wrap::before {
  left: 14px;
  top: 14px;
  border-left: 1px solid var(--amber);
  border-top: 1px solid var(--amber);
}
.logo-wrap::after {
  right: 14px;
  bottom: 14px;
  border-right: 1px solid var(--amber);
  border-bottom: 1px solid var(--amber);
}
.logo-gif {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  filter: drop-shadow(0 10px 24px rgba(88,61,35,.10));
}
.tagline {
  margin: 18px 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.65rem, 5vw, 2.35rem);
  font-weight: 600;
  color: #3f2b1d;
}
.intro {
  max-width: 540px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.7;
  font-size: .95rem;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
  margin-bottom: 13px;
  flex-wrap: wrap;
}
.btn {
  border: 0;
  border-radius: 16px;
  min-width: 145px;
  padding: 14px 20px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fffaf3;
  background: linear-gradient(135deg, #bd8528, var(--amber));
  box-shadow: 0 10px 25px rgba(170,108,15,.22);
}
.btn-ghost {
  color: var(--amber-deep);
  background: rgba(255, 250, 243, .88);
  border: 1px solid rgba(170,108,15,.25);
  box-shadow: 0 8px 22px rgba(88,61,35,.06);
}

.experience {
  margin-top: 20px;
  padding: 28px 20px 20px;
  border-radius: 30px;
}
.section-heading { text-align: center; }
.section-heading::after {
  content: "•  ✦  •";
  display: block;
  margin: -9px 0 16px;
  color: rgba(170,108,15,.55);
  letter-spacing: .38em;
  font-size: .64rem;
}
.section-heading span,
.eyebrow {
  color: var(--amber-deep);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  font-weight: 700;
}
.section-heading h2,
.about h2 {
  margin: 6px 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 6vw, 2.8rem);
  color: #3b281b;
}
.switcher {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 6px;
  border-radius: 18px;
  background: #efe2d1;
  border: 1px solid rgba(170,108,15,.15);
  box-shadow: inset 0 1px 6px rgba(88,61,35,.06);
}
.switch {
  border: 0;
  border-radius: 13px;
  padding: 13px;
  color: #786657;
  font: inherit;
  font-weight: 700;
  background: transparent;
  cursor: pointer;
  transition: .25s ease;
}
.switch.active {
  color: #fffaf3;
  background: linear-gradient(135deg, #bf882e, #9b610b);
  box-shadow: 0 8px 20px rgba(116,74,13,.19);
}
.panel {
  position: relative;
  overflow: hidden;
  margin-top: 16px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(170,108,15,.16);
  background: rgba(255, 252, 247, .72);
  animation: enter .45s ease;
}
.panel::after {
  content: "❧";
  position: absolute;
  right: 18px;
  top: 12px;
  color: rgba(170,108,15,.20);
  font-size: 2.7rem;
  transform: rotate(-18deg);
  pointer-events: none;
}
.panel-moda { background: linear-gradient(145deg, rgba(243,224,218,.88), rgba(255,252,247,.82)); }
.panel-holistica { background: linear-gradient(145deg, rgba(225,233,218,.90), rgba(255,252,247,.82)); }
.panel-copy { position: relative; z-index: 1; }
.panel-copy h3 {
  margin: 6px 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: #3c291c;
}
.panel-copy p { color: var(--muted); line-height: 1.65; margin: 0 0 18px; }
.link-grid { position: relative; z-index: 1; display: grid; gap: 10px; }
.link-card {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  color: var(--text);
  text-decoration: none;
  border: 1px solid rgba(170,108,15,.16);
  background: rgba(255, 252, 247, .84);
  box-shadow: 0 7px 20px rgba(88,61,35,.055);
  transition: .25s ease;
}
.link-card:hover {
  transform: translateY(-3px) scale(1.01);
  border-color: rgba(170,108,15,.42);
  background: #fffdf9;
  box-shadow: 0 13px 26px rgba(88,61,35,.11);
}
.icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-size: 1.25rem;
  color: var(--amber-deep);
  background: linear-gradient(145deg, #f3e2c6, #fffaf3);
  border: 1px solid rgba(170,108,15,.15);
}
.link-card span:nth-child(2) { display: grid; gap: 4px; }
.link-card strong { font-size: .94rem; }
.link-card small { color: var(--muted); font-size: .75rem; }
.link-card b { color: var(--amber); }

.about {
  position: relative;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 20px;
  padding: 24px;
  border-radius: 28px;
  overflow: hidden;
}
.about::after {
  content: "";
  position: absolute;
  right: -35px;
  bottom: -52px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(170,108,15,.16);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(170,108,15,.035), 0 0 0 36px rgba(170,108,15,.025);
}
.about-symbol {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  color: #fffaf3;
  background: linear-gradient(135deg, #bf882e, var(--amber));
  box-shadow: 0 14px 28px rgba(116,74,13,.19);
}
.about > div:last-child { position: relative; z-index: 1; }
.about h2 { margin-bottom: 6px; }
.about p { margin: 0; color: var(--muted); line-height: 1.65; }

.footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  padding: 18px 8px 0;
  color: #897462;
  font-size: .76rem;
}
.footer p { margin: 0; }

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 20px);
  z-index: 5;
  opacity: 0;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fffaf3;
  background: var(--amber-deep);
  font-weight: 700;
  pointer-events: none;
  transition: .25s ease;
  box-shadow: var(--shadow-soft);
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(18px); transition: .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@keyframes shimmer { 0%, 70% { transform: translateX(-120%); } 100% { transform: translateX(120%); } }
@keyframes float { 0%,100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(0,-24px,0); } }
@keyframes enter { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

@media (max-width: 560px) {
  .shell { width: min(100% - 18px, 720px); padding-top: 18px; }
  .hero { padding: 28px 16px 27px; border-radius: 26px; }
  .brand-change::before,
  .brand-change::after { width: 11px; }
  .experience { padding: 24px 12px 12px; border-radius: 24px; }
  .panel { padding: 16px; }
  .about { grid-template-columns: 1fr; text-align: center; }
  .about-symbol { margin: 0 auto; }
  .footer { flex-direction: column; align-items: center; text-align: center; }
}

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


a.criagape,
a.criagape:visited,
a.criagape:hover,
a.criagape:active {
    color: inherit;
    text-decoration: none;
}


/* CARD DO ENDEREÇO */
.address-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  width: 100%;
  padding: 18px 22px;
  margin-top: 22px;

  background:
    linear-gradient(
      135deg,
      rgba(255, 253, 249, 0.98),
      rgba(250, 242, 231, 0.96)
    );

  border: 1px solid rgba(176, 120, 42, 0.24);
  border-radius: 26px;

  box-shadow:
    0 18px 45px rgba(75, 50, 30, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);

  overflow: hidden;
}

/* Detalhe decorativo discreto */
.address-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -75px;
  bottom: -95px;

  border: 1px solid rgba(190, 133, 51, 0.17);
  border-radius: 50%;

  pointer-events: none;
}

.address-info {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.address-main-icon {
  width: 68px;
  height: 68px;
  min-width: 68px;

  display: grid;
  place-items: center;

  background: linear-gradient(145deg, #d09125, #b87412);
  border-radius: 20px;

  box-shadow:
    0 12px 25px rgba(173, 108, 17, 0.23),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.address-main-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.address-text {
  min-width: 0;
}

.address-label {
  display: block;
  margin-bottom: 7px;

  color: #975a0b;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.address-text h3 {
  margin: 0 0 7px;

  color: #37291f;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 700;
  line-height: 1.3;
  text-transform: none;
}

.address-text p {
  margin: 0;

  color: #887568;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.address-actions {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  gap: 10px;

  padding-left: 20px;
  border-left: 1px solid rgba(136, 103, 75, 0.17);
}

.address-action {
  width: 58px;
  height: 58px;
  padding: 0;

  display: grid;
  place-items: center;

  background: rgba(255, 253, 249, 0.86);
  border: 1px solid rgba(171, 116, 38, 0.20);
  border-radius: 17px;

  cursor: pointer;

  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.address-action img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.address-action:hover {
  transform: translateY(-3px);
  background: #fffaf1;
  border-color: rgba(170, 109, 24, 0.45);

  box-shadow: 0 10px 22px rgba(101, 67, 34, 0.13);
}

.address-action:active {
  transform: scale(0.96);
}

.address-action:focus-visible {
  outline: 3px solid rgba(196, 132, 40, 0.25);
  outline-offset: 3px;
}

/* CELULAR */
@media (max-width: 680px) {
  .address-card {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
    padding: 18px;
    border-radius: 22px;
  }

  .address-info {
    align-items: flex-start;
    gap: 14px;
  }

  .address-main-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 17px;
  }

  .address-main-icon img {
    width: 29px;
    height: 29px;
  }

  .address-text h3 {
    font-size: 15px;
  }

  .address-text p {
    font-size: 13px;
  }

  .address-actions {
    justify-content: flex-end;
    padding-top: 14px;
    padding-left: 0;

    border-top: 1px solid rgba(136, 103, 75, 0.17);
    border-left: 0;
  }

  .address-action {
    width: 52px;
    height: 52px;
    border-radius: 15px;
  }

  .address-action img {
    width: 29px;
    height: 29px;
  }
}


/* BOTÃO COM O MESMO VISUAL DOS LINKS */
button.link-card {
  width: 100%;
  margin: 0;
  font-family: inherit;
  text-align: left;
  appearance: none;
  cursor: pointer;
}

/* GARANTE QUE A HISTÓRIA FIQUE OCULTA */
.history-section[hidden] {
  display: none !important;
}

/* SETA DO BOTÃO */
.history-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  transition: transform 0.3s ease;
}

.history-toggle[aria-expanded="true"] .history-arrow {
  transform: rotate(180deg);
}

/* CARD DA HISTÓRIA */
.history-section {
  position: relative;

  width: 100%;
  margin-top: 22px;
  padding: 28px;

  background:
    linear-gradient(
      135deg,
      rgba(255, 253, 249, 0.98),
      rgba(249, 238, 222, 0.96)
    );

  border: 1px solid rgba(176, 120, 42, 0.22);
  border-radius: 25px;

  box-shadow:
    0 18px 45px rgba(75, 50, 30, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);

  overflow: hidden;
  animation: openHistory 0.4s ease;
}

/* DETALHE DECORATIVO */
.history-section::after {
  content: "";
  position: absolute;

  width: 170px;
  height: 170px;

  right: -85px;
  bottom: -100px;

  border: 1px solid rgba(185, 126, 43, 0.17);
  border-radius: 50%;

  pointer-events: none;
}

.history-header {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  gap: 18px;

  padding-bottom: 20px;
  margin-bottom: 20px;

  border-bottom: 1px solid rgba(136, 103, 75, 0.16);
}

.history-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;

  display: grid;
  place-items: center;

  background:
    linear-gradient(
      145deg,
      rgba(255, 248, 237, 0.98),
      rgba(245, 225, 195, 0.95)
    );

  border: 1px solid rgba(180, 120, 38, 0.22);
  border-radius: 20px;

  box-shadow: 0 10px 24px rgba(102, 67, 35, 0.1);
}

.history-icon img {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.history-header h3 {
  margin: 5px 0 0;

  color: #382a20;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(25px, 4vw, 34px);
  font-weight: 700;
  line-height: 1.05;
}

.history-content {
  position: relative;
  z-index: 2;
}

.history-content p {
  margin: 0 0 14px;

  color: #77665a;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.8;
}

.history-content p:last-child {
  margin-bottom: 0;
}

.history-content strong {
  color: #9a620f;
  font-weight: 700;
}

/* BOTÃO FECHAR */
.history-close {
  position: relative;
  z-index: 2;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  margin-top: 22px;
  padding: 12px 18px;

  color: #8c580d;
  background: rgba(255, 250, 242, 0.9);

  border: 1px solid rgba(176, 120, 42, 0.25);
  border-radius: 14px;

  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;

  cursor: pointer;

  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.history-close:hover {
  transform: translateY(-2px);
  background: #fffaf1;
  box-shadow: 0 8px 20px rgba(92, 59, 29, 0.1);
}

@keyframes openHistory {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CELULAR */
@media (max-width: 680px) {
  .history-section {
    padding: 20px;
    border-radius: 21px;
  }

  .history-header {
    align-items: flex-start;
    gap: 14px;
  }

  .history-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 17px;
  }

  .history-icon img {
    width: 40px;
    height: 40px;
  }

  .history-header h3 {
    font-size: 25px;
  }

  .history-content p {
    font-size: 13px;
    line-height: 1.7;
  }

  .history-close {
    width: 100%;
  }
}

button.link-card {
  width: 100%;
  margin: 0;
  font-family: inherit;
  text-align: left;
  appearance: none;
  cursor: pointer;
}