.whatscontact-container {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.whatscontact-title {
  font-size: 2.2rem;
  color: #111111;
  margin: 0 0 50px 0;
  font-weight: 700;
  text-align: center;
}

.whatscontact-content {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  justify-content: center;
  flex-wrap: wrap;
}

.whatscontact-card {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
  min-width: 350px;
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 0.8s ease;
  transition: all 0.3s ease;
}

.whatscontact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.whatscontact-icon {
  width: 100px;
  height: 100px;
  min-width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.whatscontact-icon.cotizaciones {
  background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
}

.whatscontact-icon.llamadas {
  background: linear-gradient(135deg, #ff6b35 0%, #cc3300 100%);
}

.whatscontact-icon img {
  width: 60px;
  height: 60px;
  filter: brightness(0) saturate(100%) invert(1);
}

.whatscontact-info h3 {
  font-size: 1.8rem;
  color: #111111;
  margin: 0 0 10px 0;
  font-weight: 700;
}

.whatscontact-info .description {
  color: #666;
  font-size: 0.95rem;
  margin: 0 0 20px 0;
  line-height: 1.5;
}

.whatscontact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-bottom: 15px;
  border: 2px solid;
}

.whatscontact-card:nth-child(1) .whatscontact-btn {
  background: #25d366;
  border-color: #25d366;
}

.whatscontact-card:nth-child(1) .whatscontact-btn:hover {
  background: #1da851;
  border-color: #1da851;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatscontact-card:nth-child(2) .whatscontact-btn {
  background: #ff6b35;
  border-color: #ff6b35;
}

.whatscontact-card:nth-child(2) .whatscontact-btn:hover {
  background: #cc3300;
  border-color: #cc3300;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.whatscontact-btn img {
  width: 20px;
  height: 20px;
}

.phone-number {
  color: #333;
  font-weight: 600;
  margin: 0;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-number-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
}

@media (max-width: 768px) {
  .whatscontact-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .whatscontact-content {
    flex-direction: column;
    gap: 30px;
  }

  .whatscontact-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    min-width: auto;
  }

  .whatscontact-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
  }

  .whatscontact-icon img {
    width: 50px;
    height: 50px;
  }

  .whatscontact-info h3 {
    font-size: 1.5rem;
  }

  .phone-number {
    font-size: 0.95rem;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
