:root {
  --green: #2a9d8f;
  --purple: #9b5de5;
  --red: #ef476f;
  --yellow: #ffd166;
  --blue: #118ab2;
}

body {
  font-family: 'Roboto', sans-serif;
}

.landing {
  min-height: 100vh;
  background: url("/images/encabezado.jpg") no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.title {
  color: var(--purple);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.separator-left {
  height: 3px;
  background: linear-gradient(270deg, transparent, var(--green), var(--purple), transparent);
}

.separator-right {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--green), var(--purple), transparent);
}

.detailed-card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 4px solid var(--green);
}

.detailed-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.icon {
  font-size: 2.5rem;
  color: var(--purple);
  transition: color 0.3s;
}

.detailed-card:hover .icon {
  color: var(--red);
}

.card-title {
  color: var(--green);
  font-weight: 600;
}

.card-text {
  color: #555;
}

form {
  border: 3px solid #927;
  border-radius: 10px;
}

.form-control {
  background-color: rgba(153, 43, 119, .1) !important;
}

.btn-primary {
  background-color: #927;
  border-color: #927;
}

.btn-primary:hover {
  background-color: #821D66;
  border-color: #821D66;
}

.header {
  height: 72px;
  z-index: 9000;
}

.nav-link {
  color: white;
} 

.content {
  min-height: calc(100vh - 72px);
}

.footer {
  font-size: 14pt;
}

.footer ul {
  list-style-type: none;
}

.footer .seccion {
  letter-spacing: .2rem;
  text-transform: uppercase;
}

.subtitle {
  font-weight: 300;
  font-size: calc(20pt + 1vw);
  color: #927;
}

.main-title {
  text-align: center;
  font-size: calc(40pt + 3vw);
  color: white;
  font-weight: 300;
  opacity: 0;
  position: absolute;
  transition: opacity 1s ease-in-out;
}

#text1 {
  opacity: 1;
}