/* ============================================
   MÓDULO DE CONTACTO ESTRATÉGICO
   ============================================ */

.contact-strategic {
  width: 100%;
  max-width: 1024px;
  margin: 60px auto;
  background: #1f3a54;
  padding: 50px 60px;
  position: relative;
}

.contact-strategic-title {
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  font-family: "Inter", sans-serif;
  letter-spacing: -0.5px;
}

.contact-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.contact-btn {
  flex: 1;
  min-width: 280px;
  max-width: 450px;
  background: #ffffff;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.contact-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
  text-decoration: none;
}

.contact-btn:hover::after {
  left: 100%;
  text-decoration: none;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.contact-btn-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  text-decoration: none;
}

.contact-btn-whatsapp .contact-btn-icon {
  background: #25d366;
  color: white;
}

.contact-btn-phone .contact-btn-icon {
  background: #ffb400;
  color: white;
}

.contact-btn-text {
  flex: 1;
  text-align: left;
}

.contact-btn-text h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1f3a54;
  margin: 0 0 4px 0;
  font-family: "Inter", sans-serif;
}

.contact-btn-text p {
  font-size: 16px;
  color: #666;
  margin: 0;
  padding: 0;
  text-align: left;
  line-height: 1.4;
}

.contact-info-extra {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
}

.info-item i {
  font-size: 20px;
  color: #ffb400;
}

.info-item-text {
  font-size: 15px;
  line-height: 1.4;
}

.info-item-text strong {
  display: block;
  color: #ffffff;
  font-weight: 600;
}

/* Responsive del módulo de contacto */
@media (max-width: 768px) {
  .contact-strategic {
    padding: 40px 30px;
  }

  .contact-strategic-title {
    font-size: 24px;
  }

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

  .contact-btn {
    max-width: 100%;
  }

  .contact-info-extra {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .contact-strategic {
    padding: 30px 20px;
  }

  .contact-btn {
    padding: 20px;
    min-width: auto;
  }

  .contact-btn-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .contact-btn-text h3 {
    font-size: 18px;
  }

  .contact-btn-text p {
    font-size: 14px;
  }
}
