/* ==========================================================================
   809 Mercado — Soy Artesano
   Estilos propios de la página (base compartida en home.css)
   El formulario reusa la maqueta de la landing; su CSS va al final de este
   archivo (portado desde style.css, scope #formulario).
   ========================================================================== */

/* ==========================================================================
   Hero
   ========================================================================== */
#sa-hero {
  position: relative;
  background-size: cover;
  background-position: 50% 25%;
  background-repeat: no-repeat;
  min-height: 60vh;
  display: flex;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 5em 0 4.5em;
}

#sa-hero .gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(140, 43, 43, 0.78) 0%, rgba(18, 7, 7, 0.72) 100%);
}

#sa-hero .inwrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sa-hero-logo {
  width: 16em;
  height: auto;
  margin-bottom: 1.2em;
  filter: brightness(0) invert(1);
}

.sa-hero-title {
  font-size: 2.6em;
  line-height: 1;
  margin-bottom: 0.1em;
  text-shadow: 0 0.04em 0.3em rgba(0, 0, 0, 0.4);
}

.sa-hero-text {
  max-width: 49em;
  font-size: 0.95em;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.8em;
}

.sa-hero-btn {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1em;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background-color: #D93611;
  padding: 1.05em 2.6em;
  border-radius: 0.6em;
  box-shadow: 0 0.8em 1.8em rgba(217, 54, 17, 0.4);
  transition: all 0.3s ease;
}

.sa-hero-btn:hover {
  background-color: #8C2B2B;
  transform: translateY(-2px);
}


/* ==========================================================================
   Countdown strip
   ========================================================================== */
#sa-countdown {
  background-color: #F2B706;
  padding: 1.1em 0;
}

#sa-countdown .inwrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8em;
  text-align: center;
}

.sa-countdown-label {
  font-weight: 700;
  font-size: 0.78em;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8C2B2B;
}

.sa-countdown-timer {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.sa-count-item {
  display: flex;
  align-items: center;
  gap: 0.25em;
  flex-direction: column;
}

.sa-count-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6em;
  line-height: 1;
  color: #8C2B2B;
}

.sa-count-unit {
  font-size: 0.62em;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(140, 43, 43, 0.7);
}

.sa-count-sep {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2em;
  color: #8C2B2B;
}


/* ==========================================================================
   Más que un mercado, un movimiento
   ========================================================================== */
#sa-movimiento {
  background-color: #F4F3F1;
  padding: 4em 0 4.5em;
}

.sa-movimiento-eyebrow {
  text-align: center;
  font-size: 1.05em;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: #8C2B2B;
  margin-bottom: 3em;
}

#sa-movimiento .cols {
  display: flex;
  flex-direction: column;
  gap: 2em;
  align-items: center;
  justify-content: center;
}

.sa-movimiento-media {
  width: 100%;
  max-width: 22em;
  border-radius: 1.2em;
  overflow: hidden;
  box-shadow: 0 1.2em 2.5em rgba(140, 43, 43, 0.18);
}

.sa-movimiento-media img {
  display: block;
  width: 100%;
  height: auto;
}

#sa-movimiento .section-title {
  font-size: 2.8em;
  line-height: 0.95;
  color: #D93611;
  margin-bottom: 0.7em;
}

#sa-movimiento .section-title span {
  color: #D93611;
}

.sa-movimiento-body p {
  font-size: 0.95em;
  line-height: 1.8;
  color: #4B5563;
  max-width: 30em;
}

.sa-movimiento-body strong {
  color: #D93611;
  font-weight: 600;
}


/* ==========================================================================
   Marquee + aplica
   ========================================================================== */
#sa-aplica {
  background-color: #F4F3F1;
}

.sa-marquee {
  overflow: hidden;
  background-color: #D93611;
  padding: 0.7em 0;
}

.sa-marquee-track {
  display: flex;
  width: max-content;
  animation: sa-marquee 24s linear infinite;
}

.sa-marquee-track span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.5em;
  letter-spacing: 0.04em;
  color: #fff;
  white-space: nowrap;
}

.sa-marquee-track span i {
  font-style: normal;
  color: #FDE8AA;
  margin: 0 0.7em;
}

@keyframes sa-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sa-marquee-track {
    animation: none;
  }
}

.sa-aplica-cta {
  text-align: center;
  padding: 2.5em 0;
}

.sa-aplica-btn {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.95em;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background-color: #D93611;
  padding: 1.05em 2.6em;
  border-radius: 0.6em;
  box-shadow: 0 0.8em 1.8em rgba(217, 54, 17, 0.3);
  transition: all 0.3s ease;
}

.sa-aplica-btn:hover {
  background-color: #8C2B2B;
  transform: translateY(-2px);
}


/* ==========================================================================
   El eco de nuestra comunidad (testimonios — reusa .eco-swiper de home.css)
   ========================================================================== */
#sa-testimonios {
  background-color: #F2B706;
  padding: 4em 0 4.5em;
  overflow: hidden;
}

#sa-testimonios .section-title {
  font-size: 2.4em;
  margin-bottom: 1.6em;
}

#sa-testimonios .section-title,
#sa-testimonios .section-title span {
  color: #D93611;
}

/* Card más cálida (crema) + tipografía más grande, scope soy-artesano */
#sa-testimonios .eco-card {
  background-color: #FDE8AA;
}

#sa-testimonios .eco-card blockquote {
  font-size: 2.3em;
  color: #8C2B2B;
}

#sa-testimonios .eco-author {
  font-size: 1.05em;
  color: #8C2B2B;
}

#sa-testimonios .eco-text {
  font-size: 0.98em;
  color: rgba(140, 43, 43, 0.85);
}

/* Paginación clara sobre el dorado */
#sa-testimonios .eco-swiper .swiper-pagination {
  background-color: rgba(255, 252, 245, 0.5);
}

#sa-testimonios .eco-swiper .swiper-pagination-bullet {
  background-color: rgba(140, 43, 43, 0.3);
}

#sa-testimonios .eco-swiper .swiper-pagination-bullet-active {
  background-color: #8C2B2B;
}


/* ==========================================================================
   Conversaciones claras (FAQ — reusa .faq-* de home.css)
   ========================================================================== */
#sa-conversaciones {
  background-color: #F4F3F1;
  padding: 4em 0 4.5em;
}

#sa-conversaciones .section-title {
  font-size: 2.4em;
  margin-bottom: 0.4em;
}

#sa-conversaciones .section-title,
#sa-conversaciones .section-title span {
  color: #D93611;
}

.sa-conversaciones-sub {
  text-align: center;
  font-size: 0.92em;
  line-height: 1.6;
  color: rgba(140, 43, 43, 0.7);
  max-width: 34em;
  margin: 0 auto 2.6em;
}

#sa-conversaciones .cols {
  display: flex;
  flex-direction: column;
  gap: 2.5em;
}

.sa-conversaciones-image {
  width: 100%;
  border-radius: 1.3em;
  overflow: hidden;
  box-shadow: 0 1.2em 2.5em rgba(140, 43, 43, 0.16);
}

.sa-conversaciones-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ==========================================================================
   ¿Un café virtual?
   ========================================================================== */
#sa-cafe {
  background-color: #F4F3F1;
  padding: 0 0 4.5em;
}

.sa-cafe-card {
  position: relative;
  overflow: hidden;
  background-color: #F2B706;
  border-radius: 1.5em;
  padding: 3em 1.5em;
  text-align: center;
  box-shadow: 0 1.2em 3em rgba(242, 183, 6, 0.35);
  width: 100%;
  max-width: 38em;
  margin: 0 auto;
}

.sa-cafe-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sa-cafe-title {
  font-size: 2.4em;
  line-height: 1;
  color: #8C2B2B;
  margin-bottom: 0.4em;
}

.sa-cafe-text {
  max-width: 26em;
  font-size: 0.92em;
  line-height: 1.7;
  color: rgba(140, 43, 43, 0.8);
  margin-bottom: 1.6em;
}

.sa-cafe-btn {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.95em;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background-color: #8C2B2B;
  padding: 1em 2.4em;
  border-radius: 0.6em;
  transition: all 0.3s ease;
}

.sa-cafe-btn:hover {
  background-color: #D93611;
  transform: translateY(-2px);
}

/* Manos decorativas */
.sa-cafe-deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.sa-deco-tl {
  width: 3.4em;
  top: 0;
  left: 0;
}

.sa-deco-tr {
  width: 2.8em;
  top: 0em;
  right: 0em;
}

.sa-deco-bl {
  width: 2.8em;
  bottom: 0em;
  left: 0em;
}

.sa-deco-br {
  width: 3em;
  bottom: 0;
  right: 0;
}


/* ==========================================================================
   Footer — variante clara (override del footer compartido maroon)
   ========================================================================== */
#main-footer.footer-light {
  background-color: #FDE8AA;
  color: #8C2B2B;
}

.footer-light .footer-content {
  border-bottom-color: rgba(140, 43, 43, 0.15);
}

.footer-light .footer-logo-text {
  color: #D93611;
}

.footer-light .footer-tagline {
  color: rgba(140, 43, 43, 0.6);
}

.footer-light .footer-description {
  color: rgba(140, 43, 43, 0.8);
}

.footer-light .footer-description a {
  color: #D93611;
}

.footer-light .footer-social .social-icon {
  background-color: #D93611;
}

.footer-light .footer-social .social-icon:hover {
  background-color: #8C2B2B;
}

.footer-light .footer-newsletter-subtitle {
  color: rgba(140, 43, 43, 0.75);
}

.footer-light .footer-newsletter-title,
.footer-light .footer-newsletter-title span {
  color: #D93611;
}

.footer-light .newsletter-form input {
  border-color: rgba(140, 43, 43, 0.25);
  background-color: rgba(255, 255, 255, 0.6);
  color: #8C2B2B;
}

.footer-light .newsletter-form input::placeholder {
  color: rgba(140, 43, 43, 0.5);
}

.footer-light .newsletter-form input:focus {
  border-color: #D93611;
}

.footer-light .newsletter-btn {
  background-color: #D93611;
  color: #fff;
}

.footer-light .newsletter-btn:hover {
  background-color: #8C2B2B;
  color: #fff;
}

.footer-light .response-newsletter {
  color: #8C2B2B;
}

.footer-light .footer-nav a {
  color: rgba(140, 43, 43, 0.8);
}

.footer-light .footer-nav a:hover {
  color: #D93611;
}

.footer-light .footer-logo img {
  filter: none;
  opacity: 1;
}

.footer-light .footer-copyright {
  color: rgba(140, 43, 43, 0.6);
}

.footer-light .footer-madein {
  color: rgba(140, 43, 43, 0.6);
}


/* ==========================================================================
   Responsive (secciones propias)
   ========================================================================== */
@media only screen and (min-width: 40em) {
  .sa-count-num {
    font-size: 2em;
  }

  .sa-count-unit {
    font-size: 0.7em;
    padding-left: 0.2em;
  }
}

@media only screen and (min-width: 48em) {
  .sa-hero-title {
    font-size: 3.6em;
  }

  #sa-countdown .inwrap {
    flex-direction: row;
    justify-content: space-between;
  }

  #sa-movimiento .cols {
    flex-direction: row;
    gap: 3em;
  }

  .sa-movimiento-media {
    flex: 0 0 40%;
    max-width: none;
  }

  .sa-movimiento-body {
    flex: 1;
    width: 100%;
    max-width: 23em;
  }

  #sa-conversaciones .cols {
    flex-direction: row;
    align-items: center;
    gap: 3em;
  }

  #sa-conversaciones .left,
  #sa-conversaciones .right {
    flex: 1;
  }

  .sa-conversaciones-image {
    position: sticky;
    top: 6em;
  }

  .sa-cafe-card {
    padding: 3.5em 3em;
  }

  .sa-cafe-title {
    font-size: 3em;
  }

  .sa-deco-tl {
    width: 7.5em;
  }

  .sa-deco-tr {
    width: 6.6em;
  }

  .sa-deco-bl {
    width: 6.4em;
  }

  .sa-deco-br {
    width: 6.6em;
  }
}

@media only screen and (min-width: 64em) {
  #sa-hero {
    min-height: 64vh;
  }

  .sa-hero-title {
    font-size: 4.4em;
  }

  #sa-movimiento .cols {
    gap: 4.5em;
  }

  .sa-movimiento-eyebrow {
    font-size: 1.3em;
    margin-bottom: 3.5em;
  }

  #sa-movimiento .section-title {
    font-size: 3.8em;
  }

  #sa-testimonios .section-title,
  #sa-conversaciones .section-title {
    font-size: 3.2em;
  }

  #sa-testimonios .eco-card blockquote {
    font-size: 2.7em;
  }

  #sa-testimonios .eco-author {
    font-size: 1.15em;
  }

  #sa-testimonios .eco-text {
    font-size: 1.05em;
  }
}


/* ==========================================================================
   FORMULARIO — portado desde style.css (la landing). Scope #formulario.
   ========================================================================== */
/* Formulario Section */
#formulario {
  background-color: #D93611;
  padding: 5em 0 6em;
}

#formulario .inwrap {
  max-width: 75em;
  width: 90%;
  margin: 0 auto;
}

#formulario .form-header {
  text-align: center;
  color: white;
  margin-bottom: 2em;
}

#formulario .form-header h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3em;
  font-weight: 400;
  margin: 0;
}

#formulario .form-header p {
  font-family: "Poppins", sans-serif;
  font-size: 1em;
  font-weight: 300;
  line-height: 1.6;
  max-width: 43.75em;
  margin: 0 auto;
}

#formulario .form-header p span {
  display: inline-block;
}

#formulario .form-container {
  background-color: white;
  border-radius: 1.25em;
  max-width: 62.5em;
  margin: 0 auto;
  padding: 2em 1.5em;
  position: relative;
}

#formulario .form-step {
  display: none;
}

#formulario .form-step.active {
  display: block;
}

#formulario .form-step h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.75em;
  font-weight: 400;
  color: #8C2B2B;
  margin: 0 0 0.6em 0;
  letter-spacing: 0.05em;
}

#formulario .form-step h4 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.25em;
  font-weight: 400;
  color: #8C2B2B;
  margin: 0 0 0.6em 0;
  letter-spacing: 0.05em;
}

#formulario .form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.25em;
  margin-bottom: 1.25em;
}

#formulario .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

#formulario .form-group.full-width {
  width: 100%;
}

#formulario .form-step .step-intro {
  margin-bottom: 1em;
}

#formulario .form-group label {
  font-family: "Poppins", sans-serif;
  font-size: 0.875em;
  font-weight: 700;
  color: #8C2B2B;
  margin-bottom: 0.5em;
}

#formulario .form-group .required {
  color: #8C2B2B;
}

#formulario .form-group input[type="text"],
#formulario .form-group input[type="email"],
#formulario .form-group input[type="tel"],
#formulario .form-group input[type="url"],
#formulario .form-group select,
#formulario .form-group textarea {
  font-family: "Poppins", sans-serif;
  font-size: 1em;
  padding: 0.75em 1em;
  border: 0.125em solid #E5E7EB;
  border-radius: 0.5em;
  background-color: white;
  color: #374151;
  -webkit-transition: border-color 0.3s ease;
  -o-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}

#formulario .form-group input:focus,
#formulario .form-group select:focus,
#formulario .form-group textarea:focus {
  outline: none;
  border-color: #8C2B2B;
}

#formulario .form-group select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23374151' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1em center;
  padding-right: 2.5em;
}

#formulario .form-group textarea {
  resize: vertical;
  min-height: 6em;
}

#formulario .radio-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2em;
  margin-top: 0.5em;
}

#formulario .radio-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5em;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 1em;
  color: #374151;
}

#formulario .radio-label input[type="radio"] {
  width: 1.25em;
  height: 1.25em;
  cursor: pointer;
}

/* Stand Options Styles */
#formulario .stand-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1em;
  margin-top: 0.5em;
}

#formulario .stand-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1em;
  padding: 1.25em;
  border: 0.125em solid #E5E7EB;
  border-radius: 0.75em;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: white;
}

#formulario .stand-option:hover {
  border-color: #D93611;
  background-color: #FFF5F5;
}

#formulario .stand-option input[type="radio"] {
  margin-top: 0.25em;
  width: 1.25em;
  height: 1.25em;
  cursor: pointer;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

#formulario .stand-option input[type="radio"]:checked~.stand-content {
  color: #8C2B2B;
}

#formulario .stand-option:has(input[type="radio"]:checked) {
  border-color: #D93611;
  background-color: #FFF5F5;
  border-width: 0.15em;
}

#formulario .stand-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

#formulario .stand-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0.5em;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.5em;
}

#formulario .stand-size {
  font-family: "Poppins", sans-serif;
  font-size: 1.125em;
  font-weight: 700;
  color: #8C2B2B;
}

#formulario .stand-price {
  font-family: "Poppins", sans-serif;
  font-size: 1.125em;
  font-weight: 700;
  color: #D93611;
}

#formulario .stand-description {
  font-family: "Poppins", sans-serif;
  font-size: 0.875em;
  color: #6B7280;
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
}

#formulario .form-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1em;
  margin-top: 2em;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

#formulario .form-step[data-step="1"] .form-actions {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

#formulario .btn-prev {
  padding: 1em 2.5em;
  background-color: #9CA3AF;
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 1em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0.45em;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#formulario .btn-prev:hover {
  background-color: #6B7280;
}

#formulario .btn-next,
#formulario .btn-submit {
  padding: 1em 2.5em;
  background-color: #D93611;
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 1em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0.45em;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#formulario .btn-next:hover,
#formulario .btn-submit:hover {
  background-color: #a02f15;
}

/* Summary Step Styles */
#formulario .summary-intro {
  font-family: "Poppins", sans-serif;
  font-size: 0.95em;
  color: #6B7280;
  margin-bottom: 2em;
  line-height: 1.6;
}

#formulario .summary-section {
  background-color: #F9FAFB;
  border-radius: 0.75em;
  padding: 1.5em;
  margin-bottom: 1.5em;
  border: 0.125em solid #E5E7EB;
}

#formulario .summary-section h4 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5em;
  font-weight: 400;
  color: #D93611;
  margin: 0 0 1em 0;
  letter-spacing: 0.05em;
}

#formulario .summary-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 1em;
  padding-bottom: 1em;
  border-bottom: 0.0625em solid #E5E7EB;
}

#formulario .summary-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

#formulario .summary-label {
  font-family: "Poppins", sans-serif;
  font-size: 0.875em;
  font-weight: 700;
  color: #8C2B2B;
  margin-bottom: 0.5em;
}

#formulario .summary-value {
  font-family: "Poppins", sans-serif;
  font-size: 1em;
  color: #374151;
  line-height: 1.6;
  word-wrap: break-word;
}

#formulario .summary-value:empty::before {
  content: "No proporcionado";
  color: #9CA3AF;
  font-style: italic;
}

/* Terms and Conditions Step Styles */
#formulario .terms-section {
  background-color: #F9FAFB;
  border-radius: 0.75em;
  padding: 1em 1.5em 1.5em;
  margin-bottom: 2em;
  border: 0.125em solid #E5E7EB;
}

#formulario .terms-section h4 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5em;
  font-weight: 400;
  color: #8C2B2B;
  margin: 1em 0 0.5em;
  letter-spacing: 0.05em;
}

#formulario .terms-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

#formulario .terms-list li {
  font-family: "Poppins", sans-serif;
  font-size: 0.95em;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 0.75em;
  padding-left: 1.5em;
  position: relative;
}

#formulario .terms-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #8C2B2B;
  font-weight: 700;
  font-size: 1.2em;
}

#formulario .terms-checkbox-wrapper {
  background-color: #FFF5F5;
  border: 0.125em solid #D93611;
  border-radius: 0.75em;
  padding: 1.5em;
  margin-bottom: 2em;
  margin-top: 1em;
}

#formulario .terms-checkbox-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1em;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 0.95em;
  color: #374151;
  line-height: 1.6;
}

#formulario .terms-checkbox-label input[type="checkbox"] {
  width: 1.5em;
  height: 1.5em;
  cursor: pointer;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 0.15em;
  accent-color: #D93611;
}

#formulario .terms-checkbox-label span {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: 500;
  color: #8C2B2B;
}

#formulario .btn-submit:disabled,
#formulario .btn-payment:disabled {
  background-color: #9CA3AF;
  cursor: not-allowed;
  opacity: 0.6;
}

#formulario .btn-submit:disabled:hover,
#formulario .btn-payment:disabled:hover {
  background-color: #9CA3AF;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

/* Success Screen Styles */
#formulario .success-screen {
  text-align: center;
  padding: 2em 0;
}

#formulario .success-icon {
  margin: 0 auto 1.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#formulario .success-icon svg {
  width: 5em;
  height: 5em;
}

#formulario .success-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5em;
  font-weight: 400;
  color: #D93611;
  margin: 0 0 0.5em 0;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

#formulario .success-message {
  font-family: "Poppins", sans-serif;
  font-size: 1em;
  color: #6B7280;
  line-height: 1.6;
  margin: 0 auto 2em;
  max-width: 35em;
}

#formulario .success-info-box {
  background-color: #F3F4F6;
  border-radius: 0.75em;
  padding: 1.5em;
  margin: 0 auto 2em;
  /* max-width: 35em; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1em;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#formulario .success-info-box svg {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 2em;
  height: 2em;
}

#formulario .success-info-box p {
  font-family: "Poppins", sans-serif;
  font-size: 0.95em;
  color: #374151;
  line-height: 1.6;
  margin: 0;
  text-align: left;
}

#formulario .success-info-box strong {
  color: #8C2B2B;
  font-weight: 700;
}

#formulario .success-footer {
  margin-top: 2em;
}

#formulario .success-footer-text {
  font-family: "Poppins", sans-serif;
  font-size: 1em;
  color: #8C2B2B;
  font-weight: 700;
  margin: 0 0 1em 0;
}

#formulario .success-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1.5em;
}

#formulario .success-social-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

#formulario .success-social-icon:hover {
  -webkit-transform: translateY(-0.25em);
  -ms-transform: translateY(-0.25em);
  transform: translateY(-0.25em);
}

#formulario .success-social-icon img {
  width: 2.5em;
  height: 2em;
}

#formulario .stand-preview-section .standSwiper {
  height: 27em;
  overflow: hidden;
  position: relative;
}

#formulario .stand-preview-section .swiper-slide {
  height: 27em;
  overflow: hidden;
  position: relative;
}

#formulario .stand-preview-section .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  /* se comporta como background-size: cover */
  -o-object-position: center;
  object-position: center;
}

#formulario .stand-preview-section svg path {
  height: 100%;
  object-fit: contain;
  transform-origin: center;
  width: 100%;
  fill: rgb(218 54 16);
  pointer-events: none
}

#formulario .document-instructions .download-btn {
  text-align: center;
}

#formulario .document-instructions h4 {
  margin-bottom: 0;
}

@media (min-width: 29em) {
  #formulario .form-actions {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

@media (min-width: 48em) {
  #formulario {
    padding: 5em 0 8em;
  }

  #formulario .form-header h2 {
    font-size: 4em;
  }

  #formulario .form-header p {
    font-size: 1.125em;
  }

  #formulario .form-container {
    padding: 3em 2.5em;
  }

  #formulario .form-step h3 {
    font-size: 2em;
  }

  #formulario .form-step h4 {
    font-size: 1.5em;
  }

  #formulario .form-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 1.5em;
  }

  #formulario .form-group label {
    font-size: 1em;
  }

  #formulario .summary-intro {
    font-size: 1em;
  }

  #formulario .summary-section {
    padding: 2em;
  }

  #formulario .summary-section h4 {
    font-size: 1.75em;
  }

  #formulario .summary-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 1em;
  }

  #formulario .summary-label {
    font-size: 0.95em;
    min-width: 12em;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  #formulario .summary-value {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  #formulario .terms-section {
    padding: 0em 2em 2em;
  }

  #formulario .terms-section h4 {
    font-size: 1.75em;
  }

  #formulario .terms-list li {
    font-size: 1em;
  }

  #formulario .terms-checkbox-wrapper {
    padding: 2em;
  }

  #formulario .terms-checkbox-label {
    font-size: 1em;
  }
}

@media (min-width: 90em) {
  #formulario {
    padding: 5em 0 14em;
  }

  #formulario .form-header h2 {
    font-size: 4.5em;
  }

  #formulario .form-header p {
    font-size: 1.25em;
  }

  #formulario .form-container {
    padding: 3.5em 4em;

    margin: 0 auto;
  }

  #formulario .form-step h3 {
    font-size: 2.25em;
  }

  #formulario .form-step h4 {
    font-size: 1.75em;
  }

  #formulario .summary-intro {
    font-size: 1.125em;
  }

  #formulario .summary-section h4 {
    font-size: 2em;
  }

  #formulario .summary-label {
    font-size: 1em;
    min-width: 14em;
  }

  #formulario .terms-section h4 {
    font-size: 2em;
  }

  #formulario .terms-list li {
    font-size: 1.05em;
  }

  #formulario .terms-checkbox-label {
    font-size: 1.05em;
  }
}