@font-face {
  font-family: 'Jost';
  src: url('../fonts/Jost-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Quiche Sans';
  src: url('../fonts/QuicheSans-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --background: #faf8f6;
  --foreground: #453f39;
  --card: #f5f3f1;
  --primary: #453f39;
  --primary-foreground: #faf8f6;
  --secondary: #d4ccc6;
  --muted: #eeebe8;
  --muted-foreground: #7e756e;
  --border: #e2ddd8;
  --whatsapp: #25d366;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Quiche Sans', serif;
  font-weight: 500;
}

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

.main-content {
  padding-top: 80px;
}

.section-lg {
  padding: 80px 0;
}

@media (min-width: 992px) {
  .section-lg {
    padding: 112px 0;
  }
}

.navbar-brand img {
  height: 40px;
  width: auto;
}

.site-navbar {
  backdrop-filter: blur(6px);
  background: rgba(250, 248, 246, 0.95);
  border-bottom: 1px solid var(--border);
}

.site-navbar .nav-link {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-navbar .nav-link.active,
.site-navbar .nav-link:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.site-navbar .dropdown-menu {
  border-radius: 0;
  border-color: var(--border);
  background: var(--background);
  padding: 0.5rem 0;
}

.site-navbar .dropdown-item {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--foreground);
  padding: 0.55rem 1rem;
}

.site-navbar .dropdown-item:hover {
  background: var(--muted);
  color: var(--primary);
}

.subtitle {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.subtitle-light {
  color: rgba(250, 248, 246, 0.7);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
  margin: 8px 0 0;
}

.section-description {
  margin: 16px auto 0;
  max-width: 700px;
  color: var(--muted-foreground);
}

.section-description.light {
  color: rgba(250, 248, 246, 0.85);
}

.btn-brand {
  border-radius: 0;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.85rem 1.85rem;
  transition: all 0.2s ease;
}

.btn-brand-dark {
  background: var(--primary);
  color: var(--primary-foreground);
  border: 1px solid var(--primary);
}

.btn-brand-dark:hover {
  background: #5c544d;
  border-color: #5c544d;
  color: var(--primary-foreground);
}

.btn-brand-light {
  background: var(--primary-foreground);
  color: var(--primary);
  border: 1px solid var(--primary-foreground);
}

.btn-brand-light:hover {
  background: var(--secondary);
  color: var(--primary);
}

.btn-brand-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-brand-outline:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}

.btn-brand-outline-light {
  background: transparent;
  color: var(--primary-foreground);
  border: 1px solid var(--primary-foreground);
}

.btn-brand-outline-light:hover {
  background: rgba(250, 248, 246, 0.1);
  color: var(--primary-foreground);
}

.hero {
  min-height: 600px;
  height: 90vh;
  position: relative;
  overflow: hidden;
  color: var(--primary-foreground);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(69, 63, 57, 0.5);
}

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

.hero-title {
  font-size: clamp(2.4rem, 8vw, 4.8rem);
  line-height: 1.05;
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.65;
  opacity: 0.92;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 12px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(250, 248, 246, 0.4);
}

.hero-dot.active {
  background: var(--primary-foreground);
  transform: scale(1.25);
}

.bg-muted {
  background: var(--muted);
}

.bg-primary {
  background: var(--primary) !important;
  background-color: var(--primary) !important;
  color: var(--primary-foreground);
}

.text-muted {
  color: var(--muted-foreground) !important;
}

.card-clean {
  background: var(--background);
  border: 0;
  border-radius: 0;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.card-clean:hover {
  box-shadow: 0 20px 45px rgba(69, 63, 57, 0.1);
}

.card-muted {
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: 0;
}

.card-image-wrap {
  overflow: hidden;
}

.card-image-wrap img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card-clean:hover .card-image-wrap img,
.card-muted:hover .card-image-wrap img {
  transform: scale(1.05);
}

.portrait-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.hero-half {
  min-height: 400px;
  height: 50vh;
  position: relative;
  color: var(--primary-foreground);
}

.hero-half img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-half .overlay {
  position: absolute;
  inset: 0;
  background: rgba(69, 63, 57, 0.6);
}

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

.share-button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--foreground);
}

.share-button:hover {
  background: var(--muted);
}

.form-control,
.form-select {
  border-radius: 0;
  border-color: var(--border);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: none;
}

.form-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.footer {
  background: var(--primary);
  color: var(--primary-foreground);
}

.footer-logo {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer p,
.footer a {
  opacity: 0.82;
}

.footer a:hover {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(250, 248, 246, 0.1);
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  color: #fff;
  transform: scale(1.1);
}

.animate-fade-up {
  animation: fadeUp 0.7s ease forwards;
}

.testimonials-carousel {
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  will-change: transform;
}

.testimonials-track.is-animating {
  transition: transform 0.5s ease;
}

.testimonial-item {
  flex: 0 0 calc((100% - 3rem) / 3);
}

@media (max-width: 991.98px) {
  .testimonial-item {
    flex: 0 0 calc((100% - 1.5rem) / 2);
  }
}

@media (max-width: 767.98px) {
  .testimonial-item {
    flex: 0 0 100%;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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