/* Footer styles */
.footer-bg {
    background: #FFD34B;
    width: 100%;
    padding: 64px 0 64px 0;
    box-sizing: border-box;
}
.footer-container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-width: 1600px;
    margin: 0 auto;
    gap: 48px;
    align-items: flex-start;
    margin-bottom: 24px;
    padding: 0 64px;
    box-sizing: border-box;
    font-weight: 600;
}

.footer-contents {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-right: 4rem;
}
.footer-news {
    margin-top: 32px;
    margin-bottom: 24px;
    font-size: 1.15rem;
}
.footer-form {
    display: flex;
    gap: 12px;
}
.footer-input {
    flex: 1;
    padding: 12px 16px;
    padding-right: 15px;
    font-size: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px 0 0 8px;
    background: transparent;
}
.footer-note {
    margin-top: 12px;
    font-size: 0.95rem;
}
.footer-copyright {
    margin-top: 0;
    font-size: 1rem;
    flex: 1;
}
.footer-col-title {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 16px;
}
.footer-col {
    margin-top: 1rem;
    flex: 1;
    min-width: 180px;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-social-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-social-icon {
    width: 30px;
    height: auto;
    background: #FFD34B;
    display: inline-block;
}
.footer-bottom-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px 0 32px;
}
.footer-bottom {
    width: 80%;
    margin: 32px auto 0 auto;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    padding-top: 0;
}
.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0 0 0;
    font-size: 1rem;
}
.footer-bottom-links {
    display: flex;
    gap: 32px;
    flex: 1;
    justify-content: flex-end;
    align-items: center;
}
.footer-bottom a {
    color: #222;
    text-decoration: underline;
}
#whatsapp-container {
    position: fixed;
    z-index: 104;
    right: 32px;
    bottom: 32px;
    height: 72px;
    width: 72px;
    transition: 0.25s ease transform;
}
#whatsapp-button {
    border-radius: 100%;
    width: 100%;
    height: 100%;
    padding: 12px;
    box-shadow: 0px 4px 0px rgba(0, 0, 0, 0.15);
    background-color: whitesmoke;
}
#bubble {
    position: absolute;
    background: whitesmoke;
    color: #000000;
    font-family: Arial;
    font-size: 1rem;
    line-height: 48px;
    text-align: center;
    width: 128px;
    height: 48px;
    border-radius: 10px;
    bottom: 64px;     
    right: 64px;
    margin-bottom: 8px;
    padding: 0px;
    opacity: 0%;
    transition: 0.25s ease opacity;
    display: none;
}
#bubble:after {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    z-index: 1;
    border-style: solid;
    border-width: 0 20px 20px 0;
    border-color: transparent whitesmoke transparent transparent;
    bottom: -10px;    
    right: 20px; 
    margin-left: -10px;
}
@media (max-width: 1200px) {
  .footer-container,
  .footer-bottom-wrapper {
    padding: 0 32px;
    gap: 24px;
  }
  .footer-bottom {
    width: 95%;
  }
}
@media (max-width: 700px) {
  .footer-container {
    gap: 16px;
    padding: 0 16px;
  }
  .footer-contents {
    flex-direction: column;
  }
  .footer-bottom-wrapper {
    padding: 0 16px;
  }
  .footer-bottom-row {
    flex-direction: column;
    gap: 12px;
    padding: 32px 0 0 0;
  }
  .footer-bottom-links {
    justify-content: flex-start;
    gap: 16px;
  }
}
