/* Ajustes visuais extras para o IcamiabasLab */

/* Importação de fontes do Google Fonts se quiser */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

body {
  font-family: 'Inter', sans-serif;
}

input, textarea, select, button {
  outline: none;
}

input:focus, textarea:focus, select:focus {
  box-shadow: 0 0 0 2px #386b14;
}

button:hover {
  opacity: 0.9;
  transition: opacity 0.2s;
}

/* Ajustes de responsividade e layout adicionais se quiser */
@media (max-width: 640px) {
  header nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
  }
}

.contact-row{
  display:flex;
  align-items:center;
  gap:8px;
  width:100%;
}

.contact-link{
  flex:1;
  min-width:0;     
  display:block;
  opacity:0.7;
  font-size:14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copy-btn{
  background:transparent;
  border:none;
  color:rgba(255,255,255,.6);
  cursor:pointer;
  padding:4px;
  font-size:16px;
  transition:all .2s ease;
}

.copy-btn:hover{
  color: #b892ff; 
  transform:scale(1.1);
  opacity: 1;
}

.copy-btn:active{
  transform:scale(0.95);
}

/* FOOTER */
.footer-icamiabas {
  overflow-x: hidden;
}

.footer-wrap {
  align-items: flex-start;
}

.footer-form-area {
  width: 100%;
}

#footer-info-form {
  align-items: stretch;
  gap: 0;
}

#footer-info-msg {
  min-height: 3.2rem;
  width: 100%;
  max-width: 420px;
  margin: 12px auto 0;
  line-height: 1.5;
  word-break: break-word;
}

.footer-social {
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-icamiabas {
    padding: 2rem 1.25rem;
  }

  .footer-wrap {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-brand,
  .footer-links,
  .footer-form-area {
    width: 100% !important;
    max-width: 100%;
  }

  .footer-links-grid {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1rem;
  }

  .footer-col {
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-bottom: 1rem;
  }

  .footer-col h5 {
    margin-bottom: 0.75rem;
  }

  .footer-col ul {
    margin-top: 0.5rem !important;
  }

  .footer-col li a {
    display: inline-block;
    line-height: 1.5;
    word-break: break-word;
  }

  #footer-info-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100% !important;
    max-width: 420px;
    margin: 0 auto;
  }

  #footer-info-form input,
  #footer-info-form button {
    width: 100%;
    border-radius: 12px !important;
  }

  #footer-info-form button {
    min-height: 56px;
  }

  #footer-info-msg {
    font-size: 1rem;
    padding: 0 0.5rem;
    text-align: center;
  }

  .footer-social {
    justify-content: space-evenly;
    margin-top: 1.5rem;
  }
}
