/* ================================
   CONTACT PAGE STYLES
   ================================ */

.contato-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  font-family: inherit;
}

.contato-content {
  display: flex;
  justify-content: center;
}

.contato-info {
  width: 100%;
  max-width: 600px;
}

.email-card {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(39, 137, 206, 0.1);
  border: 1px solid rgba(39, 137, 206, 0.15);
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.email-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(39, 137, 206, 0.2);
}

/* Micro-interação para o card */
.email-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #2789ce, #1e6bb8);
  transition: left 0.6s ease;
}

.email-card:hover::before {
  left: 100%;
}

.email-icon {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1.5rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.email-content h2 {
  color: #2c3e50;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 400;
  text-align: center;
}

.email-content p {
  color: #5a6c7d;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: center;
}

.email-link {
  display: block;
  background: linear-gradient(135deg, #2789ce 0%, #1e6bb8 50%, #1559a0 100%);
  color: white;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-align: center;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin: 0 auto;
  max-width: 300px;
  position: relative;
  overflow: hidden;
}

.email-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(39, 137, 206, 0.4);
  text-decoration: none;
  color: white;
  background: linear-gradient(135deg, #1e6bb8 0%, #1559a0 50%, #0f4688 100%);
}

/* Efeito shimmer no botão */
.email-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s;
}

.email-link:hover::before {
  left: 100%;
}

.contato-mensagem {
  background: rgba(39, 137, 206, 0.05);
  border-left: 4px solid #2789ce;
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
  margin-top: 1rem;
  position: relative;
}

.contato-mensagem::before {
  content: "💭";
  position: absolute;
  top: -10px;
  left: -15px;
  background: #2789ce;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  box-shadow: 0 2px 8px rgba(39, 137, 206, 0.3);
}

.contato-mensagem p {
  color: #5a6c7d;
  line-height: 1.7;
  margin: 0;
  font-style: italic;
}

/* Responsividade */
@media (max-width: 768px) {
  .contato-container {
    padding: 1rem;
  }

  .contato-header h1 {
    font-size: 2rem;
  }

  .email-card {
    padding: 2rem 1.5rem;
  }

  .email-link {
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

/* Animação sutil no carregamento */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.email-card {
  animation: fadeInUp 0.6s ease-out;
}

.contato-mensagem {
  animation: fadeInUp 0.8s ease-out;
}

/* Animações para notificações */
@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutRight {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(100%); opacity: 0; }
}