/* ===== FOOTER PRINCIPAL ===== */
.site-footer {
  background: #1b1e21;
  color: #e0e0e0;
  padding-top: 40px;
  font-size: 14px;
}



.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-left {
  flex: 1 1 55%;
  min-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.footer-logo img {
  height: 50px;
  border-radius: 6px;
}

.footer-left > p {
  max-width: 460px;
  line-height: 1.7;
  color: #ccc;
  margin: 0;
}

.footer-sub {
  margin-top: 24px;
  width: 100%;
  max-width: 460px;
}

.footer-sub p {
  margin: 6px 0;
  color: #ccc;
}

.footer-payments {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.footer-payments img {
  height: 28px;
  opacity: 0.95;
}

.footer-right {
  flex: 0 0 260px;
  min-width: 220px;
  text-align: right;
}

.footer-right h3 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 12px;
}

.footer-right ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-right ul li {
  margin-bottom: 10px;
}

.footer-right ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-right ul li a:hover {
  color: #00b894;
}

.footer-bottom {
  border-top: 1px solid #2c2f33;
  text-align: center;
  margin-top: 45px;
  padding: 20px 0;
  color: #999;
  font-size: 13px;
}


/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
 background: #1b1e21;
  padding: 40px 20px 20px;
}

.newsletter-container {
  max-width: 1200px;
  margin: 0 auto;
}
/*
.newsletter-card {
  max-width: 820px;
  margin: 0 auto -50px;  /*para descer ou subir o card*//*
  background: linear-gradient(135deg, #223f6b 0%, #1d3457 100%);
  color: #fff;
  border-radius: 18px;
  padding: 18px 26px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
  position: relative;
  z-index: 3;
  box-shadow: 0 14px 35px rgba(0,0,0,0.18);
  
  
}
*/

.newsletter-card {
  max-width: 820px;
  margin: 0 auto;
  padding: 18px 26px;
  border-radius: 14px;

  background:
    repeating-radial-gradient(
      circle at center,
      rgba(255,255,255,0.04) 0px,
      rgba(255,255,255,0.04) 1px,
      transparent 1px,
      transparent 4px
    ),
    linear-gradient(135deg, #223f6b 0%, #1d3457 100%);

  color: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  position: relative;

}

.newsletter-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.06),
    transparent 40%
  );
  pointer-events: none;
}



.newsletter-content {
  text-align: center;
}

.newsletter-content h2 {
  margin: 0 0 4px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
}

.newsletter-content p {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.84);
}

.newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.newsletter-form input[type="email"] {
  width: 100%;
  max-width: 370px;
  height: 40px;
  padding: 0 14px;
  border: none;
  border-radius: 999px;
  outline: none;
  background: rgba(255, 255, 255, 0.96);
  color: #1b1e21;
  font-size: 13px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.newsletter-form input[type="email"]::placeholder {
  color: #7d8590;
}

.newsletter-form input[type="email"]:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}

.newsletter-form button {
  height: 40px;
  padding: 0 18px;
  border: none;
  border-radius: 999px;
  background: #fff;
  color: #223f6b;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: #00b894;
  color: #fff;
  transform: translateY(-1px);
}



.newsletter-form button:active {
  transform: translateY(0);
}


/* ===== MC4WP FIX ===== */
.newsletter-section .mc4wp-form {
  max-width: 100%;
}

.newsletter-section .mc4wp-form-fields {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.newsletter-section .mc4wp-form-fields p {
  margin: 0;
}

.newsletter-section .mc4wp-form-fields label {
  display: none !important;
}

.newsletter-section .mc4wp-form-fields input[type="email"] {
  width: 100%;
  max-width: 370px;
  height: 40px;
  padding: 0 14px;
  border: none;
  border-radius: 999px;
  outline: none;
  background: rgba(255, 255, 255, 0.96);
  color: #1b1e21;
  font-size: 13px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.newsletter-section .mc4wp-form-fields input[type="email"]::placeholder {
  color: #7d8590;
}

.newsletter-section .mc4wp-form-fields input[type="email"]:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}

.newsletter-section .mc4wp-form-fields button,
.newsletter-section .mc4wp-form-fields input[type="submit"] {
  height: 40px;
  padding: 0 18px;
  border: none;
  border-radius: 999px;
  background: #fff;
  color: #223f6b;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.newsletter-section .mc4wp-form-fields button:hover,
.newsletter-section .mc4wp-form-fields input[type="submit"]:hover {
  background: #00b894;
  color: #fff;
  transform: translateY(-1px);
}

.newsletter-section .mc4wp-response {
  margin-top: 10px;
  font-size: 13px;
  color: #fff;
  text-align: center;
}





/* RESPONSIVO */
@media (max-width: 768px) {
  .newsletter-section {
    padding: 14px 16px 0;
  }

  .newsletter-card {
    padding: 16px 16px;
    border-radius: 14px;
  }

  .newsletter-content h2 {
    font-size: 18px;
  }

  .newsletter-content p {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 8px;
  }

  .newsletter-form input[type="email"],
  .newsletter-form button {
    width: 100%;
    max-width: 100%;
  }
}





@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-left,
  .footer-right {
    width: 100%;
    text-align: center;
  }

  .footer-logo,
  .footer-payments {
    justify-content: center;
  }

  .footer-left > p,
  .footer-sub {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .newsletter-section .mc4wp-form-fields {
    flex-direction: column;
    gap: 8px;
  }

  .newsletter-section .mc4wp-form-fields input[type="email"],
  .newsletter-section .mc4wp-form-fields button,
  .newsletter-section .mc4wp-form-fields input[type="submit"] {
    width: 100%;
    max-width: 100%;
  }
}








/* <= 320px  texto descritivo */
@media (max-width: 320px) {

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 0 14px 10px;
  }

  .footer-left,
  .footer-right {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    flex: 1 1 100%;
  }

  .footer-left > p,
  .footer-sub,
  .footer-sub p {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
  }

  .footer-left > p {
    font-size: 13px;
    line-height: 1.7;
    margin: 0 auto;
  }

  .footer-logo {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-payments {
    justify-content: center;
  }

  .footer-right {
    text-align: center;
  }
}

/*---*/

/* =========================
   NEWSLETTER MOBILE FINAL
========================= */

/* 390px até 321px */
@media (max-width: 390px) and (min-width: 321px) {

  .newsletter-card {
    padding: 12px 14px;
  }

  .newsletter-content p {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .newsletter-section .mc4wp-form-fields {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  .newsletter-section .mc4wp-form-fields input[type="email"] {
    width: 250px;
    max-width: 250px;
    height: 36px;
    padding: 0 12px;
    font-size: 12px;
    box-sizing: border-box;
  }

  .newsletter-section .mc4wp-form-fields button,
  .newsletter-section .mc4wp-form-fields input[type="submit"] {
    width: 150px;
    max-width: 150px;
    height: 36px;
    padding: 0 12px;
    font-size: 12px;
    box-sizing: border-box;
    display: block;
    margin: 0 auto;
  }
}

/* 320px e abaixo */
@media (max-width: 320px) {

  .newsletter-card {
    padding: 10px 12px;
  }

  .newsletter-content p {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .newsletter-section .mc4wp-form-fields {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
  }

  .newsletter-section .mc4wp-form-fields input[type="email"] {
    width: 210px;
    max-width: 210px;
    height: 34px;
    padding: 0 10px;
    font-size: 11px;
    box-sizing: border-box;
  }

  .newsletter-section .mc4wp-form-fields button,
  .newsletter-section .mc4wp-form-fields input[type="submit"] {
    width: 130px;
    max-width: 130px;
    height: 34px;
    padding: 0 10px;
    font-size: 11px;
    box-sizing: border-box;
    display: block;
    margin: 0 auto;
  }
}

/* ===== NEWSLETTER MOBILE MAIS COMPACTA ===== */
@media (max-width: 768px) {
  .newsletter-section {
    padding: 10px 12px 0;
  }

  .newsletter-container {
    max-width: 100%;
  }

  .newsletter-card {
    max-width: 360px;
    margin: 0 auto;
    padding: 10px 12px 2px;
    border-radius: 12px;
  }

  .newsletter-content p {
    font-size: 11px;
    line-height: 1.35;
    margin: 0 0 4px;
  }

  .newsletter-section .mc4wp-form-fields {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: 100%;
    
  }

  .newsletter-section .mc4wp-form-fields input[type="email"] {
    width: 100%;
    max-width: 270px;
    height: 38px;
    padding: 0 12px;
    font-size: 10px;
    box-sizing: border-box;
  }

  .newsletter-section .mc4wp-form-fields button,
  .newsletter-section .mc4wp-form-fields input[type="submit"] {
    width: auto;
    min-width: 120px;
    max-width: 140px;
    height: 29px;
    padding: 0 8px;
    font-size: 12px;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }
}