/* ============================================================
   CONTATO - CSS Exclusivo
   Padrao identico ao clientela.css + campos condicionais
   ============================================================ */

/* ===== SECAO CONTATO ===== */
.about-contato {
  background: linear-gradient(180deg, #fff 0%, #f8f9fa 50%, #fff 100%);
  padding: 60px 0 80px;
  position: relative;
}

/* ===== TITULO PADRAO OECA ===== */
.titulo-oeca {
  text-align: center;
  margin-bottom: 50px;
}

.titulo-oeca h2 {
  font-family: 'Righteous', cursive;
  font-size: 3.5rem;
  color: #FF9C2C;
  text-shadow: 2px 2px 6px rgba(255,156,44,0.25);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-transform: uppercase;
}

.titulo-oeca h2 i {
  font-size: 2.4rem;
  color: #FF9C2C;
}

.titulo-oeca .linha {
  width: 180px;
  height: 4px;
  background: linear-gradient(90deg, #FFDC00, #FF9C2C);
  border-radius: 2px;
  margin: 0 auto 18px;
}

.titulo-oeca p {
  font-size: 1.5rem;
  color: #777;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== CARDS DE DESTINO ===== */
.destino-cards {
  margin-bottom: 0;
}

.destino-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 15px;
  background: #fff;
  border: 2px solid #eee;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
  min-height: 120px;
}

.destino-card:hover {
  border-color: #FF9C2C;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255,156,44,0.15);
}

.destino-card.active {
  border-color: #FF9C2C;
  background: linear-gradient(135deg, #fff8f0, #fff);
  box-shadow: 0 8px 25px rgba(255,156,44,0.2);
}

.destino-card i {
  font-size: 2rem;
  color: #FF9C2C;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.destino-card:hover i,
.destino-card.active i {
  transform: scale(1.1);
}

.destino-card .label {
  font-family: 'Righteous', cursive;
  font-size: 1rem;
  color: #333;
  font-weight: 400;
  line-height: 1.3;
}

.destino-card .desc {
  font-size: 0.75rem;
  color: #999;
  margin-top: 4px;
  line-height: 1.3;
}

/* ===== CARDS ===== */
.ctt-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.ctt-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.ctt-card-title {
  font-family: 'Righteous', cursive;
  font-size: 1.5rem;
  font-weight: 400;
  color: #ff6600;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 3px solid #ff6600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ctt-card-title i {
  font-size: 1.3rem;
}

/* ===== FORMULARIO ===== */
.ctt-form .form-label {
  font-weight: 600;
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.ctt-form .form-control,
.ctt-form .form-select {
  padding: 12px 16px;
  border: 2px solid #eee;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fff;
}

.ctt-form .form-control:focus,
.ctt-form .form-select:focus {
  border-color: #ff6600;
  box-shadow: 0 0 0 4px rgba(255,102,0,0.1);
}

.ctt-form .form-control.is-invalid,
.ctt-form .form-select.is-invalid {
  border-color: #dc3545;
  background-color: #fff5f5;
}

.ctt-form textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

/* Switch anonimo */
.form-check-input:checked {
  background-color: #ff6600;
  border-color: #ff6600;
}

.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(255,102,0,0.25);
}

/* Campos especificos */
.campos-especificos {
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Botao enviar */
.btn-ctt-enviar {
  background: linear-gradient(135deg, #ff6600, #ff8533);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 14px 36px;
  font-size: 1.1rem;
  font-weight: 700;
  width: 100%;
  transition: all 0.3s ease;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(255,102,0,0.3);
  cursor: pointer;
}

.btn-ctt-enviar:hover {
  background: linear-gradient(135deg, #e55a00, #ff6600);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255,102,0,0.4);
}

.btn-ctt-enviar i {
  font-size: 1.2rem;
}

/* ===== INFO CARDS ===== */
.ctt-info-card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: all 0.3s ease;
  border-left: 4px solid #ff6600;
}

.ctt-info-card:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.ctt-info-card.wa {
  border-left-color: #25d366;
  background: linear-gradient(135deg, #fff, #f0fff4);
}

.ctt-info-ico {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff6600, #ff9c2c);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  box-shadow: 0 3px 10px rgba(255,102,0,0.25);
}

.ctt-info-card.wa .ctt-info-ico {
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 3px 10px rgba(37,211,102,0.25);
}

.ctt-info-card h5 {
  font-family: 'Righteous', cursive;
  font-size: 1.1rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 6px;
  margin-top: 0;
}

.ctt-info-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.ctt-info-card a {
  color: #ff6600;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.ctt-info-card a:hover {
  color: #e55a00;
  text-decoration: underline;
}

/* Botao WhatsApp */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 10px 24px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white !important;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(37,211,102,0.25);
}

.btn-wa:hover {
  background: linear-gradient(135deg, #128c7e, #25d366);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37,211,102,0.35);
  color: white !important;
}

.btn-wa i {
  font-size: 1.1rem;
}

/* ===== ALERTAS ===== */
.ctt-alert {
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ctt-alert-success {
  background: #d4edda;
  color: #155724;
  border-left: 4px solid #28a745;
}

.ctt-alert-error {
  background: #f8d7da;
  color: #721c24;
  border-left: 4px solid #dc3545;
}

/* Contador */
.char-count {
  text-align: right;
  font-size: 0.85rem;
  color: #999;
  margin-top: 5px;
}

/* ===== ANIMACOES ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  opacity: 0;
  animation: fadeInUp 0.7s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }

/* ===== RESPONSIVO ===== */
@media (max-width: 991.98px) {
  .about-contato { padding: 50px 0 60px; }
  .titulo-oeca h2 { font-size: 2.6rem; }
  .titulo-oeca h2 i { font-size: 1.8rem; }
  .titulo-oeca p { font-size: 1.2rem; }

  .destino-card { padding: 15px 10px; min-height: 100px; }
  .destino-card i { font-size: 1.6rem; }
  .destino-card .label { font-size: 0.9rem; }
  .destino-card .desc { font-size: 0.7rem; }

  .ctt-card { padding: 24px; }
  .ctt-card-title { font-size: 1.3rem; }

  .ctt-info-card { padding: 15px; }
  .ctt-info-ico { width: 42px; height: 42px; font-size: 1.1rem; }
}

@media (max-width: 575.98px) {
  .titulo-oeca h2 { font-size: 1.8rem; flex-direction: column; gap: 8px; }
  .titulo-oeca .linha { width: 120px; }

  .destino-card { 
    padding: 12px 8px; 
    min-height: 90px;
    border-radius: 12px;
  }
  .destino-card i { font-size: 1.4rem; margin-bottom: 5px; }
  .destino-card .label { font-size: 0.8rem; }
  .destino-card .desc { display: none; }

  .ctt-card { padding: 20px; border-radius: 16px; }
  .ctt-card-title { font-size: 1.2rem; margin-bottom: 20px; padding-bottom: 10px; }

  .ctt-form .form-control,
  .ctt-form .form-select { padding: 10px 12px; font-size: 0.95rem; }

  .btn-ctt-enviar { padding: 12px 24px; font-size: 1rem; }

  .ctt-info-ico { width: 38px; height: 38px; font-size: 1rem; }
  .ctt-info-card h5 { font-size: 1rem; }
  .ctt-info-card p { font-size: 0.9rem; }
}

/* Reducao de movimento */
@media (prefers-reduced-motion: reduce) {
  .destino-card, .ctt-card, .ctt-info-card, .btn-ctt-enviar, .btn-wa, .animate-in {
    transition: none;
    animation: none;
    opacity: 1;
  }
}

/* ===== BANNER DE MÉTRICAS OECA (padrão historia.css / clientela.css) ===== */
.stats-voluntario {
  background: linear-gradient(135deg, #1a3a5c 0%, #2c5f8f 50%, #1a3a5c 100%);
  border-radius: 20px;
  padding: 40px 30px;
  margin-top: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(26, 58, 92, 0.3);
}

.stats-voluntario::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.stat-box {
  position: relative;
  z-index: 1;
  padding: 10px 5px;
}

.stat-numero {
  font-size: 2.8rem;
  font-weight: 900;
  color: #FFDC00;
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-numero small {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  margin-left: 2px;
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 12px;
}

.stat-barra {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}

.stat-progresso {
  height: 100%;
  background: linear-gradient(90deg, #FFDC00, #FF9C2C);
  border-radius: 3px;
  transition: width 1s ease;
}

.stat-box.atingida .stat-progresso {
  background: linear-gradient(90deg, #2ECC40, #1e8449);
}

.stat-pct {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(46, 204, 64, 0.2);
  color: #2ECC40;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid rgba(46, 204, 64, 0.3);
}

.stat-badge i {
  font-size: 1rem;
}

.stat-ajude {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #FF9C2C, #ffad33);
  color: #fff;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 156, 44, 0.3);
}

.stat-ajude:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 156, 44, 0.4);
  color: #fff;
}

.stat-ajude i {
  font-size: 1rem;
}

.stat-box.fixo .stat-numero {
  font-size: 2.4rem;
  letter-spacing: 2px;
}

.stat-info {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
}

/* Responsivo do banner */
@media (max-width: 991.98px) {
  .stats-voluntario { padding: 30px 20px; margin-top: 40px; }
  .stat-numero { font-size: 2.2rem; }
  .stat-numero small { font-size: 1rem; }
  .stat-label { font-size: 0.85rem; }
}

@media (max-width: 767.98px) {
  .stat-box { padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-box:last-child { border-bottom: none; padding-bottom: 0; }
}

@media (max-width: 575.98px) {
  .stats-voluntario { padding: 25px 15px; border-radius: 16px; margin-top: 30px; }
  .stat-numero { font-size: 1.8rem; }
  .stat-numero small { font-size: 0.85rem; }
  .stat-label { font-size: 0.75rem; letter-spacing: 1px; }
  .stat-barra { height: 5px; }
  .stat-pct { font-size: 0.75rem; }
  .stat-badge { font-size: 0.75rem; padding: 4px 10px; }
  .stat-ajude { font-size: 0.8rem; padding: 6px 14px; }
  .stat-box.fixo .stat-numero { font-size: 1.6rem; }
}