/* Cargonam Casilleros — botón CTA [casillero_cta] para el Home */
.cas-cta { margin: 16px 0; }
.cas-cta--center { text-align: center; }
.cas-cta--right  { text-align: right; }

.cas-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #F5921E;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1;
  padding: 15px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.cas-cta-btn:hover {
  background: #d97a12;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
}
.cas-cta-btn:focus-visible {
  outline: 3px solid #005890;
  outline-offset: 2px;
}

.cas-cta-arrow { font-size: 1.1em; transition: transform 0.2s ease; }
.cas-cta-btn:hover .cas-cta-arrow { transform: translateX(3px); }

@media (max-width: 600px) {
  .cas-cta-btn { width: 100%; justify-content: center; }
}
