:root {
  --primary-color: #315fc5;
}

.bg-primary-custom {
  background-color: var(--primary-color) !important;
}

.btn-primary-custom {
  background-color: var(--primary-color);
  color: white;
  border: none;
}

.btn-primary-custom:hover {
  background-color: #2748a2;
}

.bg-primary{
  background-color: var(--primary-color) !important;
}

.btn-primary{
  background-color: var(--primary-color) !important;
  border-radius: 25px !important;
}

.hero {
  background: linear-gradient(to bottom right, #315fc5, #1e3f91);
  height: 80vh;
  padding: 0 20px;
}

.btn-contacto-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: white;
    color: #000;
    border: 2px solid #25D366;
    border-radius: 30px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 999;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .btn-contacto-whatsapp:hover {
    background-color: #25D366;
    color: white;
  }

  .btn-contacto-whatsapp i {
    font-size: 18px;
  }