/* ============================================================
   Página pública /contato.php
   ============================================================ */
.ct-main{
  max-width: 1120px; margin: 0 auto;
  padding: 56px 24px 100px;
}
.ct-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}
.ct-form-wrap h2,
.ct-canais h2{
  font-family: 'Inter', sans-serif;
  font-size: 22px; font-weight: 700; color: #0a0a0a;
  margin: 0 0 6px;
}
.ct-sub{
  font-size: 14px; color: #666; margin: 0 0 24px;
}

/* Flash mensagens (ok / erro) */
.ct-flash{
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 16px; border-radius: 10px;
  margin-bottom: 20px;
}
.ct-flash svg{ flex-shrink: 0; margin-top: 2px; }
.ct-flash b{ display: block; font-size: 14px; margin-bottom: 4px; }
.ct-flash p, .ct-flash ul{ margin: 0; font-size: 13px; line-height: 1.5; }
.ct-flash ul{ padding-left: 18px; }
.ct-flash-ok{
  background: #e8f5ea; color: #1e5a24;
  border: 1px solid #b8dcbc;
}
.ct-flash-erro{
  background: #fdecec; color: #8a1e1e;
  border: 1px solid #f0b5b5;
}

/* Form */
.ct-form{ display: grid; gap: 16px; }
.ct-field-row{
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.ct-field{ display: flex; flex-direction: column; gap: 6px; }
.ct-field > span{
  font-size: 12px; font-weight: 600; color: #4b5768;
  text-transform: uppercase; letter-spacing: .04em;
}
.ct-field input,
.ct-field textarea{
  width: 100%; box-sizing: border-box;
  padding: 12px 14px; border: 1px solid #d5dbe4;
  border-radius: 8px; font-family: inherit; font-size: 14px;
  color: #0a0a0a; background: #fff; outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.ct-field input:focus,
.ct-field textarea:focus{
  border-color: #46a648;
  box-shadow: 0 0 0 3px rgba(70,166,72,.12);
}
.ct-field textarea{ resize: vertical; min-height: 140px; line-height: 1.5; }

.ct-form-footer{
  display: flex; flex-wrap: wrap; gap: 16px 22px;
  align-items: center; justify-content: space-between;
  margin-top: 6px;
}
.ct-btn{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 8px;
  font-size: 14px; font-weight: 600; font-family: inherit;
  cursor: pointer; border: none;
  transition: background .15s;
}
.ct-btn-primary{
  background: #46a648; color: #fff;
  box-shadow: 0 4px 12px -4px rgba(70,166,72,.5);
}
.ct-btn-primary:hover{ background: #3d9040; }
.ct-legal{
  font-size: 11px; color: #8b8f97; line-height: 1.5;
  margin: 0; max-width: 400px;
}
.ct-legal a{ color: #46a648; text-decoration: underline; }

/* Aside: canais */
.ct-canais{
  background: #fff; border: 1px solid #e5e7eb;
  border-radius: 12px; padding: 24px;
  position: sticky; top: 82px;
}
.ct-canal{
  display: flex; align-items: center; gap: 14px;
  padding: 14px 12px; border-radius: 8px;
  color: #0a0a0a; text-decoration: none;
  border: 1px solid transparent;
  transition: background .15s, border-color .15s;
  margin-bottom: 8px;
}
.ct-canal:hover{
  background: #f5f7fa; border-color: #e5e7eb;
}
.ct-canal-icon{
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(70,166,72,.1); color: #46a648;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ct-canal b{ display: block; font-size: 14px; margin-bottom: 2px; }
.ct-canal span{ font-size: 12px; color: #666; }

.ct-canal-note{
  margin-top: 18px; padding: 14px 16px;
  background: #f5f7fa; border-radius: 8px;
  font-size: 12px; color: #4b5768; line-height: 1.6;
}
.ct-canal-note b{ color: #0a0a0a; display: block; margin-bottom: 4px; }

@media (max-width: 900px){
  .ct-grid{ grid-template-columns: 1fr; gap: 32px; }
  .ct-canais{ position: static; }
}
@media (max-width: 640px){
  .ct-field-row{ grid-template-columns: 1fr; }
  .ct-main{ padding: 40px 16px 80px; }
  .ct-form-footer{ flex-direction: column; align-items: stretch; }
  .ct-btn{ justify-content: center; }
}
