@charset "UTF-8";
h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.05;
}

h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 500;
  line-height: 1.2;
}

p {
  font-family: "Lato", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
}

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

html {
  scroll-behavior: smooth;
}

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

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

ul {
  list-style: none;
}

p {
  line-height: 1.2;
}

body {
  font-family: "Lato", system-ui, sans-serif;
  color: #1c2410;
  background: #EFEFE7;
  -webkit-font-smoothing: antialiased;
  line-height: 1.2;
}

.container {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}
.section--white {
  background: #EFEFE7;
}
.section--cream {
  background: #f0ead6;
}
.section--cream-light {
  background: #f8f4ec;
}
.section--olive {
  background: #3a5018;
}

.btn {
  display: inline-flex;
  align-items: center;
  position: relative;
  gap: 0.65rem;
  padding: 0.75rem calc(0.65rem + 70px) 0.75rem 1.6rem;
  font-family: "Lato", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  background: #EFEFE7;
  color: #333415;
  border: none;
  border-radius: 100px;
  transition: background 0.5s cubic-bezier(0.4, 0, 0.2, 1), color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.btn::before {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #333415;
  bottom: 6px;
  right: 28px;
  transition: background 0.5s cubic-bezier(0.4, 0, 0.2, 1), bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1), right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn:hover::before {
  background: #EFEFE7;
  bottom: 7px;
  right: 32px;
}
.btn::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #333415;
  bottom: 6px;
  right: 15px;
  transition: background 0.5s cubic-bezier(0.4, 0, 0.2, 1), right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn:hover::after {
  background: #EFEFE7;
  right: 23px;
}
.btn--primary {
  background: rgb(239, 239, 231);
  border: 1.5px solid #EFEFE7;
  color: #333415;
}
.btn--primary:hover {
  background: rgba(239, 239, 231, 0);
  color: #EFEFE7;
}
.btn--primary-light {
  background: rgb(239, 239, 231);
  border: 1.5px solid #EFEFE7;
  color: #333415;
}
.btn--primary-light:hover {
  background: rgba(239, 239, 231, 0);
  color: #333415;
}
.btn--primary-dark {
  background: rgb(51, 52, 21);
  border: 1.5px solid #333415;
  color: #EFEFE7;
}
.btn--primary-dark::before {
  background: #EFEFE7;
}
.btn--primary-dark::after {
  background: #EFEFE7;
}
.btn--primary-dark .btn-circle {
  border-color: #EFEFE7;
}
.btn--primary-dark:hover {
  background: rgba(51, 52, 21, 0);
  color: #333415;
}
.btn--primary-dark:hover::before {
  background: #333415;
}
.btn--primary-dark:hover::after {
  background: #333415;
}
.btn--primary-dark:hover .btn-circle {
  border-color: #333415 !important;
}

.btn-circle {
  position: absolute;
  right: 45px;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 5px solid #333415;
  background: transparent;
  transition: border-color 0.5s cubic-bezier(0.4, 0, 0.2, 1), right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-circle svg {
  display: none;
}

.btn:hover .btn-circle {
  border-color: #EFEFE7;
  right: 35px;
}

@media (hover: none) {
  .btn {
    transition: none;
  }
  .btn::before {
    background: #EFEFE7;
    bottom: 7px;
    right: 32px;
    transition: none;
  }
  .btn::after {
    background: #EFEFE7;
    right: 23px;
    transition: none;
  }
  .btn--primary {
    background: rgba(239, 239, 231, 0);
    color: #EFEFE7;
  }
  .btn--primary-light {
    background: rgba(239, 239, 231, 0);
    color: #333415;
  }
  .btn--primary-dark {
    background: rgba(51, 52, 21, 0);
    color: #333415;
  }
  .btn--primary-dark::before {
    background: #333415;
  }
  .btn--primary-dark::after {
    background: #333415;
  }
  .btn--primary-dark .btn-circle {
    border-color: #333415;
  }
  .btn-circle {
    border-color: #EFEFE7;
    right: 35px;
    transition: none;
  }
}
.btn-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 3.5rem;
}

.section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 500;
  text-align: center;
  margin-bottom: 2.5rem;
  line-height: 1.2;
}
.section-title--left {
  text-align: left;
}

.section-title-serif {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 500;
  text-align: center;
  margin-bottom: 3.5rem;
  line-height: 1.2;
  color: #1c2410;
}
.section-title-serif em {
  font-style: italic;
  font-weight: 500;
}

.section-title-light {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.75rem;
}
.section-title-light em {
  font-style: italic;
  font-weight: 500;
}

.section-subtitle {
  text-align: center;
  max-width: 660px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  font-size: 1rem;
  color: #3d3d28;
}

.navbar {
  background: #333415;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.nav-inner {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 50px;
  width: auto;
  display: block;
}

.logo-dot {
  color: #7a9e42;
  font-size: 1.3em;
  line-height: 1;
}

.nav-links {
  flex: 1;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.nav-links a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
  padding-block: 0.25rem;
}
.nav-links a:hover {
  color: #ffffff;
}

.nav-icon {
  display: block;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.2s;
}

.nav-links a:hover .nav-icon {
  opacity: 1;
}

@media (min-width: 861px) {
  .nav-links {
    padding-top: 15px;
  }
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #ffffff;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.hero {
  position: relative;
  height: calc(100vh - 82px);
  height: calc(100svh - 82px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../../assets/img/hero/hero.webp") center/cover no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(14, 20, 5, 0.88) 0%, rgba(14, 20, 5, 0.5) 40%, rgba(20, 30, 8, 0.2) 60%, rgba(30, 45, 12, 0) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  padding-block: 8rem 5rem;
  display: flex;
  align-items: flex-start;
}

.hero-content-inner {
  max-width: 560px;
}

.hero-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-style: normal;
}
.hero-title__bold {
  font-weight: 800;
}
.hero-title__serif {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3.25rem;
  font-style: italic;
  text-transform: none;
}

.hero-slogan {
  padding-bottom: 2.5rem;
}

.hero-title sup {
  font-size: 1.3rem;
  vertical-align: 0.7rem;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.section--reconoces {
  padding-block: clamp(4rem, 9vw, 8rem);
}
.section--reconoces .section-title {
  color: #7D7930;
}

.reconoces-text {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}
.reconoces-text p {
  font-size: 1rem;
  color: #333415;
  margin-bottom: 1.25rem;
}
.reconoces-text p:last-child {
  margin-bottom: 0;
}

.reconoces-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.reconoces-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.reconoces-col__img {
  height: 200px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.reconoces-col__img img {
  display: block;
}
.reconoces-col__title {
  font-family: "Lato", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  color: #7D7930;
}
.reconoces-col__body {
  text-align: center;
  font-size: 1rem;
  color: #333415;
}

.section--respiracion__title {
  margin-top: 4rem;
  color: #7D7930;
}

.seccion--respiracion {
  padding-top: 100px;
}

.respiracion-swiper {
  width: 100%;
  padding-bottom: 2.5rem;
  background: url("../../assets/svg/linea-ondulada.svg") 0 20px/contain no-repeat;
}

.respiracion-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.respiracion-slide img {
  width: 180px;
  height: 180px;
  border-radius: 0.75rem;
  object-fit: cover;
}
.respiracion-slide p {
  text-align: center;
  color: #7D7930;
  font-size: 1rem;
}

.respiracion-swiper .swiper-pagination {
  bottom: 0;
}
.respiracion-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #3a5018;
}

@media (min-width: 861px) {
  .respiracion-swiper .swiper-pagination {
    display: none;
  }
}
@media (min-width: 561px) {
  .respiracion-slide:nth-child(2) {
    padding-top: 50px;
  }
}
.section--por-que {
  padding-block: clamp(4rem, 9vw, 8rem);
}

.por-que-grid {
  display: grid;
  grid-template-columns: 1fr 240px 1fr;
  gap: 3rem;
  align-items: start;
}

.por-que-col p {
  font-size: 1rem;
  color: #3d3d28;
  margin-bottom: 1.25rem;
}

.por-que-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.bubble-cluster {
  position: relative;
  width: 190px;
  height: 210px;
}

.bubble {
  position: absolute;
  border-radius: 50%;
}
.bubble--lg {
  width: 140px;
  height: 140px;
  background: #263510;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.bubble--md {
  width: 90px;
  height: 90px;
  background: #3a5018;
  top: 0;
  right: 0;
}
.bubble--sm {
  width: 60px;
  height: 60px;
  background: #5c7830;
  top: 30px;
  left: 0;
}
.bubble--xs {
  width: 40px;
  height: 40px;
}
.bubble--outline {
  background: transparent;
  border: 2.5px solid #263510;
  bottom: 20px;
  right: -10px;
}

.bubble-caption {
  font-size: 0.78rem;
  color: #3d3d28;
  text-align: center;
  font-style: italic;
}

.banner-calma {
  background: #EFEFE7;
  padding: 0;
  text-align: center;
}
.banner-calma p {
  font-family: "Lato", system-ui, sans-serif;
  font-size: clamp(0.65rem, 1.6vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.3em;
  color: #333415;
  text-transform: uppercase;
}
.banner-calma img {
  display: block;
  width: 100%;
  height: auto;
}

.section--quien-soy {
  padding-block: clamp(4rem, 9vw, 7rem);
  background: #7D7930;
}
.section--quien-soy .section-title-light,
.section--quien-soy .section-title-light em {
  color: #EFEFE7;
}
.section--quien-soy .quien-soy-text p {
  color: #EFEFE7;
}

.quien-soy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.quien-soy-text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.25rem;
}

.circular-frame {
  width: min(480px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
}
.circular-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section--servicios {
  padding-block: clamp(4rem, 9vw, 7rem) 0;
  background: #333415 url("../svg/curva_bottom_verde.svg") center top/100% auto no-repeat;
}
.section--servicios .section-title,
.section--servicios .section-subtitle {
  color: #EFEFE7;
}

.servicios-swiper {
  width: 100%;
  padding-bottom: 2.5rem;
}

.servicio-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.servicio-slide img {
  width: 280px;
  height: 280px;
  border-radius: 0.75rem;
  object-fit: contain;
}
.servicio-slide p {
  text-align: center;
  color: #EFEFE7;
  font-size: 1rem;
}

.servicios-swiper .swiper-pagination {
  bottom: 0;
}
.servicios-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #EFEFE7;
}

@media (min-width: 861px) {
  .servicios-swiper .swiper-pagination {
    display: none;
  }
}
.section--testimonios {
  padding-block: 0 clamp(4rem, 9vw, 7rem);
  background-image: url("../img/textura-hojas.png");
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: top left;
}
.section--testimonios .section-title {
  color: #7D7930;
}
.section--testimonios .container {
  padding-top: 100px;
}

.saber-inner {
  margin-top: 100px;
}
.saber-inner .section-title {
  color: #333415;
}
.saber-inner .saber-text p {
  color: #333415;
}

.testimonio {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
  padding: 0 1rem;
}

.quote-mark {
  display: block;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.testimonio-text {
  font-size: 1rem;
  color: #333415;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonio-autor {
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #1c2410;
  text-transform: uppercase;
}

.section--saber {
  padding-block: clamp(4rem, 9vw, 7rem);
}

.saber-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.saber-text .section-title {
  margin-bottom: 1.5rem;
}
.saber-text p {
  font-size: 1rem;
  color: #3d3d28;
  margin-bottom: 1.25rem;
}
.saber-text .btn {
  margin-top: 0.75rem;
}

.saber-image img {
  width: 100%;
  max-width: 380px;
}

.section--guias {
  padding-block: clamp(4rem, 9vw, 7rem);
}

.guias-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.guia-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.guia-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.guia-card__icon {
  color: #3a5018;
}
.guia-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1c2410;
  line-height: 1.3;
}
.guia-card p {
  font-size: 1rem;
  color: #3d3d28;
  flex-grow: 1;
}

.guia-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #3a5018;
  text-transform: uppercase;
  transition: color 0.2s;
}
.guia-link:hover {
  color: #263510;
}

.footer-top {
  background: #7D7930;
  padding-block: 15px;
}
.footer-top .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding-inline: 0;
  width: 90%;
}

.footer-logo img {
  width: 80px;
  height: 60px;
  display: block;
}

.footer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #EFEFE7;
  font-size: 16px;
}

.footer-icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.footer-separator {
  display: inline-block;
  vertical-align: middle;
}

.footer-contact__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-tel,
.footer-mail {
  color: #EFEFE7;
  text-decoration: none;
  font-size: 16px;
}
.footer-tel:hover,
.footer-mail:hover {
  text-decoration: underline;
}

.footer-cta {
  display: flex;
  justify-content: flex-end;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  opacity: 0.85;
  transition: opacity 0.2s;
  margin: 0 5px;
}
.footer-social-link:hover {
  opacity: 1;
}

.footer-link {
  color: #EFEFE7;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: underline;
  transition: text-decoration-color 0.2s;
}
.footer-link:hover {
  text-decoration: none;
}

.footer-bottom {
  background: #333415;
  padding-block: 1.75rem 2rem;
  text-align: center;
}
.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}
.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 1024px) {
  .por-que-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .por-que-center {
    order: -1;
  }
  .bubble-cluster {
    width: 160px;
    height: 180px;
  }
}
@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }
  .nav-logo img {
    height: 35px;
  }
  .nav-inner {
    height: auto;
    min-height: 62px;
  }
  .nav-links {
    position: fixed;
    inset: 62px 0 0;
    background: #333415;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 199;
  }
  .nav-links.is-open {
    transform: translateX(0);
  }
  .nav-links a {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
  }
  .reconoces-cols {
    grid-template-columns: 1fr;
  }
  .reconoces-col__img {
    height: auto;
    min-height: 130px;
  }
  .section--testimonios {
    background-size: contain;
  }
  .quien-soy-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .circular-frame {
    width: 90%;
    max-width: 450px;
  }
  .servicios-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .servicio-item {
    max-width: 280px;
  }
  .saber-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .saber-image {
    order: -1;
  }
  .guias-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }
  .footer-top .container {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .footer-cta {
    justify-content: center;
  }
}
@media (max-width: 560px) {
  .hero-content {
    margin-left: 0;
    max-width: 100%;
  }
  .hero-title {
    font-size: 2rem;
  }
  .footer-top {
    gap: 1.5rem;
  }
  h2 {
    font-size: 30px;
  }
  .hero-overlay {
    background: rgba(14, 20, 5, 0.5);
  }
  .hero {
    height: calc(100vh - 62px);
    height: calc(100svh - 62px);
  }
  .footer-contact p {
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-separator {
    display: none;
  }
}
.srv-intro {
  padding-top: 0;
  padding-bottom: 0;
}

.srv-header {
  margin-bottom: clamp(3.5rem, 7vw, 5.5rem);
}

.srv-page-title {
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-weight: 400;
  text-transform: uppercase;
  color: #333415;
  text-align: center;
  font-style: normal;
  letter-spacing: normal;
  height: 194px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.srv-page-intro {
  color: #3d3d28;
  font-size: 0.95rem;
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}
.srv-page-intro + .srv-page-intro {
  margin-top: 0.4rem;
}

.srv-proposito-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.srv-proposito-heading {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 500;
  color: #7D7930;
  text-align: left;
  margin-bottom: 0.9rem;
  line-height: 1.2;
}

.srv-proposito-lead {
  font-size: 1rem;
  font-style: italic;
  color: #3d3d28;
  margin-bottom: 1.5rem;
}

.srv-proposito-text p {
  color: #3d3d28;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}
.srv-proposito-text p:last-child {
  margin-bottom: 0;
}

.srv-proposito-tagline {
  font-weight: 700;
  font-style: normal;
  color: #333415 !important;
}

.srv-proposito-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.srv-proposito-cta {
  position: absolute;
  right: -1.75rem;
  bottom: 0.75rem;
  display: block;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.srv-proposito-cta:hover {
  transform: scale(1.1);
}

.srv-wave {
  display: block;
  width: 100%;
  height: auto;
}

.srv-dark-wave-wrap {
  background: #EFEFE7;
}

.srv-dark {
  background: #7D7930;
  padding-bottom: clamp(4rem, 8vw, 7rem);
}
.srv-dark .section-title,
.srv-dark .section-subtitle {
  color: #EFEFE7;
}
.srv-dark .container {
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.srv-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.srv-card {
  position: relative;
  display: block;
  border-radius: 30px;
  padding: 10px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid #96918B;
}
.srv-card::before, .srv-card::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 0;
  border-radius: 20px;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.srv-card::after {
  background: linear-gradient(to bottom, rgba(249, 248, 212, 0) 0%, rgba(179, 177, 135, 0.2) 20%, rgba(135, 131, 64, 0.8509803922) 85%, #7D7930 100%);
  opacity: 1;
}
.srv-card::before {
  background: linear-gradient(to bottom, rgba(249, 248, 212, 0) 0%, rgba(179, 177, 135, 0.2) 10%, rgba(135, 131, 64, 0.8509803922) 50%, #7D7930 100%);
  opacity: 0;
}
.srv-card:hover::after {
  opacity: 0;
}
.srv-card:hover::before {
  opacity: 1;
}

.srv-card__img {
  width: 100%;
  height: 354px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  z-index: 0;
}

.srv-card__name {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  padding-inline: 1rem;
  z-index: 2;
  transition: bottom 0.4s ease;
}
.srv-card__name h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #EFEFE7;
}

.srv-card__desc {
  font-family: "Lato", system-ui, sans-serif;
  font-size: 16px;
  color: #EFEFE7;
  margin-top: 0.5rem;
  line-height: 1.5;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.srv-card__arrow {
  position: absolute;
  bottom: -24px;
  transition: bottom 0.4s ease;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  z-index: 2;
  display: block;
}

.srv-card:hover .srv-card__arrow {
  bottom: -14px;
}

.srv-card:hover .srv-card__name {
  bottom: 100px;
}

.srv-card:hover .srv-card__desc {
  opacity: 1;
}

.srv-cta {
  background: #f0ead6;
  padding-bottom: clamp(4rem, 8vw, 7rem);
}
.srv-cta .container {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.srv-cta .cta-title {
  color: #1c2410;
}

@media (max-width: 860px) {
  .srv-proposito-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .srv-proposito-cta {
    right: 0;
    bottom: -1.5rem;
  }
  .srv-cards {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin-inline: auto;
    margin-top: 2rem;
  }
}
@media (max-width: 560px) {
  .srv-page-title {
    font-size: 2.25rem;
  }
}
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal][data-delay="1"] {
  transition-delay: 0.1s;
}
[data-reveal][data-delay="2"] {
  transition-delay: 0.2s;
}
[data-reveal][data-delay="3"] {
  transition-delay: 0.3s;
}

.page-hero {
  background: #EFEFE7;
  padding-block: clamp(3rem, 7vw, 5rem);
  text-align: center;
}

.pg-title {
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-weight: 400;
  text-transform: uppercase;
  color: #333415;
  text-align: center;
  font-style: normal;
  margin: 0;
  padding: 0;
}
.pg-title em {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 52px;
  font-weight: 600;
  font-style: italic;
  color: #7d7930;
  text-transform: uppercase;
  line-height: 1.1;
  margin-top: 0.15em;
}
@media (max-width: 560px) {
  .pg-title {
    font-size: 2.25rem;
  }
  .pg-title em {
    font-size: 2rem;
  }
}

.bc-heading {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 500;
  color: #7d7930;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.bc-heading--light {
  color: #333415;
}

.bc-wave-wrap {
  line-height: 0;
}
.bc-wave-wrap--from-cream {
  background: #f0ead6;
}
.bc-wave-wrap--from-dark {
  background: #333415;
}
.bc-wave-wrap--efefe7 {
  background: #EFEFE7;
}

.bc-wave {
  display: block;
  width: 100%;
  height: auto;
}

.bc-problema {
  background: #EFEFE7;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.bc-problema .bc-heading {
  text-align: center;
}

.bc-problema-body {
  max-width: 760px;
  margin-inline: auto;
}
.bc-problema-body p {
  font-size: 1rem;
  color: #3d3d28;
  margin-bottom: 1.25rem;
  text-align: center;
  line-height: 1.65;
}
.bc-problema-body p:last-child {
  margin-bottom: 0;
}

.bc-contexto {
  background: #7d7930;
  padding-top: 50px;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.bc-contexto .bc-heading {
  color: #EFEFE7;
}

.bc-contexto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.bc-contexto-img {
  width: 100%;
  height: auto;
  display: block;
}

.bc-contexto-text p {
  font-size: 1rem;
  color: #EFEFE7;
  line-height: 1.65;
}

.bc-distingue {
  margin-top: 2rem;
}
.bc-distingue p {
  font-size: 1rem;
  color: #EFEFE7;
  max-width: 780px;
  line-height: 1.65;
}

.bc-light-wrap {
  background: #EFEFE7 url("../img/servicios/corporativo/fondo-ramas.png") no-repeat left center/50% auto;
  padding-top: 100px;
}

.bc-buyer {
  padding-bottom: clamp(3rem, 6vw, 5rem);
  color: #333415;
}

.bc-buyer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.bc-buyer-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 36px;
  font-weight: 500;
  color: #7d7930;
  line-height: 1.3;
}

.bc-buyer-table-wrap {
  border: 1px solid #96918b;
  border-radius: 20px;
  overflow: hidden;
}

.bc-table {
  width: 100%;
  border-collapse: collapse;
}
.bc-table th {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 600;
  color: #333415;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid #96918b;
  border-right: 1px solid #96918b;
  text-align: left;
}
.bc-table th:last-child {
  border-right: none;
}
.bc-table td {
  padding: 0.9rem 1.25rem;
  color: #333415;
  font-size: 0.95rem;
  border-bottom: 1px solid #96918b;
  border-right: 1px solid #96918b;
  vertical-align: top;
  line-height: 1.5;
}
.bc-table td:last-child {
  border-right: none;
}
.bc-table td:first-child {
  font-weight: 600;
  width: 34%;
  white-space: nowrap;
}
.bc-table tbody tr:last-child td {
  border-bottom: none;
}

.bc-propuesta-wrap {
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.bc-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.bc-col-img {
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 2rem;
}
.bc-col-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.bc-items {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.bc-item h3 {
  font-family: "Lato", system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  color: #333415;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.bc-item p {
  font-size: 0.95rem;
  color: #333415;
  line-height: 1.65;
}

.bc-time {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.65;
  font-size: 0.78rem;
}

.bc-tono {
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}

.bc-tono-label {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 500;
  color: #7d7930;
  margin-bottom: 0.65rem;
  line-height: 1.2;
}

.bc-tono-text {
  font-size: 1rem;
  color: #3d3d28;
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.6;
}

.bc-testimonial {
  background: #333415 url("../svg/curva_bottom_light.svg") no-repeat top center/100% auto;
  padding-top: 70px;
  padding-bottom: clamp(4rem, 8vw, 6rem);
  color: #EFEFE7;
}

.testimonial-heading {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 500;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.testimonial-swiper {
  width: 100%;
  padding-bottom: 2.5rem;
}

.testimonial-pagination {
  bottom: 0;
}
.testimonial-pagination .swiper-pagination-bullet {
  background: currentColor;
  opacity: 0.45;
}
.testimonial-pagination .swiper-pagination-bullet-active {
  background: currentColor;
  opacity: 1;
}

.testimonial-inner {
  max-width: 740px;
  margin-inline: auto;
  text-align: center;
  padding-top: clamp(2rem, 4vw, 3.5rem);
}

.testimonial-quote {
  display: block;
  margin-inline: auto;
  margin-bottom: 2rem;
  width: 56px;
  height: auto;
}

.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 1.75rem;
  line-height: 1.7;
  opacity: 0.88;
}

.testimonial-autor {
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-align: center;
}

.cta-sub {
  font-size: 1rem;
  max-width: 570px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  text-align: center;
}

.bc-cta {
  background: #333415;
  padding-bottom: clamp(4rem, 8vw, 6rem);
  text-align: center;
}
.bc-cta h2, .bc-cta p {
  color: #EFEFE7;
}

@media (max-width: 860px) {
  .bc-contexto-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .bc-buyer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .bc-dual-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
@media (max-width: 560px) {
  .bc-table td:first-child {
    white-space: normal;
  }
}
.be-heading {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 500;
  color: #7d7930;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.be-heading--light {
  color: #EFEFE7;
}
.be-heading--dark {
  color: #333415;
}

.be-wave-wrap {
  line-height: 0;
}
.be-wave-wrap--efefe7 {
  background: #EFEFE7;
}
.be-wave-wrap--verde {
  background: #7d7930;
}
.be-wave-wrap--dark {
  background: #333415;
}

.be-wave {
  display: block;
  width: 100%;
  height: auto;
}

.be-apertura {
  background: #EFEFE7;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  text-align: center;
}

.be-apertura-inner {
  max-width: 800px;
  margin-inline: auto;
}
.be-apertura-inner p {
  font-size: 1rem;
  color: #3d3d28;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.be-apertura-inner p:last-of-type {
  margin-bottom: 0;
}

.be-apertura-dots {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
}

.be-dot {
  display: inline-block;
  border-radius: 50%;
  background: #7d7930;
}
.be-dot--lg {
  width: 28px;
  height: 28px;
}
.be-dot--sm {
  width: 16px;
  height: 16px;
  opacity: 0.55;
}

.be-porque {
  background: #EFEFE7;
  padding-block: clamp(3rem, 6vw, 5rem);
}

.be-porque-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.be-porque-img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  display: block;
}

.be-porque-text p {
  font-size: 1rem;
  color: #3d3d28;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.be-porque-text p:last-child {
  margin-bottom: 0;
}

.be-porque-tagline {
  font-weight: 700;
  font-style: italic;
  color: #333415 !important;
}

.be-contexto {
  background: #333415;
  padding-block: clamp(3rem, 6vw, 5rem);
}

.be-contexto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.be-contexto-img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  display: block;
}

.be-contexto-text p {
  font-size: 1rem;
  color: #EFEFE7;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.be-contexto-text strong {
  color: #EFEFE7;
}

.be-buyer {
  margin-top: 2rem;
}

.be-buyer-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #EFEFE7;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.be-buyer-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.be-buyer-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.be-buyer-dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #EFEFE7;
  margin-top: 0.35rem;
}

.be-buyer-item strong {
  display: block;
  font-family: "Lato", system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #EFEFE7;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}
.be-buyer-item p {
  font-size: 0.9rem;
  color: rgba(239, 239, 231, 0.75);
  line-height: 1.5;
  margin-bottom: 0;
}

.be-distinta {
  background: #7d7930;
  padding-top: clamp(4rem, 8vw, 6rem);
  padding-bottom: 50px;
}

.be-distinta-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 500;
  color: #EFEFE7;
  text-align: center;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.be-distinta-sub {
  font-size: 1rem;
  color: rgba(239, 239, 231, 0.8);
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 1rem;
  line-height: 1.65;
}

.be-distinta-label {
  font-family: "Lato", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7d7930;
  text-align: center;
  margin-bottom: 2.5rem;
}

.be-contextos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

.be-contexto-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}
.be-contexto-card__name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  color: #EFEFE7;
  line-height: 1.3;
}

.be-contexto-icon {
  width: clamp(110px, 12vw, 150px);
  height: clamp(110px, 12vw, 150px);
  border-radius: 50%;
  background: #333415;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.be-contexto-icon img {
  width: 100%;
  height: auto;
}

.be-light-wrap {
  background: #EFEFE7 url("../img/servicios/corporativo/fondo-ramas.png") no-repeat right center/50% auto;
}

.be-propuesta-wrap {
  padding-top: 100px;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.be-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.be-col-img {
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 2rem;
}
.be-col-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.be-items {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.be-item h3 {
  font-family: "Lato", system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  color: #333415;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.be-item p {
  font-size: 0.95rem;
  color: #333415;
  line-height: 1.65;
}

.be-time {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.65;
  font-size: 0.78rem;
}

.be-tono {
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}

.be-tono-label {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 500;
  color: #7d7930;
  margin-bottom: 0.65rem;
  line-height: 1.2;
}

.be-tono-text {
  font-size: 1rem;
  color: #3d3d28;
  margin-inline: auto;
  line-height: 1.6;
}

.be-galeria {
  padding-block: clamp(4rem, 8vw, 6rem);
}

.be-galeria-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 500;
  color: #333415;
  text-align: center;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.be-galeria-sub {
  font-size: 1rem;
  color: #333415;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.be-galeria-grid {
  position: relative;
  width: 95%;
  margin-inline: auto;
}

.be-galeria-central img,
.be-galeria-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.be-galeria-central img:hover,
.be-galeria-item img:hover {
  transform: scale(1.04);
}

@media (min-width: 861px) {
  .be-galeria-grid {
    aspect-ratio: 1440/900;
  }
  .be-galeria-central {
    position: absolute;
    width: 21.91%;
    top: 31.25%;
    left: 37.2%;
    z-index: 1;
  }
  .be-galeria-secundarias {
    position: absolute;
    inset: 0;
  }
  .be-galeria-item {
    position: absolute;
  }
  .be-galeria-item:nth-child(1) {
    width: 11.01%;
    top: 6.25%;
    left: 20.82%;
  }
  .be-galeria-item:nth-child(2) {
    width: 16.08%;
    top: 3.14%;
    left: 35.26%;
  }
  .be-galeria-item:nth-child(3) {
    width: 16.08%;
    top: 10.69%;
    left: 54.02%;
  }
  .be-galeria-item:nth-child(4) {
    width: 16.08%;
    top: 12.47%;
    left: 71.72%;
  }
  .be-galeria-item:nth-child(5) {
    width: 16.08%;
    top: 25.03%;
    left: 6.65%;
  }
  .be-galeria-item:nth-child(6) {
    width: 11.01%;
    top: 28.92%;
    left: 25.68%;
  }
  .be-galeria-item:nth-child(7) {
    width: 16.08%;
    top: 37.81%;
    left: 61.37%;
  }
  .be-galeria-item:nth-child(8) {
    width: 11.01%;
    top: 38.47%;
    left: 79.71%;
  }
  .be-galeria-item:nth-child(9) {
    width: 11.01%;
    top: 56.25%;
    left: 8.25%;
  }
  .be-galeria-item:nth-child(10) {
    width: 16.08%;
    top: 53.47%;
    left: 22.14%;
  }
  .be-galeria-item:nth-child(12) {
    width: 16.08%;
    top: 69.36%;
    left: 37.9%;
  }
  .be-galeria-item:nth-child(11) {
    width: 11.01%;
    top: 63.58%;
    left: 54.63%;
  }
  .be-galeria-item:nth-child(13) {
    width: 16.08%;
    top: 58.58%;
    left: 73.31%;
  }
}
.be-galeria-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.be-galeria-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.be-galeria-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 36, 16, 0.92);
}

.be-galeria-modal-inner {
  position: relative;
  width: min(90vw, 900px);
  z-index: 1;
}

.be-galeria-modal-close {
  position: absolute;
  top: -3rem;
  right: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  color: #EFEFE7;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.be-galeria-modal-close:hover {
  background: rgba(255, 255, 255, 0.12);
}

.be-galeria-swiper {
  width: 100%;
}
.be-galeria-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.be-galeria-swiper img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}
.be-galeria-swiper .swiper-button-prev,
.be-galeria-swiper .swiper-button-next {
  color: #EFEFE7;
}
.be-galeria-swiper .swiper-pagination-bullet {
  background: #EFEFE7;
  opacity: 0.6;
}
.be-galeria-swiper .swiper-pagination-bullet-active {
  opacity: 1;
}

@media (max-width: 560px) {
  .be-galeria-modal-inner {
    width: 92vw;
  }
  .be-galeria-modal-close {
    top: -2.75rem;
    right: 0;
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1.5rem;
  }
}
.be-cta {
  background: #333415;
  padding-bottom: clamp(4rem, 8vw, 6rem);
  text-align: center;
}
.be-cta h2, .be-cta p {
  color: #EFEFE7;
}

@media (max-width: 1024px) {
  .be-contextos-grid {
    gap: 1.5rem;
  }
}
@media (max-width: 860px) {
  .be-apertura-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .be-porque-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .be-contexto-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .be-dual-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .be-galeria-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
  }
  .be-galeria-central {
    position: static;
    width: 45%;
  }
  .be-galeria-secundarias {
    position: static;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
  }
  .be-galeria-item {
    position: static;
    width: 29%;
  }
  .be-galeria-item img {
    width: 85%;
    margin-inline: auto;
  }
}
@media (max-width: 560px) {
  .be-contextos-grid {
    gap: 2rem;
  }
  .be-contexto-icon {
    width: 150px;
    height: 150px;
  }
}
.si-heading {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 500;
  color: #7d7930;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.si-heading--center {
  text-align: center;
}
.si-heading--white {
  color: #EFEFE7;
}
.si-heading--dark {
  color: #333415;
}
.si-heading--italic {
  font-style: italic;
}

.si-wave-wrap {
  line-height: 0;
}
.si-wave-wrap--efefe7 {
  background: #EFEFE7;
}
.si-wave-wrap--verde {
  background: #7d7930;
}

.si-wave {
  display: block;
  width: 100%;
  height: auto;
}

.si-caminos {
  background: #EFEFE7;
  padding-top: 0;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.si-caminos-intro {
  font-size: 1rem;
  color: #3d3d28;
  text-align: center;
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: 2.75rem;
  line-height: 1.65;
}

.si-caminos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 860px;
  margin-inline: auto;
}

.si-camino {
  padding-inline: 2.25rem;
}

.si-camino-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 600;
  color: #7d7930;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.si-camino p {
  font-size: 0.95rem;
  color: #3d3d28;
  line-height: 1.65;
}

.si-caminos-footer {
  font-size: 0.85rem;
  font-style: italic;
  color: #7d7930;
  text-align: center;
  margin-top: 2rem;
  letter-spacing: 0.03em;
}

.si-contexto {
  background: #7d7930;
  padding-top: 100px;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.si-contexto .si-heading {
  color: #EFEFE7;
}

.si-contexto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.si-contexto-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
}

.si-contexto-text p {
  font-size: 1rem;
  color: #EFEFE7;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.si-contexto-text p:last-child {
  margin-bottom: 0;
}
.si-contexto-text strong {
  color: #EFEFE7;
  font-weight: 700;
}

.si-modalidades {
  background: #EFEFE7;
}

.si-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.si-card-top {
  padding: 1.75rem 2rem 1.5rem;
  background: #EFEFE7;
}

.si-card-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 600;
  color: #7d7930;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.si-card-tagline {
  font-size: 1rem;
  color: #3d3d28;
  line-height: 1.55;
}

.si-card-body {
  background: #333415;
  padding: 1.75rem 2rem 2rem;
  border-radius: 1.5rem;
}

.si-card-icon {
  flex-shrink: 0;
  padding-top: 0.25rem;
}

.si-card-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.si-card-subtitle {
  font-family: "Lato", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #EFEFE7;
  line-height: 1.25;
  height: 60px;
  display: flex;
  align-items: center;
}

.si-card-body p {
  font-size: 1rem;
  color: rgba(239, 239, 231, 0.82);
  line-height: 1.65;
  margin-bottom: 0;
}

.si-card-list-title {
  font-family: "Lato", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: #EFEFE7;
  margin-top: 0.5rem;
}

.si-card-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding-left: 0;
}
.si-card-list li {
  font-size: 0.88rem;
  color: #EFEFE7;
  line-height: 1.5;
  padding-left: 1rem;
  position: relative;
}
.si-card-list li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: #7d7930;
  font-size: 1.2rem;
  line-height: 1.2;
}

.si-light-wrap {
  background: #EFEFE7 url("../img/servicios/corporativo/fondo-ramas.png") no-repeat left center/50% auto;
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

.si-buyer {
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.si-buyer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.si-buyer-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 36px;
  font-weight: 500;
  color: #7d7930;
  line-height: 1.3;
}

.si-buyer-table-wrap {
  border: 1px solid #96918b;
  border-radius: 20px;
  overflow: hidden;
}

.si-table {
  width: 100%;
  border-collapse: collapse;
}
.si-table th {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 600;
  color: #333415;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid #96918b;
  border-right: 1px solid #96918b;
  text-align: left;
}
.si-table th:last-child {
  border-right: none;
}
.si-table td {
  padding: 0.9rem 1.25rem;
  color: #333415;
  font-size: 0.95rem;
  border-right: 1px solid #96918b;
  vertical-align: top;
  line-height: 1.5;
}
.si-table td:last-child {
  border-right: none;
}
.si-table td:first-child {
  font-weight: 600;
  width: 34%;
  white-space: nowrap;
}
.si-table tbody tr:last-child td {
  border-bottom: none;
}

.si-propuesta-wrap {
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.si-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.si-col-img {
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 2rem;
}
.si-col-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.si-items {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.si-item h3 {
  font-family: "Lato", system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  color: #333415;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.si-item p {
  font-size: 0.95rem;
  color: #333415;
  line-height: 1.65;
}

.si-time {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.65;
  font-size: 0.78rem;
}

.si-tono {
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}

.si-tono-label {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 500;
  color: #7d7930;
  margin-bottom: 0.65rem;
  line-height: 1.2;
}

.si-tono-text {
  font-size: 1rem;
  color: #3d3d28;
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.6;
}

.si-testimonial {
  background: #333415 url("../svg/curva_bottom_light.svg") no-repeat top center/100% auto;
  padding-top: 70px;
  padding-bottom: clamp(4rem, 8vw, 6rem);
  color: #EFEFE7;
}

.si-cta {
  background: #333415;
  padding-bottom: clamp(4rem, 8vw, 6rem);
  text-align: center;
}
.si-cta h2, .si-cta p {
  color: #EFEFE7;
}

@media (max-width: 860px) {
  .si-contexto-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .si-cards-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .si-buyer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .si-dual-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .si-caminos-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .si-table td:first-child {
    white-space: normal;
  }
  .si-buyer-title {
    font-size: 28px;
  }
}
.qs-heading {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 500;
  color: #7d7930;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.qs-heading--center {
  text-align: center;
}
.qs-heading--light {
  color: #EFEFE7;
}

.qs-wave-wrap {
  line-height: 0;
}
.qs-wave-wrap--efefe7 {
  background: #EFEFE7;
}
.qs-wave-wrap--dark {
  background: #333415;
}

.qs-wave {
  display: block;
  width: 100%;
  height: auto;
}

.qs-circular-frame {
  width: min(480px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
}
.qs-circular-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.qs-bio {
  background: #EFEFE7;
  padding-block: clamp(3rem, 6vw, 5rem);
}

.qs-bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

@media (min-width: 1025px) {
  .qs-bio-grid {
    grid-template-columns: 55% 40%;
    gap: 5%;
  }
}
.qs-bio-text p {
  font-size: 1rem;
  color: #3d3d28;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.qs-bio-text p:last-child {
  margin-bottom: 0;
}

.qs-certs {
  background: #EFEFE7;
  padding-block: clamp(3rem, 6vw, 5rem);
}

.qs-certs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
  align-items: start;
  max-width: 990px;
  margin-inline: auto;
}

.qs-cert-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.qs-cert-logo img {
  max-width: 280px;
  height: auto;
  object-fit: contain;
  display: block;
}

.qs-cert p {
  font-size: 0.95rem;
  color: #3d3d28;
  line-height: 1.65;
  text-align: center;
}

.qs-porque {
  background: #333415;
}

.qs-porque-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.qs-porque-text p {
  font-size: 1rem;
  color: rgba(239, 239, 231, 0.88);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.qs-porque-text p:last-child {
  margin-bottom: 0;
}

.qs-slogan {
  background: #EFEFE7;
  padding-block: clamp(3.5rem, 7vw, 6rem);
  text-align: center;
}

.qs-slogan-img {
  max-width: 580px;
  width: 100%;
  height: auto;
  display: block;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

@media (max-width: 860px) {
  .qs-bio-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .qs-bio-media {
    order: -1;
  }
  .qs-circular-frame {
    width: 90%;
    max-width: 450px;
  }
  .qs-porque-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .qs-certs-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }
}
@media (max-width: 560px) {
  .qs-slogan-title {
    font-size: 1.3rem;
  }
  .qs-slogan-title em {
    font-size: 1.6rem;
  }
}
.sr-heading {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 500;
  color: #7d7930;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.sr-heading--center {
  text-align: center;
}
.sr-heading--light {
  color: #EFEFE7;
}

.sr-wave-wrap {
  line-height: 0;
}
.sr-wave-wrap--efefe7 {
  background: #EFEFE7;
}
.sr-wave-wrap--dark {
  background: #333415;
}

.sr-wave {
  display: block;
  width: 100%;
  height: auto;
}

.sr-dark-wrap {
  background: #333415;
}

.sr-breathwork {
  background: #EFEFE7;
  padding-block: clamp(3rem, 6vw, 5rem);
}

.sr-breathwork-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.sr-breathwork-text p {
  font-size: 1rem;
  color: #3d3d28;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.sr-breathwork-text p:last-child {
  margin-bottom: 0;
}

.sr-breathwork-img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 861px) {
  .sr-breathwork-grid {
    grid-template-columns: 55% 40%;
    gap: 5%;
    align-items: start;
  }
}
.sr-ciencia {
  position: relative;
  padding: 0;
  background: #EFEFE7;
}

.sr-ciencia .container {
  padding-left: 0;
}

.sr-ciencia-back {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.sr-ciencia-intro {
  font-size: 1rem;
  color: #333415;
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 3rem;
  line-height: 1.65;
}

.sr-ciencia-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.sr-circular-frame {
  width: min(480px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
}
.sr-circular-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 860px) {
  .sr-ciencia {
    padding: 0;
  }
  .sr-ciencia-media {
    order: 2;
  }
  .sr-circular-frame {
    width: 90%;
    max-width: 450px;
  }
}
.sr-ciencia-refs {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.sr-ref p {
  font-size: 0.95rem;
  color: #333415;
  line-height: 1.65;
  margin-bottom: 0.35rem;
}

.sr-ref-cite {
  font-family: "Lato", system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #7d7930;
  letter-spacing: 0.04em;
}

@media (min-width: 861px) {
  .sr-ciencia-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  .sr-ciencia-refs {
    padding-bottom: 100px;
  }
}
@media (min-width: 1200px) {
  .sr-ciencia-refs {
    padding-bottom: 150px;
  }
}
.sr-conversaciones {
  padding-top: 30px;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.sr-conv-intro {
  font-size: 1rem;
  color: rgba(239, 239, 231, 0.75);
  text-align: center;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.sr-pods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.sr-pod {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(219, 215, 210, 0);
  border: 1px solid #DBD7D2;
  border-radius: 1rem;
  padding: 0.85rem 1rem;
  width: 100%;
  color: #EFEFE7;
  transition: background 0.3s ease, color 0.3s ease;
}
.sr-pod:hover {
  background: rgba(219, 215, 210, 0.8);
  color: #333415;
}

.sr-pod-play {
  position: absolute;
  bottom: 14px;
  right: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sr-pod:hover .sr-pod-play {
  opacity: 1;
}

.sr-pod-thumb {
  width: 150px;
  height: 150px;
  border-radius: 0.5rem;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

.sr-pod-show {
  display: block;
  font-family: "Lato", system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #EFEFE7;
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
  transition: color 0.3s ease;
}

.sr-pod:hover .sr-pod-show {
  color: #333415;
}

.sr-pod-info p {
  font-size: 0.85rem;
  color: rgba(239, 239, 231, 0.7);
  line-height: 1.45;
  margin: 0;
  transition: color 0.3s ease;
}

.sr-pod:hover .sr-pod-info p {
  color: #333415;
}

@media (min-width: 861px) {
  .sr-pod {
    width: calc((100% - 2rem) / 3);
  }
}
.sr-tecnicas {
  background: #EFEFE7;
  padding-block: clamp(3rem, 6vw, 5rem);
}

.sr-tecnicas-intro {
  font-size: 1rem;
  color: #3d3d28;
  text-align: center;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.sr-tecnicas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.sr-tecnica-card {
  position: relative;
  background: #DBD7D2;
  border-radius: 1rem;
  padding: 2.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #333415;
  text-transform: uppercase;
  min-height: 130px;
  line-height: 1.6;
  transition: background 0.3s ease, color 0.3s ease, padding 0.3s ease;
}
.sr-tecnica-card:hover {
  background: #96918B;
  color: #EFEFE7;
  padding: 1.5rem 1.5rem 3.5rem;
}

.sr-tecnica-play {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sr-tecnica-card:hover .sr-tecnica-play {
  opacity: 1;
}

@media (min-width: 861px) {
  .sr-tecnicas-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 560px) {
  .sr-tecnicas-grid {
    grid-template-columns: 1fr;
  }
}
.sr-cta {
  background: #EFEFE7;
  padding-bottom: clamp(4rem, 8vw, 6rem);
  text-align: center;
}
.sr-cta .cta-title {
  color: #333415;
}
.sr-cta .cta-sub {
  color: #3d3d28;
}

.gd-guias {
  background: #EFEFE7;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.gd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.gd-card {
  background: #DBD7D2;
  border-radius: 1.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  padding: 10px;
  transition: background 0.3s ease;
}
.gd-card:hover {
  background: #96918B;
}
.gd-card:hover .gd-card-title {
  color: #EFEFE7;
}
.gd-card:hover .gd-card-desc {
  color: #EFEFE7;
}
.gd-card:hover .gd-download-btn {
  background: #EFEFE7;
}
.gd-card:hover .gd-download-icon {
  fill: #333415;
}

.gd-card-img img {
  width: 100%;
  height: auto;
  display: block;
}

.gd-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex-grow: 1;
}

.gd-card-title {
  font-family: "Lato", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #333415;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.gd-card-desc {
  font-size: 0.9rem;
  color: #3d3d28;
  line-height: 1.6;
  flex-grow: 1;
  transition: color 0.3s ease;
}

.gd-card-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.5rem;
}

.gd-download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #96918B;
  transition: background 0.3s ease;
}

.gd-download-icon {
  fill: #EFEFE7;
  width: 18px;
  height: auto;
  display: block;
  transition: fill 0.3s ease;
}

@media (max-width: 860px) {
  .gd-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }
}
.ct-required {
  font-size: 0.78rem;
  color: #96918B;
  margin-bottom: 1.25rem;
}

.ct-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.ct-input,
.ct-select,
.ct-textarea {
  width: 100%;
  background: #DBD7D2;
  border: none;
  border-radius: 0.75rem;
  padding: 0.85rem 1.1rem;
  font-family: "Lato", system-ui, sans-serif;
  font-size: 0.9rem;
  color: #333415;
  outline: none;
  transition: background 0.2s;
}
.ct-input:focus,
.ct-select:focus,
.ct-textarea:focus {
  background: #ccc9c3;
}

.ct-input::placeholder, .ct-textarea::placeholder {
  color: #96918B;
}

.ct-select-wrap {
  position: relative;
}

.ct-select {
  appearance: none;
  cursor: pointer;
  width: 100%;
  padding-right: 2.5rem;
}
.ct-select option:first-child {
  color: #96918B;
}

.ct-select-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

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

.ct-checkbox-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  margin-top: 0.25rem;
}

.ct-checkbox {
  width: 18px;
  height: 18px;
  accent-color: #333415;
  cursor: pointer;
  flex-shrink: 0;
}

.ct-checkbox-label {
  font-size: 0.875rem;
  color: #333415;
}
.ct-checkbox-label a {
  color: #7d7930;
  text-decoration: underline;
}

.ct-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem;
  gap: 1.25rem;
}
.ct-success.is-visible {
  display: flex;
}

.ct-success-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.3rem, 4vw, 1.75rem);
  font-weight: 400;
  text-transform: uppercase;
  color: #333415;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.ct-success-sub {
  font-size: 0.95rem;
  color: #333415;
  line-height: 1.6;
}

.ctm-section {
  background: #EFEFE7;
  padding-bottom: 100px;
}

.ctm-wrap {
  max-width: 480px;
  margin-inline: auto;
}

.ctm-footer {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}

.ctm-footer .btn:disabled {
  pointer-events: none;
  opacity: 0.6;
}
.ctm-footer .btn:disabled::before {
  bottom: 7px;
  right: 32px;
  background: #EFEFE7;
  transition: none;
}
.ctm-footer .btn:disabled::after {
  right: 23px;
  background: #EFEFE7;
  transition: none;
}
.ctm-footer .btn:disabled .btn-circle {
  right: 35px;
  transition: none;
}

.ap-content {
  background: #EFEFE7;
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: 100px;
}

.ap-heading {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: #333415;
  margin-bottom: 2rem;
}

.ap-body p {
  font-size: 1rem;
  color: #333415;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.ap-body p:last-child {
  margin-bottom: 0;
}

.whatsapp-float {
  position: fixed;
  top: 90%;
  right: 20px;
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #333415;
  border: 1px solid #7d7930;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  z-index: 250;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.whatsapp-float:hover {
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.3);
}
.whatsapp-float img {
  width: 34px;
  height: 34px;
}

@media (max-width: 560px) {
  .whatsapp-float {
    top: 85%;
    right: 10px;
    width: 56px;
    height: 56px;
  }
  .whatsapp-float img {
    width: 28px;
    height: 28px;
  }
}

/*# sourceMappingURL=main.css.map */
