/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 107:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
.section-three-columns {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  min-height: 600px;
  display: block;
}

.section-three-columns::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0,0,0,0.4);
  z-index: 0;
}

.section-three-columns .container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 40px;
  box-sizing: border-box;
  height: 100%; /* ← CLAVE para que herede 600px */
  position: relative;
  z-index: 1;
}

.section-three-columns .column {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
  box-sizing: border-box;
}

.section-three-columns .left-column {
  justify-content: flex-end;
  align-items: center;
  text-align: center;
}

.section-three-columns .center-column {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.section-three-columns .right-column {
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}

.section-three-columns img {
 width: 110px;
  height: 110px;
  margin-bottom: 15px;
  margin-top: 15px;
}

.section-three-columns h3 {
  font-size: 32px;
  margin: 10px 0 5px;
  color: white;
}

.section-three-columns p {
  font-size: 20px;
  line-height: 1.6;
  max-width: 110%;
  color: white;
  line-height: 1.2;
  margin: 0 auto;
}

.section-three-columns a.button {
  background-color: black;
  color: white;
  padding: 5px 30px;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  font-size: 32px;
}

.section-three-columns a.button:hover {
  background-color: #333;
}


</style>