/** Shopify CDN: Minification failed

Line 57:10 Unexpected "{"
Line 57:19 Expected ":"
Line 58:10 Unexpected "{"
Line 58:19 Expected ":"
Line 59:10 Unexpected "{"
Line 59:19 Expected ":"
Line 67:10 Unexpected "{"
Line 67:19 Expected ":"
Line 72:10 Unexpected "{"
Line 72:19 Expected ":"
... and 2 more hidden warnings

**/
.contact img {
  max-width: 100%;
}

.contact .form__message {
  align-items: flex-start;
}

.contact .icon-success {
  margin-top: 0.2rem;
}

.contact .field {
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 750px) {
  .contact .field {
    margin-bottom: 2rem;
  }
}

.contact__button {
  margin-top: 3rem;
}

@media screen and (min-width: 750px) {
  .contact__button {
    margin-top: 4rem;
  }
}

@media screen and (min-width: 750px) {
  .contact__fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 2rem;
  }
}

/* Arredonda os campos e o botão do Contact Form */
.section-{{ section.id }} .field__input,
.section-{{ section.id }} textarea.field__input,
.section-{{ section.id }} .contact__button .button {
    border-radius: 12px; /* Ajusta para mais ou menos arredondado */
    /* Opcional: adicionar uma leve borda */
    border: 1px solid #ccc;
    padding: 10px;
}

/* Adiciona um pouco de espaçamento interno para textarea */
.section-{{ section.id }} textarea.field__input {
    padding: 12px;
}

/* Opcional: suavizar a transição ao focar nos campos */
.section-{{ section.id }} .field__input:focus,
.section-{{ section.id }} .contact__button .button:hover {
    outline: none;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    transition: box-shadow 0.2s ease;
}
