/* ===== RESET & ROOT ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #1a1f2e;
  --navy-deep: #0f1219;
  --navy-light: #252b3d;
  --gold: #c9a84c;
  --gold-light: #ddc06a;
  --gold-dark: #a88a3a;
  --cream: #f5f0e8;
  --cream-dark: #e8e0d0;
  --text-light: #d4d0c8;
  --text-muted: #8a8678;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', sans-serif;
  background: var(--navy-deep);
  color: var(--text-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--navy-deep);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 3px;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
  background: transparent;
}

.nav.scrolled {
  background: rgba(15, 18, 25, 0.95);
  backdrop-filter: blur(20px);
  padding: 0.8rem 3rem;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.nav-logo img {
  height: 0;
  width: 0;
  transition: height 0.4s ease, width 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}

.nav.scrolled .nav-logo img {
  height: 32px;
  width: auto;
  opacity: 1;
  pointer-events: auto;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.nav-hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s ease;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-deep) 100%);
}

.hero-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.07;
}

.hero-lines::before,
.hero-lines::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 200%;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  animation: lineFloat 8s ease-in-out infinite;
}

.hero-lines::before {
  left: 20%;
  animation-delay: 0s;
}

.hero-lines::after {
  left: 80%;
  animation-delay: 4s;
}

@keyframes lineFloat {
  0%, 100% {
    transform: translateY(-30%);
  }
  50% {
    transform: translateY(-20%);
  }
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 2rem;
}

.hero-monogram {
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}

.hero-monogram img {
  height: 90px;
  filter: drop-shadow(0 0 30px rgba(201, 168, 76, 0.2));
}

.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
}

.hero-title {
  font-size: 0.8rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.7s forwards;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 3rem;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 1s ease 1.1s forwards;
}

.hero-cta {
  display: inline-block;
  padding: 14px 45px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.4s ease;
  opacity: 0;
  animation: fadeUp 1s ease 1.3s forwards;
}

.hero-cta:hover {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.2);
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 2.5rem;
  opacity: 0;
  animation: scrollIndicatorFade 1s ease 1.6s forwards;
}

.scroll-indicator span {
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 1;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollIndicatorFade {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== SECTIONS GENERAL ===== */
.section {
  padding: 5rem 2rem;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 3px;
}

.section-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto 0;
}

/* ===== ABOUT ===== */
.about {
  background: var(--navy);
}

.about-content {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.about-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  line-height: 2;
  color: var(--text-light);
  font-weight: 300;
}

.about-text + .about-text {
  margin-top: 1.5rem;
}

.about-values {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}

.about-value {
  text-align: center;
}

.about-value-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 300;
}

.about-value-label {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* ===== REVIEWS MARQUEE ===== */
.reviews-section {
  margin-top: 2.5rem;
  width: 100%;
}

.reviews-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
}

.reviews-stars {
  font-size: 1.1rem;
  color: #FBBC05;
  letter-spacing: 2px;
  line-height: 1;
}

.reviews-label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.reviews-marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.reviews-marquee {
  display: flex;
  gap: 1.5rem;
  animation: marqueeScroll 60s linear infinite;
  width: max-content;
  will-change: transform;
}

.reviews-marquee:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.review-card {
  flex-shrink: 0;
  background: rgba(201, 168, 76, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 14px;
  padding: 1.5rem 1.8rem;
  min-width: 320px;
  max-width: 380px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.review-card:hover {
  border-color: rgba(201, 168, 76, 0.25);
  background: rgba(201, 168, 76, 0.07);
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-deep);
  flex-shrink: 0;
}

.review-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.review-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.5px;
}

.review-card-stars {
  font-size: 0.8rem;
  color: #FBBC05;
  letter-spacing: 1px;
}

.review-text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
}

/* ===== AREAS ===== */
.areas {
  background: var(--navy-deep);
}

.areas-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
  gap: 2rem;
}

.area-card {
  background: linear-gradient(145deg, rgba(37, 43, 61, 0.5), rgba(26, 31, 46, 0.8));
  border: 1px solid rgba(201, 168, 76, 0.1);
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
}

.area-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.area-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.area-card:hover::before {
  opacity: 1;
}

.area-cta {
  display: block;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 1.5rem;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.area-card:hover .area-cta {
  opacity: 1;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.area-icon {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  display: block;
}

.area-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--cream);
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.area-card:hover .area-name {
  color: var(--cream);
}

.area-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text-muted);
  font-weight: 300;
}

.area-card:hover .area-desc {
  color: var(--text-muted);
}

/* ===== PROCESS LOOKUP ===== */
.process-section {
  background: var(--navy);
}

.process-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.process-description {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.process-form-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.process-form-group .field-wrapper {
  flex: 1;
  min-width: 200px;
}

.field-wrapper label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  text-align: left;
}

.process-input {
  width: 100%;
  padding: 14px 20px;
  background: rgba(37, 43, 61, 0.5);
  border: 1px solid rgba(201, 168, 76, 0.15);
  color: var(--cream);
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  outline: none;
  letter-spacing: 1px;
}

.process-input::placeholder {
  color: rgba(138, 134, 120, 0.5);
}

.process-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.1);
}

.process-select {
  width: 100%;
  padding: 14px 20px;
  background: rgba(37, 43, 61, 0.5);
  border: 1px solid rgba(201, 168, 76, 0.15);
  color: var(--cream);
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  outline: none;
  letter-spacing: 1px;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%23c9a84c'%3E%3Cpath d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.process-select option {
  background: var(--navy);
  color: var(--cream);
}

.process-select:focus {
  border-color: var(--gold);
}

.process-hint {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.65rem;
  letter-spacing: 1px;
  color: rgba(201, 168, 76, 0.7);
  text-align: left;
  line-height: 1.4;
}

.process-btn {
  display: inline-block;
  padding: 14px 50px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s ease;
  margin-top: 1rem;
}

.process-btn:hover {
  background: var(--gold);
  color: var(--navy-deep);
}

.process-result {
  margin-top: 2.5rem;
  padding: 2rem;
  background: rgba(37, 43, 61, 0.3);
  border: 1px solid rgba(201, 168, 76, 0.1);
  display: none;
  text-align: left;
}

.process-result.show {
  display: block;
  animation: fadeUp 0.5s ease;
}

.result-header {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.result-table {
  width: 100%;
  border-collapse: collapse;
}

.result-table tr {
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.result-table td {
  padding: 0.8rem 0;
  font-size: 0.85rem;
}

.result-table td:first-child {
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  width: 140px;
}

.result-table td:last-child {
  color: var(--cream);
}

.result-link {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.result-link:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

/* ===== CONTACT ===== */
.contact {
  background: var(--navy-deep);
}

.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 1rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1rem;
}

.contact-item-label {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.contact-item-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--cream);
  line-height: 1.6;
}

.contact-item-value a {
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item-value a:hover {
  color: var(--gold);
}

.contact-map {
  margin-top: 3rem;
  width: 100%;
  height: 200px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) invert(0.92) contrast(0.9);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: flex;
  gap: 1.2rem;
}

.form-row .form-group {
  flex: 1;
}

.form-group label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(37, 43, 61, 0.4);
  border: 1px solid rgba(201, 168, 76, 0.12);
  color: var(--cream);
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(201, 168, 76, 0.08);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(138, 134, 120, 0.4);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

.form-submit {
  display: inline-block;
  padding: 14px 50px;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--navy-deep);
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  align-self: flex-start;
}

.form-submit:hover {
  background: transparent;
  color: var(--gold);
}

.form-success {
  display: none;
  padding: 1.2rem;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  font-size: 0.85rem;
  text-align: center;
}

.form-success.show {
  display: block;
  animation: fadeUp 0.5s ease;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-logo img {
  height: 35px;
  margin-bottom: 1.5rem;
  opacity: 0.6;
}

.footer-oab {
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.footer-copy {
  font-size: 0.7rem;
  color: rgba(138, 134, 120, 0.5);
  letter-spacing: 1px;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
}

.whatsapp-float.pushed-up {
  bottom: calc(2rem + 56px + 0.8rem);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 998;
  width: 44px;
  height: 44px;
  margin-right: 6px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.25);
}

/* ===== FOOTER SOCIAL ===== */
.footer-social {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  margin: 1.8rem 0;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(201, 168, 76, 0.25);
  border-radius: 12px;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.04);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.social-link:hover {
  transform: translateY(-4px) scale(1.05);
  border-color: transparent;
}

.social-link:hover::before {
  opacity: 1;
}

/* Facebook */
.social-link--facebook::before {
  background: linear-gradient(135deg, #1877F2, #0d65d9);
}

.social-link--facebook:hover {
  color: #fff;
  box-shadow: 0 6px 24px rgba(24, 119, 242, 0.35), 0 0 0 1px rgba(24, 119, 242, 0.15);
}

/* WhatsApp */
.social-link--whatsapp::before {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.social-link--whatsapp:hover {
  color: #fff;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35), 0 0 0 1px rgba(37, 211, 102, 0.15);
}

.social-link svg {
  fill: currentColor;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.social-link:hover svg {
  transform: scale(1.1);
}

/* ===== MOBILE NAV ===== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 18, 25, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
}

.mobile-menu a {
  color: var(--cream);
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 4px;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--gold);
}

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 2rem;
  cursor: pointer;
  font-weight: 300;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .section {
    padding: 5rem 1.5rem;
  }
  .about-values {
    gap: 2rem;
  }
  .review-card {
    min-width: 260px;
    max-width: 290px;
    padding: 1.1rem 1.3rem;
  }
  .reviews-marquee {
    animation-duration: 45s;
  }
  .form-row {
    flex-direction: column;
  }
  .hero-monogram img {
    height: 70px;
  }
}

@media (max-width: 600px) {
  .nav {
    padding: 1rem 1.5rem;
  }
  .areas-grid {
    grid-template-columns: 1fr;
  }
  .process-form-group {
    flex-direction: column;
  }
  .hero-name {
    letter-spacing: 4px;
  }
  .whatsapp-float {
    bottom: 2rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
  }
  .whatsapp-float.pushed-up {
    bottom: calc(2rem + 48px + 0.8rem);
  }
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
  .scroll-top {
    right: 1.5rem;
    width: 38px;
    height: 38px;
    margin-right: 5px;
  }
  .footer-social {
    gap: 1rem;
    margin: 1rem 0;
  }
  .social-link {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }
  .review-card {
    min-width: 240px;
    max-width: 270px;
    padding: 1rem 1.2rem;
  }
  .reviews-header {
    flex-wrap: wrap;
    gap: 0.4rem;
  }
  .reviews-section {
    margin-top: 2rem;
  }
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HERO AREAS SUBTITLE ===== */
.hero-areas {
  font-size: 0.85rem;
  color: var(--gold-light);
  letter-spacing: 1.5px;
  margin-top: 0.8rem;
  font-weight: 400;
  opacity: 0;
  animation: fadeUp 1s ease 1.6s forwards;
}

/* ===== INVENTÁRIO SECTION ===== */
.inventario-section {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-deep) 100%);
}

.inventario-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.inventario-article {
  line-height: 1.8;
}

.inventario-intro {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  text-align: center;
}

.inventario-intro strong {
  color: var(--gold);
}

.inventario-card {
  background: rgba(37, 43, 61, 0.5);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.inventario-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.inventario-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.inventario-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 0.8rem;
}

.inventario-card ul {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0;
}

.inventario-card ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.inventario-card ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
  top: 3px;
}

.inventario-cta {
  text-align: center;
  padding: 2rem;
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 12px;
}

.inventario-cta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.inventario-beneficios {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.inventario-beneficios li {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 0.6rem;
  padding-left: 0.5rem;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: var(--navy-deep);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.faq-item {
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  background: rgba(37, 43, 61, 0.3);
}

.faq-item:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.faq-item[open] {
  border-color: rgba(201, 168, 76, 0.35);
  background: rgba(37, 43, 61, 0.5);
}

.faq-question {
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-light);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item[open] .faq-question::after {
  content: '−';
}

.faq-answer {
  padding: 0 1.5rem 1.2rem;
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.75;
}

.faq-answer strong {
  color: var(--gold);
}

.faq-answer a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-answer a:hover {
  color: var(--gold-light);
}

/* ===== RESPONSIVE - INVENTÁRIO & FAQ ===== */
@media (max-width: 768px) {
  .inventario-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .inventario-card {
    padding: 1.5rem;
    max-width: 100%;
  }
  .inventario-intro {
    font-size: 0.95rem;
  }
  .faq-question {
    font-size: 1.05rem;
    padding: 1rem 1.2rem;
  }
  .faq-answer {
    padding: 0 1.2rem 1rem;
    font-size: 0.88rem;
  }
  .hero-areas {
    font-size: 0.75rem;
    letter-spacing: 1px;
  }
}
