@font-face {
  font-family: "Geometria";
  src: url("/assets/fonts/Geometria-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Geometria";
  src: url("/assets/fonts/Geometria.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Geometria";
  src: url("/assets/fonts/Geometria-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Geometria";
  src: url("/assets/fonts/Geometria-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Geometria";
  src: url("/assets/fonts/Geometria-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Geometria";
  src: url("/assets/fonts/Geometria-Heavy.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

select, input, textarea, button, fieldset {
  border: none;
  padding: 0;
  margin: 0;
  background: transparent;
  resize: none;
}

figure {
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
  -webkit-margin-start: 0;
          margin-inline-start: 0;
  -webkit-margin-end: 0;
          margin-inline-end: 0;
  line-height: 0;
}

ul, li, dt {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

html {
  font-family: "Geometria", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  scroll-behavior: smooth;
}

:focus {
  outline: 0;
}

body, main {
  background: #ffffff;
  color: #454545;
  overflow-x: hidden;
}

body, input, textarea, button {
  font-family: "Geometria", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 1rem;
}

fieldset {
  -webkit-margin-start: 0;
          margin-inline-start: 0;
  -webkit-margin-end: 0;
          margin-inline-end: 0;
  -webkit-padding-before: 0;
          padding-block-start: 0;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
  -webkit-padding-end: 0;
          padding-inline-end: 0;
  -webkit-padding-after: 0;
          padding-block-end: 0;
}

/* Custom ScrollBar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #1a0045;
}

::-webkit-scrollbar-thumb {
  background: #6b2ea6;
}

::-webkit-scrollbar-thumb:hover {
  background: #6b2ea6;
}

.container {
  width: 85vw;
  margin: 0 auto;
  padding: 1rem 0;
}
@media screen and (min-width: 1440px) {
  .container {
    width: 70vw;
  }
}

.headerfix {
  padding-top: 84px;
}

.flex {
  display: flex;
}
.flex.align-center {
  align-items: center;
}
.flex.align-start {
  align-items: flex-start;
}
.flex.justify-center {
  justify-content: center;
}
.flex.justify-between {
  justify-content: space-between;
}

.btn {
  padding: 0.875rem 2rem;
  font: 600 1rem/1.5 "Geometria", sans-serif;
  text-transform: uppercase;
}
.btn.outline {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}
.btn.rounded {
  border-radius: 24px;
}
.btn.filled {
  color: #ffffff;
}
.btn.primary {
  background: #1a0045;
}
.btn.secondary {
  background: #00fad2;
}
.btn.desfoque {
  background: rgba(255, 255, 255, 0.5647058824);
  color: #6b2ea6;
}
@media screen and (max-width: 480px) {
  .btn {
    font-size: 0.865rem;
  }
}

#header {
  background: #1a0045 100%/100%;
  color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
}
#header .logo {
  width: 12.5%;
}
#header .logo img {
  width: 100%;
}
#header .menu {
  width: 87.5%;
}
#header .menu-items {
  width: 100%;
  justify-content: flex-end;
  gap: 1.5rem;
}
#header .menu-items-item {
  font-size: 0.875rem;
  text-transform: uppercase;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#header .menu-items-item a {
  width: 100%;
}
#header .menu-items-item:hover, #header .menu-items-item.active {
  font-weight: 700;
}
#header .menu-items-item:hover::after, #header .menu-items-item.active::after {
  width: 75%;
  height: 2px;
  content: "";
  display: block;
  background: #ffffff;
  position: absolute;
  bottom: -0.5rem;
}
#header #toggle {
  display: none;
}
#header .hamburger {
  position: absolute;
  display: none;
  right: 7.5%;
  margin-left: -2em;
  width: 2em;
  height: 38px;
  z-index: 25;
}
#header .hamburger div {
  position: relative;
  width: 2em;
  height: 4px;
  border-radius: 3px;
  background-color: #ffffff;
  margin-top: 8px;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 719px) {
  #header .header-wrapp {
    justify-content: space-between;
  }
  #header .logo {
    width: 35%;
  }
  #header .hamburger {
    display: block;
  }
  #header .menu {
    position: fixed;
    z-index: 20;
    top: 86px;
    left: 0;
    opacity: 0;
    visibility: hidden;
    width: 100vw;
    height: 100vh;
    background: #1a0045;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  #header .menu ul {
    height: unset;
    padding-left: 5vh;
    padding-top: 2.5rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 2rem;
  }
  #header .menu ul li {
    height: unset;
  }
  #header .menu button {
    padding-left: 5vh;
  }
  #header #toggle:checked + .hamburger .top-bun {
    transform: rotate(-45deg);
    margin-top: 24px;
  }
  #header #toggle:checked + .hamburger .bottom-bun {
    opacity: 0;
    transform: rotate(45deg);
  }
  #header #toggle:checked + .hamburger .meat {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  #header #toggle:checked + .hamburger + .menu {
    visibility: visible;
    opacity: 1;
  }
}

#footer {
  width: 100%;
  margin-top: 2rem;
}
#footer .footer-wrapp {
  position: relative;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
}
#footer .footer-wrapp h3 {
  width: 100%;
  margin: 2rem 0;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 300;
  color: #6b2ea6;
  text-transform: uppercase;
}
#footer .footer-wrapp-nav {
  gap: 2rem;
}
#footer .footer-wrapp-nav-menu li {
  font-size: 1.125rem;
  text-transform: uppercase;
  line-height: 2;
  color: #9aa2aa;
}
#footer .footer-wrapp-copy {
  gap: 1rem;
  color: #9aa2aa;
}
#footer .footer-wrapp::before {
  width: 100%;
  height: 4px;
  border-radius: 12px;
  content: "";
  background: #00fad2;
}
@media screen and (max-width: 480px) {
  #footer .footer-wrapp h3 {
    font-size: 1.75rem;
  }
  #footer .footer-wrapp-nav {
    flex-direction: column;
  }
  #footer .footer-wrapp-copy {
    flex-direction: column;
  }
}

.hero {
  width: 100%;
}
.hero-banner {
  width: 100%;
  height: 85vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero-banner-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.hero-banner-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-banner-title {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2.5rem;
}
.hero-banner-title h1 {
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 300;
  text-transform: uppercase;
  color: #1a0045;
}
.hero-banner-title h1 span {
  display: block;
  font-weight: 800;
  color: #6b2ea6;
}
@media screen and (max-width: 719px) {
  .hero-banner-image img {
    -o-object-position: 65%;
       object-position: 65%;
  }
}
@media screen and (max-width: 480px) {
  .hero-banner-title h1 {
    font-size: 1.75rem;
  }
  .hero-desc h2 {
    font-size: 1.25rem;
  }
  .hero-desc p {
    width: 100%;
    font-size: 1.125rem;
    line-height: 1.2;
  }
}

.about-desc {
  text-align: center;
  display: flex;
  gap: 1rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about-desc p {
  margin: 1rem 0;
  font-size: 1.25rem;
  line-height: 1.35;
  font-weight: 400;
  width: 75%;
  color: #1a0045;
}
.about-desc h2 {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #6b2ea6;
}
@media screen and (max-width: 480px) {
  .about-desc h2 {
    font-size: 1.25rem;
  }
  .about-desc p {
    width: 100%;
    font-size: 1.125rem;
    line-height: 1.2;
  }
}
.about-especialista {
  width: 100%;
  padding: 2rem 0;
  background: #1a0045;
  color: #ffffff;
}
.about-especialista .text h2 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.about-especialista .text p {
  color: #d2bbe6;
  font-size: 1rem;
  font-weight: 300;
}
.about-especialista-textImage-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.about-especialista-textImage-text p {
  width: 90%;
}
.about-especialista-full {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}
.about-especialista-full .text p {
  width: 95%;
}
.about-especialista-full button {
  width: 35%;
}
@media screen and (min-width: 1440px) {
  .about-especialista .text h2 {
    font-size: 1.75rem;
  }
  .about-especialista .text p {
    font-size: 1.25rem;
  }
  .about-especialista-full {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 719px) {
  .about-especialista-full button {
    width: 75%;
  }
}
@media screen and (max-width: 480px) {
  .about-especialista .text h2 {
    font-size: 1.125rem;
  }
  .about-especialista .text p {
    font-size: 0.875rem;
  }
  .about-especialista-textImage {
    flex-direction: column-reverse;
  }
  .about-especialista-textImage-image {
    margin-bottom: 2rem;
  }
  .about-especialista-full {
    margin-top: 2rem;
  }
  .about-especialista-full button {
    width: 100%;
  }
}
.about-ciclo {
  background: #fbe2c0;
  padding: 2rem 0;
}
.about-ciclo h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #6b2ea6;
}
.about-ciclo-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-ciclo-list dt {
  font-size: 1.25rem;
  color: #1a0045;
  font-weight: 600;
}
@media screen and (min-width: 1440px) {
  .about-ciclo {
    padding: 5rem 0;
  }
  .about-ciclo h2 {
    font-size: 2.75rem;
  }
  .about-ciclo-list dt {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 719px) {
  .about-ciclo .container {
    flex-direction: column;
  }
  .about-ciclo .container h2 {
    width: 100%;
  }
  .about-ciclo .container dl {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .about-ciclo .container {
    flex-direction: column;
  }
  .about-ciclo .container h2 {
    width: 100%;
    font-size: 2rem;
    line-height: 1.2;
  }
  .about-ciclo .container dl {
    margin-top: 2rem;
  }
  .about-ciclo .container dl dt {
    font-size: 1rem;
  }
}
.about-nina {
  background: #6b2ea6;
}
.about-nina .container {
  position: relative;
  z-index: 1;
}
.about-nina-image {
  width: 40%;
  height: 450px;
  position: relative;
  z-index: 0;
  left: -10%;
  bottom: -3rem;
}
.about-nina-image img {
  width: 100%;
}
.about-nina-text {
  width: 35%;
  text-align: right;
}
.about-nina-text h2 {
  font-size: 2rem;
  text-transform: uppercase;
  color: #fbe2c0;
  text-align: right;
}
.about-nina-text p {
  width: 100%;
  font-size: 1.125rem;
  line-height: 1.5;
  margin: 1rem 0;
  color: #d2bbe6;
}
@media screen and (min-width: 1440px) {
  .about-nina {
    padding: 5rem 0;
  }
  .about-nina-image {
    width: 45%;
    left: -25%;
    bottom: 2rem;
  }
  .about-nina-text {
    width: 50%;
  }
  .about-nina-text h2 {
    font-size: 2.5rem;
  }
  .about-nina-text p {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 719px) {
  .about-nina .container {
    flex-direction: column-reverse;
  }
  .about-nina-text {
    width: 100%;
    text-align: left;
  }
  .about-nina-text h2 {
    text-align: left;
  }
  .about-nina-image {
    width: 65%;
    height: 400px;
    left: -25%;
    bottom: -3.5rem;
  }
}
@media screen and (max-width: 480px) {
  .about-nina .container {
    flex-direction: column-reverse;
  }
  .about-nina-text {
    width: 100%;
    text-align: left;
  }
  .about-nina-text h2 {
    font-size: 1.5rem;
    text-align: left;
  }
  .about-nina-text p {
    font-size: 1rem;
  }
  .about-nina-image {
    width: 85%;
    height: 300px;
    left: -15%;
    bottom: -2rem;
  }
}
.about-final {
  position: relative;
  z-index: 2;
}
.about-final-banner {
  width: 100%;
  position: relative;
  z-index: 5;
}
.about-final-banner img {
  width: 100%;
}
.about-final-banner::after {
  width: 25%;
  height: 75px;
  position: absolute;
  z-index: -1;
  bottom: -74px;
  right: 212px;
  content: "";
  background: url("../assets/about-vector.webp") no-repeat;
  background-size: contain;
}
.about-final-text {
  padding: 2rem 0;
  position: relative;
}
.about-final-text h3 {
  width: 65%;
  padding: 1rem 0;
  margin-bottom: 2rem;
  font-size: 1.75rem;
  line-height: 1.125;
  text-transform: uppercase;
  color: #6b2ea6;
}
.about-final-text p {
  font-size: 1.125rem;
  color: #1a0045;
  margin: 1rem 0;
  text-align: justify;
}
.about-final-text p:first-of-type {
  font-weight: 700;
}
.about-final-text p:last-of-type {
  margin-top: 3.5rem;
}
.about-final-text::after {
  position: absolute;
  height: 225px;
  z-index: -1;
  bottom: -18px;
  right: -7.5vw;
  content: url("../assets/about-vector-after.webp");
}
.about-final-quote {
  width: 100%;
  padding: 2rem 0;
  margin-top: 2rem;
  position: relative;
  background: #1a0045;
  color: #ffffff;
  font-style: italic;
}
.about-final-quote button {
  color: #6b2ea6 !important;
  position: absolute;
  top: -25px;
  left: 7.5vw;
}
.about-final-quote p {
  width: 85vw;
  margin: 0 auto;
  padding: 2rem 0;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 800;
}
.about-final-quote p span {
  display: block;
  margin-top: 1rem;
  font-size: 0.865rem;
  font-weight: 300;
  color: #00fad2;
}
@media screen and (min-width: 1440px) {
  .about-final-text::after {
    right: -16vw;
  }
  .about-final-quote button {
    left: 15vw;
  }
}
@media screen and (max-width: 480px) {
  .about-final-banner::after {
    width: 35%;
    right: 15%;
  }
  .about-final-text h3 {
    width: 100%;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .about-final-text p {
    font-size: 1rem;
  }
  .about-final-text::after {
    height: 92px;
  }
  .about-final-quote p {
    font-size: 1rem;
    font-weight: 700;
  }
}

.nina {
  width: 100%;
  position: relative;
  padding: 48px 0;
}
.nina-desc {
  width: 100%;
  padding: 5rem 0;
  background: #00fad2;
  position: relative;
}
.nina-desc-title {
  margin-bottom: 2rem;
  color: #6b2ea6;
}
.nina-desc-title h2 {
  font-size: 2.5rem;
  line-height: 1.15;
  font-weight: 300;
  text-transform: uppercase;
}
.nina-desc-title h2 span {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: none;
}
.nina-desc p {
  color: #6b2ea6;
  width: 65%;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}
.nina-desc-image {
  width: 35%;
  position: absolute;
  top: -1.75rem;
  right: -1rem;
}
.nina-desc-image img {
  width: 100%;
}
.nina-path-text {
  margin: 1.5rem 0;
}
.nina-path-text h3 {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 600;
  color: #6b2ea6;
  text-transform: uppercase;
}
.nina-path-text p, .nina-path-text li {
  width: 85%;
  font-size: 1.125rem;
  color: #1a0045;
}
.nina-path-text p {
  margin: 1rem 0;
}
.nina-path-text.experiencia p:first-of-type {
  width: 70%;
}
.nina::before {
  width: 100%;
  height: 52px;
  content: "";
  background: url("../assets/nina-vector.webp") no-repeat;
  background-size: cover;
  position: absolute;
  z-index: 4;
  left: 0;
  top: -2px;
}
@media screen and (min-width: 1440px) {
  .nina-desc-title h2 {
    font-size: 2rem;
  }
  .nina-desc-title h2 span {
    font-size: 1.25rem;
  }
  .nina-desc-image {
    width: 30%;
  }
  .nina-path-text h3 {
    font-size: 2rem;
  }
  .nina-path-text p, .nina-path-text li {
    font-size: 1.5rem;
  }
  .nina-path-text.experiencia p:first-of-type {
    width: 70%;
  }
}
@media screen and (max-width: 480px) {
  .nina {
    padding: 36px 0;
  }
  .nina-desc {
    padding: 3.5rem 0 2.5rem 0;
  }
  .nina-desc-title h2 {
    font-size: 1.5rem;
  }
  .nina-desc-title h2 span {
    font-size: 1rem;
  }
  .nina-desc p {
    width: 100%;
    font-size: 1rem;
    padding-top: 1rem;
    text-transform: none;
  }
  .nina-desc-image {
    width: 40%;
  }
  .nina-path-text p, .nina-path-text li {
    width: 100%;
    font-size: 1rem;
  }
  .nina-path-text.experiencia p:first-of-type {
    width: 100%;
  }
}

.mentorias {
  width: 100%;
  position: relative;
  padding-top: 82px;
  gap: 7.5rem;
}
.mentorias-desc {
  width: 25%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.mentorias-desc-image {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}
.mentorias-desc-image img {
  width: 100%;
  height: 100%;
}
.mentorias-desc-geometrics {
  width: 100%;
  margin-top: 282px;
  padding-top: 12.5rem;
  padding-bottom: 2.5rem;
  background: #fbe2c0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}
.mentorias-desc-geometrics-geometric {
  width: 75%;
  position: relative;
}
.mentorias-desc-geometrics-geometric img {
  width: 75%;
}
.mentorias-desc-geometrics-geometric h3 {
  width: 112px;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  z-index: 2;
  top: -24px;
  right: 0;
  border-radius: 50%;
  background: #1a0045;
  font-size: 0.875rem;
  line-height: 1.25;
  font-weight: 600;
  color: #fbe2c0;
}
.mentorias-flow {
  width: 50%;
  padding-right: 7.5vw;
}
.mentorias-flow-text {
  margin: 2rem 0;
  color: #6b2ea6;
}
.mentorias-flow-text h3 {
  font-size: 1.475rem;
  line-height: 1.5;
  font-weight: 800;
  text-transform: uppercase;
}
.mentorias-flow-text p, .mentorias-flow-text li {
  font-size: 1.125rem;
  line-height: 1.25;
  font-weight: 400;
}
.mentorias-flow-text ul {
  margin-top: 1rem;
}
.mentorias-flow footer {
  margin-top: 2rem;
}
.mentorias-flow footer h4 {
  color: #6b2ea6;
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 800;
  text-transform: uppercase;
}
.mentorias::before {
  width: 100%;
  height: 52px;
  content: "";
  background: url("../assets/nina-vector.webp") no-repeat;
  background-size: cover;
  position: absolute;
  z-index: 4;
  left: 0;
  top: -2px;
}
.mentorias::after {
  width: 148px;
  height: 148px;
  opacity: 0.5;
  filter: brightness(0.5);
  content: "";
  background: url("../assets/mentorias-after.webp") no-repeat;
  background-size: cover;
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
}
@media screen and (min-width: 1440px) {
  .mentorias-desc {
    width: 30%;
  }
  .mentorias-desc-geometrics {
    margin-top: 378px;
    padding-top: 25rem;
  }
  .mentorias-flow-text h3 {
    font-size: 2rem;
  }
  .mentorias-flow-text p, .mentorias-flow-text li {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .mentorias {
    flex-direction: column-reverse;
    gap: 2rem;
  }
  .mentorias-desc {
    width: 100%;
  }
  .mentorias-desc-image {
    width: 75%;
  }
  .mentorias-desc-geometrics {
    margin-top: 212px;
    padding-top: 12rem;
    padding-bottom: 4rem;
  }
  .mentorias-flow {
    width: 85vw;
    margin: 0 auto;
  }
  .mentorias-flow-text h3 {
    font-size: 1.25rem;
  }
  .mentorias-flow-text p {
    font-size: 1rem;
  }
}

.consultorias {
  width: 100%;
  position: relative;
  padding-top: 48px;
}
.consultorias-ciclos, .consultorias-workflow {
  width: 50%;
  padding: 2rem 7.5vw;
}
.consultorias-ciclos {
  background: #1a0045;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.consultorias-ciclos h2 {
  font-size: 2rem;
  text-transform: uppercase;
  color: #00fad2;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.consultorias-ciclos article {
  width: 100%;
  margin: 0.5rem 0;
}
.consultorias-ciclos article h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin: 1rem 0;
  width: 75%;
}
.consultorias-ciclos article p {
  font-size: 1.125rem;
  line-height: 1.75;
}
.consultorias-workflow {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  position: relative;
}
.consultorias-workflow-image {
  width: 90%;
}
.consultorias-workflow .right-image {
  width: 80%;
  position: relative;
  bottom: 0;
  right: -152px;
}
.consultorias-workflow-cta {
  width: 90%;
  margin: 1rem auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
}
.consultorias-workflow-cta h3 {
  font-size: 2rem;
  color: #1a0045;
  font-weight: 800;
  text-transform: uppercase;
  text-align: right;
  margin: 1rem 0;
}
.consultorias-workflow-cta .btn {
  width: 95%;
  background: #6b2ea6;
}
.consultorias-workflow::after {
  position: absolute;
  height: 225px;
  bottom: 30rem;
  right: -3vw;
  content: url(../assets/about-vector-after.webp);
  filter: brightness(10) contrast(0.25) saturate(1.75);
}
.consultorias::before {
  width: 100%;
  height: 52px;
  content: "";
  background: url("../assets/nina-vector.webp") no-repeat;
  background-size: cover;
  position: absolute;
  z-index: 4;
  left: 0;
  top: -2px;
}
@media screen and (min-width: 1440px) {
  .consultorias-ciclos {
    padding: 2rem 15vw;
  }
  .consultorias-ciclos h2 {
    font-size: 2.5rem;
  }
  .consultorias-ciclos article h3 {
    width: 85%;
    font-size: 2rem;
  }
  .consultorias-ciclos article p {
    font-size: 1.5rem;
  }
  .consultorias-workflow {
    padding: 2rem 15vw 2rem 7.5vw;
  }
  .consultorias-workflow-image {
    width: 100%;
  }
  .consultorias-workflow-cta {
    width: 100%;
  }
  .consultorias-workflow .right-image {
    right: -348px;
  }
}
@media screen and (max-width: 480px) {
  .consultorias {
    flex-direction: column;
  }
  .consultorias-ciclos, .consultorias-workflow {
    width: 100%;
    padding: 2rem 7.5vw;
  }
  .consultorias-workflow-cta {
    width: 100%;
  }
  .consultorias-workflow-cta h3 {
    font-size: 1.5rem;
  }
  .consultorias-workflow-cta .btn {
    width: 100%;
    padding: 0.5rem 1.25rem;
  }
  .consultorias-workflow::after {
    display: none;
  }
  .consultorias-workflow .right-image {
    width: 90%;
    right: -48px;
  }
}

.workshops {
  width: 100%;
  position: relative;
  padding-top: 82px;
  gap: 2rem;
}
.workshops-image {
  padding-top: 2rem;
  width: 35%;
  position: relative;
  top: 0;
  left: -18vw;
}
.workshops-image img {
  width: 100%;
}
.workshops-desc {
  padding-top: 5rem;
}
.workshops-desc h2 {
  font-size: 2.25rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #6b2ea6;
  margin: 1rem 0;
}
.workshops-desc-list {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.workshops-desc-list dt {
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 600;
  text-transform: uppercase;
  color: #1a0045;
}
.workshops-desc h3 {
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #6b2ea6;
  letter-spacing: 3px;
}
.workshops-desc .imageRight {
  width: 100%;
  position: relative;
  bottom: -6rem;
  right: -400px;
  transform: rotate(90deg);
}
.workshops-desc .imageRight img {
  width: 100%;
}
.workshops::before {
  width: 100%;
  height: 52px;
  content: "";
  background: url("../assets/nina-vector.webp") no-repeat;
  background-size: cover;
  position: absolute;
  z-index: 4;
  left: 0;
  top: -2px;
}
@media screen and (min-width: 1440px) {
  .workshops-desc h2 {
    font-size: 3rem;
  }
  .workshops-desc-list dt {
    font-size: 1.5rem;
  }
  .workshops-desc .imageRight {
    right: -565px;
  }
}
@media screen and (max-width: 480px) {
  .workshops {
    flex-direction: column;
  }
  .workshops-image {
    width: 70%;
    padding-top: 1rem;
    left: 0;
  }
  .workshops-desc {
    padding: 2rem 7.5vw;
    padding-bottom: 0;
  }
  .workshops-desc h2 {
    font-size: 1.75rem;
  }
  .workshops-desc-list {
    gap: 1rem;
  }
  .workshops-desc-list dt {
    font-size: 0.875rem;
  }
  .workshops-desc h3 {
    font-size: 1.25rem;
    letter-spacing: 2px;
  }
}

.contact-title {
  margin-top: 2rem;
}
.contact-title h2 {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 300;
  color: #6b2ea6;
  text-transform: uppercase;
}
.contact-form {
  width: 100%;
  gap: 2rem;
}
.contact-form aside {
  width: 50%;
}
.contact-form aside fieldset {
  display: flex;
  gap: 0.25rem;
  flex-direction: column;
  margin: 1rem 0;
}
.contact-form aside fieldset label {
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 600;
  color: #6b2ea6;
  text-transform: uppercase;
}
.contact-form aside fieldset input, .contact-form aside fieldset textarea {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #00fad2;
  font-size: 1rem;
  font-weight: 400;
  color: #6b2ea6;
}
.contact-form aside fieldset textarea {
  height: 208px;
}
.contact-form aside .btn {
  cursor: pointer;
}
.contact-form aside .btn.disabled {
  cursor: not-allowed;
}
@media screen and (max-width: 480px) {
  .contact-form {
    flex-direction: column;
    gap: 0;
  }
  .contact-form aside {
    width: 100%;
  }
}/*# sourceMappingURL=styles.css.map */