/** Shopify CDN: Minification failed

Line 38:0 Unexpected "{"
Line 38:1 Expected identifier but found "%"
Line 38:54 Expected identifier but found "%"

**/


/* CSS from section stylesheet tags */
.byob-text-center {
  text-align: center;
}
.byob-text-left {
  text-align: left;
}
.byob-text-right {
  text-align: right;
}
/* Whole */
.medium-up--one-whole {
    width: 100%;
}
/* Halves */
.medium-up--one-half {
	width: 50%;
}
/* Thirds */
.medium-up--one-third {
	width: 33.33333%;
}
.medium-up--two-thirds {
    width: 66.66667%;
}
.byob-content-center {
  margin: 0 auto;
}
{%- comment %}Set top banner to full width for mobile{% endcomment -%}
@media screen and (max-width: 600px) {
.medium-up--one-half {
	width: 100%;
}
/* Thirds */
.medium-up--one-third {
	width: 100%;
}
.medium-up--two-thirds {
    width: 100%;
}
.byob-bundle-description {
    line-height: normal;
}
}
/* Estilos principais */
.prova-resistencia__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .prova-resistencia__container {
    flex-direction: column-reverse;
    gap: 24px;
    align-items: stretch;
  }
}
.prova-resistencia__images {
  display: flex;
  gap: var(--image-gap, 16px);
  width: 100%;
  align-items: flex-start;
}
.prova-resistencia__images > div:nth-child(2) {
  margin-top: -20px;
}
.prova-resistencia__images img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--image-radius, 8px);
}
.prova-resistencia__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.prova-resistencia__text h2 {
  font-size: var(--font-h2-desktop, 32px);
  font-weight: 300;
  margin-bottom: 0;
  line-height: 1.1;
}
.prova-resistencia__text h3 {
  font-size: var(--font-h3-desktop, 32px);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.1;
}
.prova-resistencia__text p {
  font-size: var(--font-p-desktop, 15px);
  color: #555;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .prova-resistencia__text h2 {
    font-size: var(--font-h2-mobile, 24px);
  }
  .prova-resistencia__text h3 {
    font-size: var(--font-h3-mobile, 24px);
  }
  .prova-resistencia__text p {
    font-size: var(--font-p-mobile, 14px);
  }
}

/* Ícones */
.prova-resistencia__icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 20px;
  margin-top: 32px;
  justify-items: center;
}
.icon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 140px;
}
.icon-box img {
  width: var(--icon-image-size, 32px);
  height: var(--icon-image-size, 32px);
  margin-bottom: 8px;
}
.icon-box p {
  font-size: var(--icon-font-size, 14px);
  color: #111;
  line-height: 1.4;
}

/* Botão */
.prova-resistencia__button-container {
  margin-top: 24px;
  text-align: center;
}
.prova-resistencia__button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.prova-resistencia__button:hover {
  background-color: #333;
}