/** Shopify CDN: Minification failed

Line 17:10 Unexpected "{"
Line 17:19 Expected ":"
Line 18:14 Expected identifier but found whitespace
Line 18:16 Unexpected "{"
Line 18:25 Expected ":"
Line 18:76 Expected ":"
Line 19:17 Expected identifier but found whitespace
Line 19:19 Unexpected "{"
Line 19:28 Expected ":"
Line 19:82 Expected ":"
... and 10 more hidden warnings

**/
/* 🔹 Espaçamento dinâmico do tema */
.section-{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
  padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
}
@media screen and (min-width: 750px) {
  .section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }
}

#WhatsappButton svg{
  display: none;
}

/* 🔹 Botão flutuante */
.whatsapp-floating-button {
  position: fixed;
      bottom: 117px;
    right: 35px;
    width: 39px;
    height: 35px;
  background-color: transparent;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
  transition: all 0.3s ease;
}

/* 🔹 Ícone dentro do botão */
.whatsapp-floating-button svg {
  width: 34px;
    height: 34px;
    border-radius: 50%;
}

/* 🔹 Overlay escuro */
.whatsapp-form-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  backdrop-filter: blur(2px);
}

/* 🔹 Modal do formulário - ESTILO BELA NOIVA */
.whatsapp-form-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 500px;
  background: #f8f8f8;
  border-radius: 0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  padding: 0;
  z-index: 1000;
  animation: fadeIn 0.3s ease;
}



@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, -45%); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}

/* 🔹 Header com logo */
.whatsapp-form__header {
  background: #fff;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    max-width: 792px;
    padding: 4rem 7rem;
    width: 90vw;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%
}

.whatsapp-form__logo {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -2px;
  margin-bottom: 5px;
  color: #000;
  font-family: 'Playfair Display', serif;
  text-align: left;
}

.whatsapp-form__subtitle {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #666;
  font-weight: 400;
}

.whatsapp-form__subtext {
  font-size: 0.7rem;
  color: #999;
  margin-top: 5px;
  font-style: italic;
}

/* 🔹 Corpo do formulário */
.whatsapp-form__body {
  padding: 40px 30px;
}

/* 🔹 Título e subtítulo */
.whatsapp-form__title {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 8px;
  text-align: center;
  color: #333;
  letter-spacing: 0.5px;
}

.whatsapp-form__description {
  font-size: 1.85rem;
  color: #666;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.5;
}

/* 🔹 Campos do formulário */
.whatsapp-form__field {
  margin-bottom: 20px;
  position: relative;
}

.whatsapp-form__input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  font-size: 14px;
  background: #fff;
  transition: border-color 0.3s;
  font-family: inherit;
}

.whatsapp-form__input:focus {
  outline: none;
  border-color: #666;
}

.whatsapp-form__input::placeholder {
  color: #999;
  font-weight: 300;
}

/* 🔹 Campo de telefone com flag */
.whatsapp-form__phone-wrapper {
  display: flex;
  gap: 10px;
}

.whatsapp-form__country-select {
  width: 80px;
  padding: 14px 10px;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  font-size: 14px;
  background: #fff;
  cursor: pointer;
}

.whatsapp-form__phone-input {
  flex: 1;
}

/* 🔹 Botão enviar */
.whatsapp-form__submit {
  width: 100%;
  background-color: #000;
  color: #fff;
  border: none;
  padding: 16px 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  margin-top: 10px;
}

.whatsapp-form__submit:hover {
  background-color: #333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* 🔹 Botão fechar */
.whatsapp-form__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #666;
  line-height: 1;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}

.whatsapp-form__close:hover {
  color: #000;
}


@media screen and (max-width: 750px) {
  .whatsapp-form-modal {
    width: 95%;
    max-width: 400px;
  }

  .whatsapp-floating-button{
        right: 15px;
    bottom: 108px;
  }

  .whatsapp-form__header{
    padding: 20px ;
    height: auto;
  }

  .whatsapp-form__body{
    padding: 20px 0;
  }

  .whatsapp-form__description{
    font-size: 12px;
        text-align: center;
  }

  .whatsapp-form__close{
    font-size: 40px;
  }
}