@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
  --black: #000000;
  --black-mid: #0D0D0D;
  --black-soft: #141414;
  --white: #FFFFFF;
  --off-white: #F7F5F2;
  --text: #0B0B0B;
  --gold: #C9A96E;
  --gold-light: #C9A96E;
  --gold-dark: #C9A96E;
  --gold-muted: rgba(201, 169, 110, 0.12);
  --gray-light: #F3F3F1;
  --gray-mid: #E4E2DE;
  --gray-text: #7A7875;
  --border: #E8E6E2;
  --radius: 0px;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --font-custom: 'Tan Mon Cheri', serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 16px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.12);
}

@font-face {
  font-family: 'Tan Mon Cheri';
  src: url('../assets/fonts/TAN-MON CHERI-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 40px;
  transition: all 0.4s ease;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo-img {
  height: 100px;
  width: auto;
  transition: all 0.4s ease;
}

nav.scrolled .nav-logo-img {
  height: 80px;
}

/* Central Pill Menu */
.nav-menu-wrapper {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 8px 32px;
  display: flex;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--white);
}

/* Right Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-cta-pill {
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 100px;
  padding: 10px 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.nav-cta-pill:hover {
  background: var(--gold);
  transform: translateY(-1px);
}

.nav-cta-pill svg {
  transition: transform 0.3s ease;
}

.nav-cta-pill:hover svg {
  transform: translateX(3px);
}

/* Scrolled State */
nav.scrolled {
  padding: 16px 40px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

nav.scrolled .nav-menu-wrapper {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

/* ── BOTÕES ── */
.btn-primary {
  display: inline-block;
  padding: 16px 52px;
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  border-radius: 100px;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

.btn-ghost {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.3s, color 0.3s;
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-body);
  border-radius: 100px;
}

.btn-ghost:hover {
  gap: 18px;
  color: var(--gold);
}

.btn-ghost svg {
  width: 16px;
  flex-shrink: 0;
}

.btn-gold {
  display: inline-block;
  padding: 18px 60px;
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  border-radius: 100px;
  transition: background 0.3s, transform 0.2s;
}

.btn-gold:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

.btn-outline-white {
  display: inline-block;
  padding: 18px 60px;
  background: transparent;
  color: var(--white);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-family: var(--font-body);
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  border-radius: 100px;
  transition: border-color 0.3s, color 0.3s, transform 0.2s;
}

.btn-outline-white:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.section-link {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.3s, color 0.3s;
  flex-shrink: 0;
}

.section-link:hover {
  gap: 18px;
  color: var(--gold);
}

/* ── LABELS ── */
.section-label {
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

.section-label-gold {
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.section-label-light {
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 24px;
}

/* ── SECTION HEADER ── */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.1;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* ── STRIP ── */
.strip {
  background: var(--black);
  padding: 13px 0;
  overflow: hidden;
}

.strip-inner {
  display: flex;
  gap: 64px;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}

.strip-item {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
}

.strip-diamond {
  color: var(--gold);
  font-size: 8px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── ANIMAÇÕES ── */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes scrollDown {
  0% {
    top: -100%;
  }

  100% {
    top: 100%;
  }
}

.hero-tag {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.4s forwards;
}

.hero-title {
  opacity: 0;
  transform: translateY(36px);
  animation: fadeUp 1.0s 0.6s forwards;
}

.hero-subtitle {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.9s forwards;
}

.hero-actions {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 1.1s forwards;
}

.hero-scroll {
  opacity: 0;
  animation: fadeIn 1.0s 1.6s forwards;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* ── SCROLL INDICATOR ── */
.hero-scroll {
  position: absolute;
  bottom: 44px;
  right: 60px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.hero-scroll span {
  font-size: 8px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollDown 2.2s 2s infinite;
}

/* ── FAQ ── */
.faq-list {
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: var(--text);
  transition: color 0.2s;
  user-select: none;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  font-size: 22px;
  font-weight: 200;
  line-height: 1;
  transition: transform 0.3s;
  flex-shrink: 0;
  color: var(--gold);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 0 26px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text);
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 64px 60px 40px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  opacity: 1;
  transition: opacity 0.3s;
}

.footer-logo-name {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
}

.footer-logo-name span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--gold);
  font-style: italic;
}

.footer-tagline {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.1em;
  margin-top: 10px;
  text-align: center;
}

.footer-cols {
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 80px;
  width: 100%;
}

.footer-col-title {
  font-size: 8px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 22px;
}

.footer-col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer-col-links a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-copy {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.18);
  letter-spacing: 0.05em;
}

.footer-social {
  display: flex;
  gap: 28px;
}

.footer-social a {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--gold);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav {
    padding: 20px 24px;
  }

  nav.scrolled {
    padding: 14px 24px;
  }

  .nav-links {
    display: none;
  }

  .hero-scroll {
    display: none;
  }

  .section-cause {
    grid-template-columns: 1fr !important;
    padding: 80px 24px !important;
  }

  .cause-visual {
    display: none;
  }

  .mechanism-grid {
    grid-template-columns: 1fr !important;
  }

  .section-mechanism,
  .section-services,
  .section-proof,
  .section-narrative,
  .section-faq,
  .section-cta {
    padding: 80px 24px !important;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .testimonials-grid {
    grid-template-columns: 1fr !important;
  }

  .section-narrative-inner {
    grid-template-columns: 1fr !important;
  }

  .narrative-visual {
    min-height: 300px;
  }

  .narrative-content {
    padding: 60px 24px !important;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  footer {
    padding: 60px 24px 40px;
  }

  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .footer-cols {
    flex-direction: column;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .cta-bg-text {
    font-size: 80px; }
}

/* ── WIDGETS ── */
.section-proof {
  background: var(--black) !important;
  padding: 120px 60px;
  color: var(--white);
}

.section-proof .section-title {
  color: var(--white) !important;
}

.reviews-widget-container {
  padding: 0 60px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  min-height: 200px;
}

.reviews-widget-container [class*="elfsight-app"] {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* ── DARK MINIMALIST OVERRIDES FOR ELFSIGHT ── */
/* Isso tenta forçar o visual escuro mesmo que o widget venha claro por padrão */

[class*="elfsight-app"] [class*="Carousel__Container"],
[class*="elfsight-app"] [class*="Post__PostContainer"],
[class*="elfsight-app"] [class*="ReviewText__ReviewTextContainer"] {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(201, 169, 110, 0.1) !important;
  border-radius: var(--radius) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  box-shadow: none !important;
}

[class*="elfsight-app"] [class*="Header__Title"],
[class*="elfsight-app"] [class*="Name__NameContainer"],
[class*="elfsight-app"] [class*="ReviewText__ReviewTextText"] {
  color: var(--white) !important;
  font-family: var(--font-body) !important;
}

[class*="elfsight-app"] [class*="Star__StarContainer"] svg {
  fill: var(--gold) !important;
}

[class*="elfsight-app"] [class*="Header__HeaderContainer"] {
  background: transparent !important;
  border: none !important;
}

.section-instagram {
  background: var(--black);
  padding: 120px 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}


.instagram-widget-container {
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .reviews-widget-container,
  .section-instagram {
    padding: 80px 24px !important;
  }
}

/* ── MODAL AGENDAMENTO ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-inner {
  width: 100%;
  max-width: 540px;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-inner {
  transform: translateY(0);
}

.modal-content {
  background: #111;
  border: 1px solid rgba(201, 169, 110, 0.2);
  padding: 60px 48px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.modal-close:hover {
  opacity: 1;
}

.modal-header {
  text-align: center;
  margin-bottom: 40px;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 300;
  color: var(--white);
  margin: 12px 0;
}

.modal-title em {
  font-style: italic;
  color: var(--gold);
}

.modal-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 8px;
}

.form-group input,
.form-group select {
  width: 100%;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  border-radius: 4px;
  transition: border-color 0.3s, background 0.3s;
  appearance: none; /* Remove default browser styling */
  -webkit-appearance: none;
}

.form-group select option {
  background: #000;
  color: var(--white);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  background: #050505;
}


.btn-gold-submit {
  width: 100%;
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 18px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-family: var(--font-body);
  cursor: pointer;
  margin-top: 12px;
  border-radius: 100px;
  transition: transform 0.2s, background 0.3s;
}

.btn-gold-submit:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

.form-note {
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 24px;
}

@media (max-width: 600px) {
  .modal-content {
    padding: 48px 24px;
  }
  .modal-title {
    font-size: 28px;
  }
}

/* ── NOSSAS UNIDADES ── */
.section-units {
  background: var(--white);
  padding: 120px 60px;
}

.units-grid {
  display: flex;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}


.unit-card {
  flex: 1;
  background: var(--off-white);
  border: 1px solid var(--border);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}

.unit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}

.unit-img-wrap {
  width: 100%;
  aspect-ratio: 9/16;
  overflow: hidden;
  background: var(--gold);
}


.unit-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}

.unit-card:hover .unit-video {
  transform: scale(1.05);
}


.unit-info {
  padding: 40px;
}

.unit-name {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 16px;
  color: var(--black);
}

.unit-address {
  font-size: 14px;
  color: var(--black);
  line-height: 1.6;
  margin-bottom: 32px;
}

.unit-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.unit-link {
  color: var(--gold);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.unit-link:hover {
  gap: 12px;
}

.btn-unit-cta {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-family: var(--font-body);
  cursor: pointer;
  border-radius: 100px;
  transition: background 0.3s;
}

.btn-unit-cta:hover {
  background: var(--gold);
}

@media (max-width: 1000px) {
  .units-grid {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .section-units {
    padding: 80px 24px;
  }
  .unit-info {
    padding: 32px 24px;
  }
}

@media (max-width: 900px) { .cause-text, .faq-answer-inner, .hero-sub { font-size: 16px !important; } .mechanism-card-text, .footer-col-links a { font-size: 15px !important; } .service-desc { font-size: 14px !important; } .footer-copy { font-size: 12px !important; } }
