:root {
  --primary-color: #1ac9f7;
  --secondary-color: #ff135d;
  --yellow-color: #ffae00;
  --purple-color: #691f74;
  --text-color: #717d84;
}
* {
  font-family: "Montserrat", sans-serif;
}

body {
  background-color: #f6f6f6;
}

p {
  font-size: 1.2em;
  font-weight: 500;
}

.gray-color {
  color: var(--text-color);
}

.purple-color {
  color: var(--purple-color);
}

.yellow-color {
  color: var(--yellow-color);
}

.magenta-color {
  color: var(--secondary-color);
}

.white-color {
  color: #ffffff;
}

.bold-text {
  font-weight: 600;
  font-size: 2em;
}

.medium-text {
  font-weight: 800;
  font-size: 3.5em;
}
.big-text {
  font-weight: 800;
  font-size: 5em;
}
.invert-margin {
  margin-top: -80px;
}
.img-wrapper {
  position: relative;
}

.img-wrapper img {
  position: relative;
  width: 100%;
  display: block;
}

.text-wrapper {
  background-color: var(--purple-color);
  padding: 35px;
  border-radius: 50px;
  color: #ffffff;
  font-size: 1.5em;
}

.custom-cta {
  background-color: var(--secondary-color);
  padding: 20px 35px;
  border-radius: 50px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.custom-cta:hover {
  background-color: var(--yellow-color);
  color: var(--purple-color);
}

.overall {
  position: relative;
  z-index: 9;
}

@media all and (max-width: 991px) {
  .big-text {
    font-size: 2.5em;
  }
}

header nav.navbar {
  background-color: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(35px) brightness(1.2);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  position: relative;
}

.navbar-brand img {
  position: relative;
  display: block;
  width: 150px;
}

.navbar .navbar-collapse .navbar-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar .navbar-collapse .navbar-nav .nav-item img {
  position: relative;
  display: block;
  width: 150px;
}

.navbar-nav .nav-item a.nav-link {
  font-weight: 600;
  color: var(--text-color);
}
.navbar-nav .nav-item a.nav-link:hover,
.navbar-nav .nav-item a.nav-link.active {
  color: var(--purple-color);
}

.main-banner {
  height: 100vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.main-text {
  font-size: 2rem;
  font-weight: 600;
}

/* objetivos */
#objetivos {
  position: relative;
}
#objetivos::before {
  position: absolute;
  content: "";
  bottom: 0px;
  left: 0;
  width: 512px;
  height: 512px;
  background-image: url("../img/bg-blue-1.avif");
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
  opacity: 1;
}
#objetivos::after {
  position: absolute;
  content: "";
  top: -128px;
  right: 0;
  width: 512px;
  height: 512px;
  background-image: url("../img/bg-blue-2.avif");
  background-position: right top;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
  opacity: 1;
}
@media all and (max-width: 991px) {
  #objetivos::before,
  #objetivos::after {
    width: 100%;
    height: 100%;
  }
}

/* objetivos */

/* infografia */
.infografia {
  position: relative;
  background-color: var(--purple-color);
}
.img-wrapper img.inner-logo {
  width: 40%;
  margin: 0 auto;
}
.img-wrapper img.inner-logo-2 {
  width: 40%;
}
@media all and (max-width: 991px) {
  .img-wrapper img.inner-logo {
    width: 80%;
  }
  .img-wrapper img.inner-logo-2 {
    width: 60%;
  }
}
.color-wrapper {
  padding: 20px 40px;
  border-radius: 100px;
}
.ramp1 {
  border: 3px solid var(--yellow-color);
}
.ramp2 {
  border: 3px solid #ff6c00;
}
.ramp3 {
  border: 3px solid #ff1835;
}
.ramp4 {
  border: 3px solid #5b8cc7;
}
#infografia::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 720px;
  height: 720px;
  background-image: url("../img/bg-magenta-1.avif");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
  opacity: 1;
}
#infografia::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 720px;
  height: 720px;
  background-image: url("../img/bg-magenta-2.avif");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
  opacity: 1;
}
@media all and (max-width: 991px) {
  #infografia::before,
  #infografia::after {
    width: 100%;
    height: 100%;
  }
}
/* infografia */

/* sumate */
.sumate {
  position: relative;
  background-color: var(--purple-color);
}
#sumate::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 720px;
  height: 720px;
  background-image: url("../img/bg-yellow-1.avif");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
  opacity: 1;
}
#sumate::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 720px;
  height: 720px;
  background-image: url("../img/bg-yellow-2.avif");
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
  opacity: 1;
}
@media all and (max-width: 991px) {
  #sumate::before,
  #sumate::after {
    width: 100%;
    height: 100%;
  }
}
.img-wrapper img.custom-line {
  width: 33%;
  margin: 0 auto 20px auto;
  display: block;
}
/* sumate */

/* redes */
#red {
  position: relative;
}
#red::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 720px;
  height: 720px;
  background-image: url("../img/bg-magenta-3.avif");
  background-position: top right;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
  opacity: 1;
}
#red::after {
  position: absolute;
  content: "";
  bottom: -128px;
  left: 0;
  width: 720px;
  height: 720px;
  background-image: url("../img/bg-magenta-4.avif");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
  opacity: 0.5;
}
@media all and (max-width: 991px) {
  #red::before,
  #red::after {
    width: 100%;
    height: 100%;
  }
}
.custom-icon {
  width: 100px;
  height: 47px;
  background-image: url("../img/tres-circulos-img.avif");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}
/* redes */

/* comparte */
#comparte {
  position: relative;
}
#comparte::before {
  position: absolute;
  content: "";
  bottom: -128px;
  left: 0;
  width: 512px;
  height: 720px;
  background-image: url("../img/bg-magenta-5.avif");
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
  opacity: 0.5;
}
#comparte::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 720px;
  height: 720px;
  background-image: url("../img/bg-magenta-6.avif");
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
  opacity: 1;
}
@media all and (max-width: 991px) {
  #comparte::before,
  #comparte::after {
    width: 100%;
    height: 100%;
  }
}
/* comparte */

/* footer */
footer .social-media {
  display: inline-block;
  list-style-type: none;
  padding: 0;
}
footer .social-media li {
  display: inline-block;
  margin-right: 10px;
}
footer .social-media li a {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  background-color: var(--purple-color);
  padding: 15px;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
footer .social-media li a svg {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  fill: #ffffff;
}
footer .social-media li a:hover {
  background-color: var(--yellow-color);
}
footer .contact-info {
  list-style-type: none;
  padding: 0;
}
footer .contact-info li {
  margin-bottom: 10px;
}
footer .contact-info li a {
  text-decoration: none;
  color: var(--text-color);
}
footer .contact-info li a:hover {
  color: var(--secondary-color);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
footer .contact-info li a span {
  display: inline-block;
  width: 15px;
  height: 15px;
}
footer .contact-info li a span svg {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  fill: var(--secondary-color);
}

/* footer */
