:root {
  --crema: #F5F1E6;
  --verde: #6B8F71;
  --dorado: #C9A66B;
  --texto: #3A3A3A;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--texto);
  background-color: var(--crema);
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

.logo {
  height: 60px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}
.nav-link {
  color: var(--texto);
  font-size: 0.95rem;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.nav-link:hover {
  color: var(--verde);
  border-bottom-color: var(--verde);
}
.nav-link.active {
  color: var(--dorado);
  border-bottom-color: var(--dorado);
}
.offcanvas {
  background-color: var(--crema);
}

.offcanvas .nav-link {
  font-size: 1.1rem;
}

.offcanvas-title {
  font-family: 'Playfair Display', serif;
}
#inicio,
#sobre,
#servicios,
#contacto {
  scroll-margin-top: 90px;
}

.btn-holistic {
  background-color: var(--verde);
  color: white;
  border: none;
  padding: 0.45rem 1.1rem;
  font-size: 0.85rem;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.btn-holistic:hover {
  background-color: var(--dorado);
  color: white;
}

.brand {
  font-weight: 500;
  letter-spacing: 1px;
}

.hero {
  padding: 6rem 1rem;
  background: linear-gradient(180deg, #ffffff, var(--crema));
}

.hero-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: var(--dorado);
  margin-bottom: 0.5rem;
}


.hero h1 {
  font-size: 2.4rem;
  line-height: 1.25;
  margin-top: 0.8rem;
}

.hero-text {
  font-size: 1rem;
  margin-top: 1rem;
  color: #666;
}
.hero-img {
  position: relative;
  background-image: url("../img/bienestar.png");
  background-size: cover;
  background-position: center;
  min-height: 60vh;
  margin-top: 3rem;
  border-radius: 24px;
  display: flex;
  align-items: center;
}

.hero-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(245, 241, 230, 0.92),
    rgba(245, 241, 230, 0.85)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
}
.hero-box {
  max-width: 760px;
  margin: auto;
  padding: 3.5rem 3rem;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  border-radius: 32px;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}



.section {
  padding: 5rem 1rem;
  scroll-margin-top: 90px;
}

.section-soft {
  background-color: var(--crema);
}

.section-text {
  max-width: 600px;
  margin: auto;
  font-size: 1rem;
}
section[id] {
  scroll-margin-top: 110px;
}

.divider {
  width: 60px;
  height: 2px;
  background-color: var(--dorado);
  margin: 1rem auto 2rem;
}

.service-card {
  background-color: white;
  border: none;
  border-radius: 20px;
  padding: 2.5rem 1.8rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}


.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.service-card i {
  font-size: 2rem;
  color: var(--verde);
  margin-bottom: 1rem;
}

.quote-img {
  position: relative;
  padding: 5rem 1rem; 
  background-image: url("../img/bienestar2.png");
  background-size: cover;
  background-position: center;
  text-align: center;
}


.quote-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(245, 241, 230, 0.88);
}

.quote-img .container {
  position: relative;
  z-index: 2;
}

.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--verde);
  max-width: 640px;
  margin: auto;
  line-height: 1.6;
}


.footer {
  padding: 2.5rem 1rem;
  background-color: var(--verde);
  color: rgba(255, 255, 255, 0.85);
}

.footer-copy {
  margin-bottom: 0.6rem;
  font-size: 0.85rem;
}

.footer-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
}

.footer-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-logo {
  height: 40px;
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-link:hover .footer-logo {
  opacity: 1;
  transform: translateY(-2px);
}


