:root {
  --black: #0c0c0e;
  --charcoal: #16161a;
  --graphite: #1e1e24;
  --cream: #f4f1ec;
  --ivory: #faf8f5;
  --gold: #b8956a;
  --gold-light: #d4b896;
  --gold-dark: #8a6f4a;
  --text: #e8e6e3;
  --text-muted: #9a9690;
  --text-dark: #2a2826;
  --border: rgba(184, 149, 106, 0.25);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', system-ui, sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 300;
  padding: 0.6rem 1.2rem;
  background: var(--gold);
  color: var(--black);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.skip-link:focus {
  top: 1rem;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0 3rem;
  height: 80px;
  display: flex;
  align-items: center;
  transition: background var(--transition), backdrop-filter var(--transition);
}

.site-header.scrolled {
  background: rgba(12, 12, 14, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.logo-text strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory);
}

.logo-text span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--ivory);
}

.nav-links a:hover::after {
  width: 100%;
}

.header-cta {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: background var(--transition), color var(--transition);
}

.header-cta:hover {
  background: var(--gold);
  color: var(--black);
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--ivory);
  font-size: 1.25rem;
  padding: 0.4rem 0.65rem;
  cursor: pointer;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.1rem 2.25rem;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--gold-light);
}

.btn-outline {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
  border-color: var(--ivory);
  background: rgba(255, 255, 255, 0.06);
}

.btn-dark {
  background: var(--black);
  color: var(--ivory);
  border: 1px solid var(--black);
}

.btn-dark:hover {
  background: var(--graphite);
}

/* ── Section labels ── */
.section-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ivory);
  letter-spacing: -0.01em;
}

.section-title em {
  font-style: italic;
  color: var(--gold-light);
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  font-weight: 300;
  margin-top: 1.25rem;
}

/* ── Block 1: Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero:hover .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 12, 14, 0.95) 0%,
    rgba(12, 12, 14, 0.5) 45%,
    rgba(12, 12, 14, 0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 10rem 3rem 5rem;
}

.hero-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
  margin-bottom: 1.75rem;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--ivory);
  max-width: 900px;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-muted);
  max-width: 520px;
  margin-top: 1.75rem;
  font-weight: 300;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.trust-item strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--ivory);
  line-height: 1;
}

.trust-item span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

/* ── Block 2: Serviços ── */
.services-section {
  background: var(--charcoal);
  padding: 7rem 0 0;
}

.services-header {
  padding: 0 3rem 4rem;
  max-width: 1400px;
}

.services-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.service-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-top: 1px solid var(--border);
}

.service-item:not(:last-child) {
  border-right: 1px solid var(--border);
}

.service-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--transition), filter var(--transition);
  filter: grayscale(30%) brightness(0.7);
}

.service-item:hover img {
  transform: scale(1.06);
  filter: grayscale(0%) brightness(0.85);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 12, 14, 0.92) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.service-overlay h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}

.service-overlay p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
}

.service-num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(184, 149, 106, 0.3);
  line-height: 1;
}

/* ── Block 3: Diferenciais ── */
.differentials-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.diff-image {
  position: relative;
  overflow: hidden;
}

.diff-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 500px;
}

.diff-content {
  background: var(--ivory);
  color: var(--text-dark);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.diff-content .section-label {
  color: var(--gold-dark);
}

.diff-content .section-title {
  color: var(--text-dark);
}

.diff-content .section-title em {
  color: var(--gold-dark);
}

.diff-list {
  list-style: none;
  margin-top: 2.5rem;
}

.diff-list li {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(42, 40, 38, 0.1);
  font-size: 0.95rem;
  font-weight: 400;
  color: #4a4845;
}

.diff-list li:first-child {
  border-top: 1px solid rgba(42, 40, 38, 0.1);
}

.diff-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--gold-dark);
}

.diff-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(42, 40, 38, 0.1);
}

.diff-stat strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--text-dark);
}

.diff-stat span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a8680;
}

/* ── Block 4: Pacotes ── */
.packages-section {
  background: var(--black);
  padding: 7rem 3rem;
}

.packages-header {
  text-align: center;
  margin-bottom: 4rem;
}

.packages-header .section-lead {
  margin: 1.25rem auto 0;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid var(--border);
}

.package-card {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background var(--transition);
}

.package-card:last-child {
  border-right: none;
}

.package-card:hover {
  background: var(--charcoal);
}

.package-card.featured {
  background: var(--graphite);
}

.package-card.featured::before {
  content: 'Recomendado';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--gold);
  color: var(--black);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.5rem;
}

.package-card.featured {
  padding-top: 3.75rem;
}

.package-tier {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.package-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}

.package-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--ivory);
  line-height: 1;
  margin: 1.5rem 0;
}

.package-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
}

.package-features {
  list-style: none;
  margin: 2rem 0;
}

.package-features li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.package-features li::before {
  content: '—';
  color: var(--gold);
  font-size: 0.75rem;
}

.package-card .btn {
  width: 100%;
  margin-top: 1rem;
}

/* ── Block 5: Depoimentos ── */
.testimonials-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
}

.testimonials-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 14, 0.7);
}

.testimonials-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 5rem 3rem;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  padding: 2.5rem;
  border: 1px solid var(--border);
  background: rgba(22, 22, 26, 0.6);
  backdrop-filter: blur(8px);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
}

.testimonial-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.testimonial-author strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ivory);
}

.testimonial-author span {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ── Block 6: Contacto ── */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.contact-info {
  background: var(--charcoal);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-details {
  margin-top: 2.5rem;
}

.contact-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-item:first-child {
  border-top: 1px solid var(--border);
}

.contact-item dt {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.contact-item dd {
  font-size: 1rem;
  color: var(--ivory);
  font-weight: 300;
}

.contact-item dd a:hover {
  color: var(--gold-light);
}

.contact-form-wrap {
  background: var(--ivory);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-wrap .section-label {
  color: var(--gold-dark);
}

.contact-form-wrap .section-title {
  color: var(--text-dark);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.contact-form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8a8680;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(42, 40, 38, 0.15);
  background: var(--cream);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ── Footer ── */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 3rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

/* ── Legal pages ── */
.page-hero {
  padding: 10rem 3rem 4rem;
  background: var(--charcoal);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--ivory);
}

.page-hero p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 4rem 3rem 6rem;
}

.legal-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ivory);
  margin: 2.5rem 0 1rem;
}

.legal-content p,
.legal-content li {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-weight: 300;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

/* ── Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .services-showcase {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-item:nth-child(2) {
    border-right: none;
  }

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

  .package-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .package-card:last-child {
    border-bottom: none;
  }

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

@media (max-width: 900px) {
  .site-header {
    padding: 0 1.5rem;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(12, 12, 14, 0.97);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .differentials-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .diff-content,
  .contact-info,
  .contact-form-wrap {
    padding: 3rem 1.5rem;
  }

  .hero-content,
  .services-header,
  .packages-section,
  .testimonials-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .services-showcase {
    grid-template-columns: 1fr;
  }

  .service-item {
    border-right: none !important;
    aspect-ratio: 16 / 9;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .diff-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-trust {
    gap: 2rem;
  }
}
