:root {
  --main-gradient: linear-gradient(90deg, #059669, #c493c3);
  --main-gradient-hover: linear-gradient(90deg, #047857, #b17cae);
  --accent: #10b981;
}

/* ================= GLOBAL ================= */

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
}

h1,h2,h3,h4,h5,h6,
.h1,.h2,.h3,.h4,.h5,.h6 {
  font-family: 'Work Sans', sans-serif;
  margin-top: 0;
}

a {
  color: var(--accent);
  transition: all .3s ease-in-out;
}

a:hover {
  color: #059669;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.bg-grey {
  background-color: #f7f8f9;
}

/* ================= NAVBAR ================= */

#header-navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 11;
}

.navbar-nav .nav-link,
.navbar-toggler {
  color: #fff;
}

/* ================= JUMBOTRON ================= */

.jumbotron {
  min-height: 100vh;
  color: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.jumbotron:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.85;
  background: var(--main-gradient);
  z-index: 1;
}

.jumbotron .container {
  position: relative;
  z-index: 2;
}

/* === TITULO SIPKA (NO SE BORRA) === */

.jumbotron h1 {
  line-height: .9;
  font-weight: bold;
  display: inline-block;
  border: 15px solid #fff;
  padding: 30px;
  font-size: 9rem;
  opacity: 0;
  animation: 1s fadeInFromTop cubic-bezier(0.785, 0.135, 0.15, 0.86) forwards;
  animation-delay: .8s;
}

/* ================= BUTTONS ================= */

.btn {
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  padding: 9px 25px;
}

.btn-primary {
  background: var(--main-gradient);
  border: none;
  color: #fff;
}

.btn-primary:hover {
  background: var(--main-gradient-hover);
}

.btn-outline-primary {
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline-primary:hover {
  background: var(--main-gradient-hover);
  border-color: transparent;
}

/* ================= OVERLAY ================= */

.overlay {
  position: relative;
}

.overlay:before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--main-gradient);
  opacity: .9;
  z-index: 0;
}

/* ================= SHAPES ================= */

.rectangle-1,
.rectangle-2 {
  width: 2000px;
  height: 400px;
  background: var(--main-gradient);
  position: absolute;
  z-index: 0;
}

.rectangle-1 {
  transform: rotate(-10deg);
}

.rectangle-2 {
  transform: rotate(50deg);
}

.circle-1,
.circle-2,
.circle-3 {
  border: 2px solid #fff;
  border-radius: 50%;
  position: absolute;
}

/* ================= FEATURES ================= */

.feature-item {
  transition: all .2s ease-in-out;
}

.feature-item:hover {
  transform: translateY(-13px);
}

/* ================= PROGRESS ================= */

.progress-bar {
  background: var(--main-gradient);
}

/* ================= TESTIMONIAL ================= */

.testi-icon {
  color: var(--accent);
}

/* ================= BLOG ================= */

.blog-item {
  transition: all .3s ease-in-out;
}

.blog-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 7px 10px rgba(0,0,0,.15);
}

/* ================= FORM ================= */

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 .2rem rgba(16,185,129,.25);
}

/* ================= ANIMATIONS ================= */

@keyframes fadeInFromTop {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  #header-navbar,
  .navbar-collapse {
    background: var(--main-gradient);
  }
}

@media (max-width: 767px) {
  .jumbotron h1 {
    font-size: 6rem;
  }
}
