body {
  background-color: #fff;
}

.header {
  background-color: #FE008C;
  background-image: url("../img/banner.png");
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 40px 0;
}

@media screen and (max-width: 576px) {
  .header {
    background-position: -60%;
  }
}

.header__logo {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__logo img {
  max-width: 265px;
}

@media screen and (max-width: 576px) {
  .header__logo img {
    max-width: 200px;
  }
}

h1 {
  color: #FE008C;
  font-size: 34px;
  line-height: 38px;
}

.container.thin {
  max-width: 720px;
  margin: 60px auto;
}

.footer {
  background-color: #322D69;
  padding: 40px 0;
  width: 100%;
  position: relative;
  text-align: center;
}
.footer__links a {
  color: #fff;
  display: inline-block;
  text-decoration: none;
  margin: 0 7px;
  transition: color 300ms ease;
  font-family: "Arial", sans-serif;
  font-size: 12px;
}
.footer__links a:hover {
  color: #FE008C;
}
.footer__copyright {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.footer__copyright p {
  color: #fff;
  font-size: 12px;
}
.footer hr {
  margin-top: 24px;
  margin-bottom: 24px;
  border: 0;
  border-top: 0.5px solid rgba(255, 255, 255, 0.1);
}

.content {
  margin-top: 120px;
  margin-bottom: 120px;
}
@media screen and (max-width: 576px) {
  .content {
    margin-top: 72px;
    margin-bottom: 72px;
  }
}
.content__info {
  margin-bottom: 64px;
}
@media screen and (max-width: 576px) {
  .content__info {
    margin-bottom: 48px;
  }
}

/* Newsletter Form */
.newsletter_form-input {
  border: 1px solid #CED4DA;
  background-color: transparent;
  color: #000;
  padding: 10px 20px;
  border-radius: 24px;
  transition: all 0.3s ease;
  width: 100%;
  margin-bottom: 40px;
  line-height: 40px;
  font-family: 'Work Sans', sans-serif;
}
.newsletter_form-input:focus {
  border: 1px solid #FE008C;
  outline: none;
}

.newsletter_form-submit {
  color: #fff;
  background-color: #FE008C;
  border: 1px solid #FE008C;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.newsletter_form-privacy-policy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}

label,
.al-general-desc {
  font-size: 1.125rem;
  color: #808080;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
}

.newsletter_form-privacy-policy-label {
  color: #808080;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  font-family: 'Work Sans', sans-serif;
}

.newsletter_form-privacy-policy-label a {
  color: #FE008C;
  text-decoration: none;
  transition: all 0.3s ease;
}

.newsletter_form-privacy-policy-label a:hover {
  color: #FE008C;
  text-decoration: underline;
}

.text-red-300 {
  color: #f91a12;
}

.text-red-500 {
  color: #f91a12;
}
/* ========================================
   Newsletter Messages / Alerts
   ======================================== */

   .newsletter-message {
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 8px;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .newsletter-message--success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
  }
  
  .newsletter-message--error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
  }
  
  .newsletter-message--warning {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
  }
  
  .newsletter-message--info {
    background-color: #d1ecf1;
    border: 1px solid #bee5eb;
    color: #0c5460;
  }
  
  .newsletter-message::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  .newsletter-message--success::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23155724'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  }
  
  .newsletter-message--error::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23721c24'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E");
  }
  
  .newsletter-message--warning::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23856404'%3E%3Cpath d='M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z'/%3E%3C/svg%3E");
  }
  
  .newsletter-message--info::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230c5460'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z'/%3E%3C/svg%3E");
  }
  
  /* Versão compacta */
  .newsletter-message--compact {
    padding: 10px 15px;
    font-size: 13px;
  }
  
  /* Versão com botão de fechar */
  .newsletter-message--dismissible {
    position: relative;
    padding-right: 45px;
  }
  
  .newsletter-message__close {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    padding: 5px;
    opacity: 0.6;
    transition: opacity 0.2s;
  }
  
  .newsletter-message__close:hover {
    opacity: 1;
  }
  
  /* Animação de entrada */
  @keyframes slideInDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
.newsletter-message--animated {
  animation: slideInDown 0.3s ease-out;
}

.al-btn-filled__icon svg {
  margin-left: 20px;
 
}

.al-btn-filled__icon svg path {
  fill: #fff;
}

.text-sm {
  font-size: 10px;
}