/** Shopify CDN: Minification failed

Line 15:0 Unexpected "}"

**/
/* ==== SECCIÓN ¿POR QUÉ ELEGIRNOS? (BOLDER VERSION) ==== */
.whyus-section {
  background-color: #FFF7ED;
  padding: 70px 0 80px;
  color: #292E62;
  font-family: "Helvetica", "Arial", sans-serif;
  margin-top: 0 !important; /* elimina el espacio entre secciones */
  padding-top: 40px; /* antes: 70px → lo reducimos */
}
}

.whyus-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px;
}

.whyus-header h2 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.whyus-header p {
  font-size: 1rem;
  line-height: 1.6;
  color: #2E2A39;
}

/* --- LIST STYLE --- */
.whyus-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto 60px;
}

.whyus-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  text-align: left;
  background: #FFFFFF;
  border: 2px solid #E0D6C7;
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.whyus-item:hover {
  border-color: #0A7CFF;
  box-shadow: 0 10px 22px rgba(10, 124, 255, 0.12);
  transform: translateY(-4px);
}

/* --- ICONO --- */
.whyus-icon {
  font-size: 2rem;
  background: #EAF2FF;
  color: #0A7CFF;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* --- TEXTO --- */
.whyus-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #292E62;
  margin-bottom: 8px;
}

.whyus-content p {
  font-size: 1rem;
  color: #2E2A39;
  line-height: 1.6;
}

/* --- CTA --- */
.whyus-cta {
  text-align: center;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  padding: 0 3rem;
  height: 48px;
  cursor: pointer;
  font: inherit;
  font-size: 1.5rem;
  text-decoration: none;
  color: rgb(var(--color-button-text));
  transition: box-shadow var(--duration-short) ease, transform 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
  background-color: rgba(var(--color-button), var(--alpha-button-background));
  border-radius: 8px;
}

.button--primary {
  --color-button: 10, 124, 255;
  --alpha-button-background: 1;
  --color-button-text: 255, 255, 255;
}

.button:hover {
  box-shadow: 0 0 0 0.2rem rgba(var(--color-button), 0.2);
  transform: translateY(-2px);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .whyus-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
  }

  .whyus-icon {
    margin-bottom: 12px;
  }

  .whyus-content h3 {
    font-size: 1.1rem;
  }
}
