/**
 * contato.css — Estilos da página de Contato
 * Complementa style-2.css
 */

/* ════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════ */
.ct-hero {
  padding-top: 140px;
  padding-bottom: 4rem;
  background: linear-gradient(180deg, #080c18 0%, #0d1225 100%);
  border-bottom: 1px solid rgba(0,212,255,.1);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.ct-hero::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,212,255,.07) 0%, transparent 70%);
  pointer-events: none;
}
.ct-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,47,255,.05) 0%, transparent 70%);
  pointer-events: none;
}

.ct-hero-inner { position: relative; z-index: 1; }

.ct-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  font-size: .82rem;
  color: var(--clr-text-muted);
  margin-bottom: 1.5rem;
}
.ct-breadcrumb a { color: var(--clr-text-muted); text-decoration: none; transition: color .2s; }
.ct-breadcrumb a:hover { color: var(--clr-primary); }
.ct-breadcrumb-sep { color: rgba(255,255,255,.2); }
.ct-breadcrumb-current { color: var(--clr-primary); }

.ct-hero-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--clr-primary);
  margin-bottom: .75rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.ct-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--clr-text);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.ct-hero-title span {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ct-hero-sub {
  font-size: 1rem;
  color: var(--clr-text-muted);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.ct-hero-chips {
  display: flex;
  gap: .65rem;
  justify-content: center;
  flex-wrap: wrap;
}
.ct-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .9rem;
  background: rgba(0,212,255,.07);
  border: 1px solid rgba(0,212,255,.2);
  border-radius: 100px;
  font-size: .8rem;
  color: var(--clr-primary);
  font-weight: 600;
}
.ct-hero-chip i { font-size: 11px; }


/* ════════════════════════════════════════════════
   BODY — grid
════════════════════════════════════════════════ */
.ct-body {
  padding: 4rem 0 5rem;
}

.ct-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}


/* ════════════════════════════════════════════════
   FORMULÁRIO
════════════════════════════════════════════════ */
.ct-form-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem 2.25rem;
}

.ct-form-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: .35rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.ct-form-title i { color: var(--clr-primary); font-size: 1.1rem; }

.ct-form-subtitle {
  font-size: .85rem;
  color: var(--clr-text-muted);
  margin-bottom: 1.75rem;
}

.ct-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.ct-field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.ct-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ct-label {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--clr-text-muted);
}
.ct-label .ct-required { color: var(--clr-primary); margin-left: 2px; }

.ct-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.ct-input-wrap i {
  position: absolute;
  left: .95rem;
  color: var(--clr-text-muted);
  font-size: 13px;
  pointer-events: none;
  flex-shrink: 0;
}

.ct-input,
.ct-select,
.ct-textarea {
  width: 100%;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: .92rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.ct-input { padding: .7rem .9rem .7rem 2.5rem; }
.ct-select {
  padding: .7rem 2.5rem .7rem .9rem;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .9rem center;
}
.ct-textarea {
  padding: .7rem .9rem;
  resize: vertical;
  min-height: 120px;
  line-height: 1.55;
}

.ct-input::placeholder,
.ct-textarea::placeholder { color: rgba(255,255,255,.25); }
.ct-select option {
  background: #0d1225;
  color: #e2e8f0;
}
.ct-select option:disabled {
  color: rgba(255,255,255,.35);
}

.ct-input:focus,
.ct-select:focus,
.ct-textarea:focus {
  border-color: rgba(0,212,255,.5);
  box-shadow: 0 0 0 3px rgba(0,212,255,.1);
  background: rgba(255,255,255,.07);
}

.ct-input.error,
.ct-textarea.error { border-color: rgba(255,80,80,.5); }
.ct-error-msg {
  font-size: .75rem;
  color: #ff6b6b;
  display: none;
}
.ct-input.error + .ct-error-msg,
.ct-textarea.error + .ct-error-msg { display: block; }

/* Checkbox - LGPD */
.ct-check-wrap {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  cursor: pointer;
}
.ct-check-wrap input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--clr-primary);
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}
.ct-check-label {
  font-size: .8rem;
  color: var(--clr-text-muted);
  line-height: 1.4;
}
.ct-check-label a { color: var(--clr-primary); text-decoration: none; }
.ct-check-label a:hover { text-decoration: underline; }

/* Submit button */
.ct-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  width: 100%;
  padding: .9rem 1.5rem;
  background: #25d366;
  border: none;
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(37,211,102,.3);
}
.ct-submit:hover { background: #1ebe5d; transform: translateY(-1px); box-shadow: 0 6px 28px rgba(37,211,102,.45); }
.ct-submit:active { transform: translateY(0); }
.ct-submit i { font-size: 1.1rem; }

/* Success state */
.ct-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .75rem;
  padding: 3rem 1rem;
  color: var(--clr-text-muted);
}
.ct-success.show { display: flex; }
.ct-success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(37,211,102,.1);
  border: 1px solid rgba(37,211,102,.3);
  display: flex; align-items: center; justify-content: center;
  color: #25d366;
  font-size: 1.6rem;
  margin-bottom: .5rem;
}
.ct-success h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--clr-text); }


/* ════════════════════════════════════════════════
   SIDEBAR — canais de contato
════════════════════════════════════════════════ */
.ct-sidebar {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  position: sticky;
  top: 90px;
}

.ct-channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.35rem;
  text-decoration: none;
  transition: border-color .2s, transform .15s, box-shadow .2s;
}
.ct-channel:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}

.ct-channel.wa { border-color: rgba(37,211,102,.2); }
.ct-channel.wa:hover { border-color: rgba(37,211,102,.5); }
.ct-channel.phone { border-color: rgba(0,212,255,.15); }
.ct-channel.phone:hover { border-color: rgba(0,212,255,.45); }
.ct-channel.email { border-color: rgba(123,47,255,.15); }
.ct-channel.email:hover { border-color: rgba(123,47,255,.4); }

.ct-channel-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.ct-channel.wa   .ct-channel-icon { background: rgba(37,211,102,.1); color: #25d366; }
.ct-channel.phone .ct-channel-icon { background: rgba(0,212,255,.08); color: var(--clr-primary); }
.ct-channel.email .ct-channel-icon { background: rgba(123,47,255,.08); color: var(--clr-accent); }

.ct-channel-info {}
.ct-channel-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--clr-text-muted);
  margin-bottom: .15rem;
}
.ct-channel-value {
  font-size: .95rem;
  font-weight: 600;
  color: var(--clr-text);
}
.ct-channel-sub {
  font-size: .77rem;
  color: var(--clr-text-muted);
  margin-top: .1rem;
}

/* Horário card */
.ct-hours {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.35rem;
}

.ct-hours-head {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--clr-text-muted);
  margin-bottom: 1rem;
}
.ct-hours-head i { color: var(--clr-primary); font-size: 13px; }

.ct-hours-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.ct-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .86rem;
}
.ct-hours-day { color: var(--clr-text-muted); }
.ct-hours-time {
  font-weight: 600;
  color: var(--clr-text);
}
.ct-hours-time.closed { color: rgba(255,255,255,.3); font-weight: 400; }

.ct-hours-divider {
  height: 1px;
  background: var(--clr-border);
  margin: .5rem 0;
}

.ct-status-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  font-weight: 600;
  padding: .3rem .8rem;
  border-radius: 100px;
  margin-top: .85rem;
}
.ct-status-badge.open {
  background: rgba(0,255,136,.08);
  border: 1px solid rgba(0,255,136,.25);
  color: #00ff88;
}
.ct-status-badge.closed-now {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--clr-text-muted);
}
.ct-status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}


/* ════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════ */
.ct-faq-section {
  padding: 4.5rem 0 5rem;
  border-top: 1px solid rgba(255,255,255,.05);
}

.ct-faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.ct-section-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--clr-primary);
  margin-bottom: .6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}

.ct-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--clr-text);
  line-height: 1.2;
}
.ct-section-title span {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ct-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  max-width: 900px;
  margin: 0 auto;
}

.ct-faq-item {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .2s;
}
.ct-faq-item:hover { border-color: rgba(0,212,255,.25); }
.ct-faq-item.open { border-color: rgba(0,212,255,.35); }

.ct-faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.35rem;
  background: transparent;
  border: none;
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color .2s;
}
.ct-faq-item.open .ct-faq-btn { color: var(--clr-primary); }

.ct-faq-chevron {
  color: var(--clr-text-muted);
  font-size: 12px;
  flex-shrink: 0;
  transition: transform .3s ease;
}
.ct-faq-item.open .ct-faq-chevron { transform: rotate(180deg); color: var(--clr-primary); }

.ct-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.ct-faq-item.open .ct-faq-body {
  max-height: 300px;
}

.ct-faq-answer {
  padding: 0 1.35rem 1.25rem;
  font-size: .87rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
  border-top: 1px solid var(--clr-border);
  padding-top: .9rem;
}


/* ════════════════════════════════════════════════
   FLOATING WHATSAPP
════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  animation: wa-pulse 2.5s ease-in-out infinite;
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1); }

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,.7), 0 0 0 8px rgba(37,211,102,.12); }
}


/* ════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .ct-grid {
    grid-template-columns: 1fr;
  }
  .ct-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .ct-hours { grid-column: 1 / -1; }
  .ct-faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .ct-sidebar { grid-template-columns: 1fr; }
  .ct-row { grid-template-columns: 1fr; }
  .ct-form-card { padding: 1.5rem 1.25rem; }
  .ct-faq-grid { grid-template-columns: 1fr; }
  .ct-hero-title { font-size: 1.85rem; }
}
