 :root {
  --primary-color: #6c63ff;
  --secondary-color: #4d44db;
  --dark-color: #2a2a2a;
  --light-color: #f8f9fa;
  --gray-color: #6c757d;
}
 /* Estilos específicos para la página de contacto */
 .contact-hero {
    background-color: blue;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 8rem 0;
    text-align: center;
  }
  .contact-title{
    font-size: 5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInDown 0.8s ease-out;
  }  
  .lead{
    font-size: 2rem;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out 0.3s both;
  }
  .contact-form {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 3rem;
    margin-top: -100px;
    position: relative;
    z-index: 2;
  }
  
  .form-control {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    margin-bottom: 1.5rem;
  }
  
  .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(var(--primary-rgb), 0.25);
  }
  
  .contact-info-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease;
  }
  
  .contact-info-card:hover {
    transform: translateY(-5px);
  }
  
  .contact-info-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(var(--primary-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  
  .contact-info-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
  }
  
  .map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 400px;
  }
  
  .btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
  }