/** Shopify CDN: Minification failed

Line 129:11 Expected "*/" to terminate multi-line comment

**/
/* ==========================================================

.price{color:var(--dl-dorado)}

/* ==========================================================
   FORMS (clean + accessible)
   ========================================================== */

input,textarea,select{
  border:1px solid rgba(230,211,202,0.8);
  padding:14px 16px;
  font-family:var(--font-sans);
  transition:border var(--t-fast);
}

input:focus,textarea:focus,select:focus{
  border-color:var(--dl-burdeos);
  outline:none;
}

/* ==========================================================
   SECTION SPACING (more breathing room)
   ========================================================== */

.section-header{
  margin-bottom:var(--space-lg);
}

.section-header__title{
  text-align:center;
  margin-bottom:var(--space-sm);
}

.section-header__description{
  max-width:var(--text);
  margin:0 auto;
  text-align:center;
}

/* ==========================================================
   MOBILE SIMPLIFICATION
   ========================================================== */

@media(max-width:749px){

h1{font-size:clamp(34px,10vw,52px)}

.button{width:100%}

.header__heading-link{font-size:1.4rem}

}

/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation:none!important;
    transition:none!important;
  }
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: var(--space-lg);
}

.contact__detail-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--dl-dorado);
  margin-bottom: 4px;
}

.contact__detail-value {
  color: var(--dl-texto);
  font-size: 15px;
}

.contact form {
  background: rgba(255,255,255,0.75);
  padding: 48px;
  border: 1px solid rgba(230,211,202,0.5);
}

.contact input,
.contact textarea {
  background: transparent;
}

.contact textarea {
  min-height: 180px;
}

.contact .button {
  width: 100%;
  margin-top: var(--space-sm);
}

/* ==========================================================
   SECTION DIVIDERS
   ========================================================== */

.shopify-section:not(:first-child)::before {
  content: '';
  display: block;
  width: calc(100% - 120px);
  max-width: 1320px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(230,211,202,0.7),
    transparent
  );
  margin: 0 auto var(--space-xl);
}

/* ========