/* ================================ */
/* CONTATO - Página de Contato */
/* ================================ */

/* ================== */
/* HERO SECTION */
/* ================== */
.contact-hero {
  position: relative;
  padding: 10rem 0 6rem;
  color: white;
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 215, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.hero-badge-green {
  background: rgba(34, 197, 94, 0.2);
  border-color: rgba(34, 197, 94, 0.3);
  color: #86efac;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  opacity: 0.9;
  margin-bottom: 3rem;
  font-weight: 300;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.quick-contact {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-whatsapp-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 2rem;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 700;
  box-shadow: 0 20px 25px -5px rgba(34, 197, 94, 0.3);
  transition: all 0.3s ease;
}

.btn-whatsapp-hero:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 30px -5px rgba(34, 197, 94, 0.5);
}

.btn-phone-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.btn-phone-hero:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ================== */
/* CONTACT MAIN SECTION */
/* ================== */
.contact-main {
  padding: 6rem 0;
  background: white;
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #1f2937;
  margin-bottom: 1rem;
}

.contact-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
}

.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.whatsapp-card:hover {
  border: 2px solid #22c55e;
}

.phone-card:hover {
  border: 2px solid #3b82f6;
}

.email-card:hover {
  border: 2px solid #f59e0b;
}

.card-icon {
  width: 100px;
  height: 100px;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 1rem;
}

.whatsapp-card .card-icon {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.phone-card .card-icon {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.email-card .card-icon {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #1f2937;
  margin: 0;
}

.card-description {
  color: #6b7280;
  font-size: 0.875rem;
  margin: 0;
}

.card-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a3a6b;
  margin: 0.5rem 0;
}

.card-cta {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #f3f4f6;
  color: #1f2937;
  border-radius: 50px;
  font-weight: 600;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}

.whatsapp-card:hover .card-cta {
  background: #22c55e;
  color: white;
}

.phone-card:hover .card-cta {
  background: #3b82f6;
  color: white;
}

.email-card:hover .card-cta {
  background: #f59e0b;
  color: white;
}


/* ================== */
/* RESPONSIVE */
/* ================== */

/* Tablet */
@media (max-width: 768px) {
  .contact-hero {
    padding: 6rem 0 4rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .quick-contact {
    flex-direction: column;
  }

  .contact-methods-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .contact-hero {
    padding: 5rem 0 3rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .contact-title {
    font-size: 2rem;
  }

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

  .card-icon {
    width: 80px;
    height: 80px;
  }
}
