/*=============== VARIABLES ===============*/
:root {
  --hue-color: 220;
  --first-color: hsl(var(--hue-color), 69%, 61%);
  --first-color-second: hsl(var(--hue-color), 69%, 61%);
  --first-color-alt: hsl(var(--hue-color), 57%, 53%);
  --first-color-lighter: hsl(var(--hue-color), 92%, 85%);
  --title-color: hsl(var(--hue-color), 8%, 15%);
  --text-color: hsl(var(--hue-color), 8%, 45%);
  --text-color-light: hsl(var(--hue-color), 8%, 65%);
  --input-color: hsl(var(--hue-color), 70%, 96%);
  --body-color: hsl(var(--hue-color), 60%, 99%);
  --container-color: #fff;
  --scroll-bar-color: hsl(var(--hue-color), 12%, 90%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 80%);

  --body-font: "Inter", sans-serif;
  --mono-font: "JetBrains Mono", monospace;

  --big-font-size: 3rem;
  --h1-font-size: 2.25rem;
  --h2-font-size: 1.5rem;
  --h3-font-size: 1.25rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --smaller-font-size: 0.813rem;

  --font-medium: 500;
  --font-semi-bold: 600;

  --mb-0-25: 0.25rem;
  --mb-0-5: 0.5rem;
  --mb-0-75: 0.75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3: 3rem;

  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
}

/* Dark Theme */
body.dark-theme {
  --first-color-second: hsl(var(--hue-color), 30%, 8%);
  --title-color: hsl(var(--hue-color), 8%, 95%);
  --text-color: hsl(var(--hue-color), 8%, 75%);
  --input-color: hsl(var(--hue-color), 29%, 16%);
  --body-color: hsl(var(--hue-color), 28%, 12%);
  --container-color: hsl(var(--hue-color), 29%, 16%);
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0 0 var(--header-height) 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  transition: 0.3s;
}

h1,
h2,
h3,
h4 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.section {
  padding: 6rem 0 2rem;
}

.section__title {
  font-size: var(--h1-font-size);
  color: var(--title-color);
  text-align: center;
  margin-bottom: var(--mb-0-5);
}

.section__subtitle {
  display: block;
  font-size: var(--small-font-size);
  margin-bottom: var(--mb-3);
  text-align: center;
  color: var(--text-color-light);
}

.container {
  max-width: 968px;
  margin-left: var(--mb-1-5);
  margin-right: var(--mb-1-5);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  column-gap: 0.5rem;
  background-color: var(--first-color);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: var(--font-medium);
  transition: 0.3s;
  border: none;
  cursor: pointer;
}

.button:hover {
  background-color: var(--first-color-alt);
  transform: translateY(-2px);
}

.button--ghost {
  background-color: transparent;
  border: 2px solid var(--first-color);
  color: var(--first-color);
}

.button--ghost:hover {
  background-color: var(--first-color);
  color: #fff;
}

/*=============== HEADER ===============*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: var(--body-color);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.nav {
  height: calc(var(--header-height) + 1.5rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 1rem;
  height: 4rem;
}

.nav__logo {
  font-family: var(--mono-font);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__logo-bracket {
  color: var(--first-color);
}

.nav__list {
  display: flex;
  column-gap: 2rem;
}

.nav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: var(--small-font-size);
  color: var(--title-color);
  font-weight: var(--font-medium);
  transition: 0.3s;
  position: relative;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--first-color);
  transition: 0.3s;
}

.nav__link:hover::after,
.nav__link.active-link::after {
  width: 100%;
}

.nav__close,
.nav__toggle {
  display: none;
}

/*=============== HERO ===============*/
.hero {
  padding-top: 8rem;
  min-height: 100vh;
}

.hero__container {
  row-gap: 3rem;
  align-items: center;
}

.hero__content {
  order: 2;
}

.hero__subtitle {
  display: block;
  font-size: var(--small-font-size);
  color: var(--first-color);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-0-5);
  font-family: var(--mono-font);
}

.hero__title {
  font-size: var(--big-font-size);
  margin-bottom: var(--mb-0-5);
  line-height: 1.2;
}

.hero__title-highlight {
  color: var(--first-color);
}

.hero__role {
  font-size: var(--h2-font-size);
  color: var(--text-color);
  margin-bottom: var(--mb-1);
  font-weight: var(--font-medium);
  min-height: 2.5rem;
}

.typing-text {
  color: var(--first-color);
}

.cursor {
  animation: blink 1s infinite;
  color: var(--first-color);
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

.hero__description {
  margin-bottom: var(--mb-2);
  line-height: 1.6;
  font-size: 1.1rem;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: var(--mb-3);
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: var(--mb-2);
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  display: block;
  font-size: 2rem;
  font-weight: var(--font-semi-bold);
  color: var(--first-color);
  font-family: var(--mono-font);
}

.hero__stat-label {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

.hero__img {
  order: 1;
  position: relative;
}

.hero__blob {
  position: relative;
  width: 320px;
  height: 320px;
  background: linear-gradient(
    135deg,
    var(--first-color) 0%,
    var(--first-color-alt) 100%
  );
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hero__code-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  padding: 1rem;
  font-family: var(--mono-font);
  font-size: 0.7rem;
  color: #fff;
  overflow: hidden;
}

.hero__code-bg pre {
  margin: 0;
}

.hero__image-wrapper {
  position: relative;
  z-index: 2;
  width: 200px;
  height: 200px;
  background: var(--container-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero__image-placeholder {
  font-size: 5rem;
  color: var(--first-color);
}

.hero__scroll {
  display: none;
}

/*=============== ABOUT ===============*/
.about__container {
  row-gap: 3rem;
}

.about__description {
  margin-bottom: var(--mb-1-5);
  line-height: 1.8;
  text-align: justify;
}

.about__info {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--mb-2-5);
  gap: 1rem;
  flex-wrap: wrap;
}

.about__box {
  background-color: var(--container-color);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  flex: 1;
  min-width: 140px;
  transition: 0.3s;
}

.about__box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about__icon {
  font-size: 1.5rem;
  color: var(--first-color);
  margin-bottom: var(--mb-0-5);
}

.about__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-25);
}

.about__subtitle {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

.about__education {
  background-color: var(--container-color);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.about__education-title,
.about__certifications-title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1-5);
  color: var(--title-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.about__education-item {
  margin-bottom: var(--mb-1-5);
  padding-bottom: var(--mb-1-5);
  border-bottom: 1px solid var(--input-color);
}

.about__education-item:last-child {
  border-bottom: none;
  margin-bottom: var(--mb-2);
}

.about__education-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--mb-0-25);
}

.about__education-degree {
  font-size: var(--normal-font-size);
  color: var(--first-color);
}

.about__education-year {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  font-family: var(--mono-font);
  background: var(--input-color);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.about__education-field {
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-0-25);
}

.about__education-institution {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

.about__certifications-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.about__certification-tag {
  background-color: var(--first-color-lighter);
  color: var(--first-color-alt);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: var(--small-font-size);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/*=============== SKILLS ===============*/
.skills__container {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.skills__card {
  background-color: var(--container-color);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 2rem;
  border-radius: 1rem;
  transition: 0.3s;
}

.skills__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.skills__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: var(--mb-1-5);
}

.skills__icon {
  font-size: 2rem;
  color: var(--first-color);
}

.skills__title {
  font-size: var(--h3-font-size);
}

.skills__item {
  margin-bottom: var(--mb-1);
}

.skills__name {
  display: block;
  font-size: var(--small-font-size);
  margin-bottom: var(--mb-0-25);
  font-weight: var(--font-medium);
}

.skills__bar {
  height: 6px;
  background-color: var(--input-color);
  border-radius: 3px;
  overflow: hidden;
}

.skills__progress {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--first-color),
    var(--first-color-alt)
  );
  border-radius: 3px;
  transition: width 1s ease;
}

.skills__additional {
  margin-top: var(--mb-3);
  text-align: center;
}

.skills__additional-title {
  margin-bottom: var(--mb-1-5);
  font-size: var(--h3-font-size);
}

.skills__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.skills__tag {
  background-color: var(--container-color);
  border: 1px solid var(--first-color);
  color: var(--first-color);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: var(--small-font-size);
  transition: 0.3s;
}

.skills__tag:hover {
  background-color: var(--first-color);
  color: #fff;
}

/*=============== EXPERIENCE ===============*/
.experience__timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.experience__timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--first-color),
    var(--first-color-alt)
  );
}

.experience__item {
  position: relative;
  padding-left: 60px;
  margin-bottom: var(--mb-3);
}

.experience__item--current .experience__marker {
  background-color: var(--first-color);
  box-shadow: 0 0 0 4px var(--first-color-lighter);
}

.experience__marker {
  position: absolute;
  left: 11px;
  top: 5px;
  width: 20px;
  height: 20px;
  background-color: var(--container-color);
  border: 3px solid var(--first-color);
  border-radius: 50%;
  z-index: 1;
}

.experience__card {
  background-color: var(--container-color);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  transition: 0.3s;
}

.experience__card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.experience__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--mb-1);
  flex-wrap: wrap;
  gap: 1rem;
}

.experience__company {
  font-size: var(--h3-font-size);
  color: var(--first-color);
  margin-bottom: var(--mb-0-25);
}

.experience__location {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.experience__period {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.experience__badge {
  background-color: var(--first-color);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
}

.experience__role {
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-1);
  color: var(--title-color);
}

.experience__description {
  margin-bottom: var(--mb-1);
  line-height: 1.6;
}

.experience__highlights {
  margin-bottom: var(--mb-1);
}

.experience__highlights li {
  margin-bottom: var(--mb-0-5);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: var(--small-font-size);
}

.experience__highlights i {
  color: var(--first-color);
  margin-top: 0.25rem;
}

.experience__projects {
  background-color: var(--input-color);
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: var(--mb-1);
}

.experience__projects-title {
  font-size: var(--small-font-size);
  margin-bottom: var(--mb-0-5);
  color: var(--title-color);
}

.experience__project {
  font-size: var(--small-font-size);
  margin-bottom: var(--mb-0-5);
  padding-left: 1rem;
  border-left: 2px solid var(--first-color);
}

.experience__technologies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: var(--mb-1);
}

.experience__tech {
  background-color: var(--first-color-lighter);
  color: var(--first-color-alt);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: var(--smaller-font-size);
  font-family: var(--mono-font);
}

/*=============== CONTACT ===============*/
.contact__container {
  row-gap: 3rem;
}

.contact__info {
  background-color: var(--container-color);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.contact__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1);
}

.contact__description {
  margin-bottom: var(--mb-2);
  line-height: 1.6;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact__icon {
  font-size: 1.5rem;
  color: var(--first-color);
  margin-top: 0.25rem;
}

.contact__label {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  margin-bottom: var(--mb-0-25);
}

.contact__link {
  color: var(--title-color);
  font-weight: var(--font-medium);
  transition: 0.3s;
}

.contact__link:hover {
  color: var(--first-color);
}

.contact__text {
  color: var(--title-color);
  font-weight: var(--font-medium);
}

.contact__form {
  background-color: var(--container-color);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.contact__inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: var(--mb-1-5);
}

.contact__content {
  margin-bottom: var(--mb-1-5);
}

.contact__label {
  display: block;
  font-size: var(--small-font-size);
  margin-bottom: var(--mb-0-5);
  color: var(--title-color);
  font-weight: var(--font-medium);
}

.contact__input {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--input-color);
  border-radius: 0.5rem;
  background-color: var(--input-color);
  color: var(--text-color);
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  transition: 0.3s;
}

.contact__input:focus {
  outline: none;
  border-color: var(--first-color);
  background-color: var(--container-color);
}

textarea.contact__input {
  resize: vertical;
  min-height: 150px;
}

/*=============== FOOTER ===============*/
.footer {
  background-color: var(--first-color-second);
  padding-top: 3rem;
  padding-bottom: 1rem;
  margin-top: 4rem;
}

.footer__container {
  color: #fff;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--mb-2);
  flex-wrap: wrap;
  gap: 2rem;
}

.footer__logo {
  font-family: var(--mono-font);
  font-size: 1.5rem;
  font-weight: var(--font-semi-bold);
}

.footer__description {
  margin-top: var(--mb-0-5);
  color: rgba(255, 255, 255, 0.8);
  max-width: 300px;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  transition: 0.3s;
}

.footer__social-link:hover {
  background-color: var(--first-color);
  transform: translateY(-3px);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: var(--small-font-size);
  color: rgba(255, 255, 255, 0.6);
}

.footer__credits i {
  color: #ff6b6b;
}

/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  right: 1.5rem;
  bottom: -20%;
  background-color: var(--first-color);
  opacity: 0.8;
  padding: 0.5rem;
  border-radius: 0.5rem;
  z-index: var(--z-tooltip);
  transition: 0.4s;
  color: #fff;
  font-size: 1.25rem;
}

.scrollup:hover {
  background-color: var(--first-color-alt);
  opacity: 1;
}

.show-scroll {
  bottom: 5rem;
}

/*=============== RESPONSIVE ===============*/
@media screen and (max-width: 968px) {
  :root {
    --big-font-size: 2.5rem;
    --h1-font-size: 1.8rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1.125rem;
  }

  .container {
    margin-left: var(--mb-1);
    margin-right: var(--mb-1);
  }

  .nav__menu {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: var(--body-color);
    padding: 2rem 1.5rem 4rem;
    box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.15);
    border-radius: 1.5rem 1.5rem 0 0;
    transition: 0.3s;
    z-index: var(--z-fixed);
  }

  .nav__menu.show-menu {
    bottom: 0;
  }

  .nav__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .nav__icon {
    font-size: 1.2rem;
  }

  .nav__close {
    position: absolute;
    right: 1.3rem;
    bottom: 0.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--first-color);
  }

  .nav__close:hover {
    color: var(--first-color-alt);
  }

  .nav__toggle {
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--title-color);
    display: block;
  }

  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__content {
    order: 2;
  }

  .hero__img {
    order: 1;
    justify-self: center;
  }

  .hero__blob {
    width: 250px;
    height: 250px;
  }

  .hero__buttons {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
  }

  .about__info {
    justify-content: center;
  }

  .contact__inputs {
    grid-template-columns: 1fr;
  }

  .experience__timeline::before {
    left: 15px;
  }

  .experience__item {
    padding-left: 50px;
  }

  .experience__marker {
    left: 6px;
  }

  .experience__header {
    flex-direction: column;
  }
}

@media screen and (min-width: 768px) {
  .hero__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__container {
    grid-template-columns: 1.5fr 1fr;
  }

  .contact__container {
    grid-template-columns: 1fr 1.5fr;
  }

  .nav__close,
  .nav__toggle {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }
}
/*=============== HERO IMAGE ===============*/
.hero__image {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid var(--container-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.hero__image:hover {
  transform: scale(1.05);
}

/* Ajuste no hero__blob para acomodar a imagem */
.hero__blob {
  width: 320px;
  height: 320px;
  background: linear-gradient(
    135deg,
    var(--first-color) 0%,
    var(--first-color-alt) 100%
  );
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  position: relative;
}

/* Efeito de pulso sutil no blob */
.hero__blob::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  opacity: 0.3;
  animation: pulse 3s ease-in-out infinite;
  z-index: 1;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.1;
  }
}

/* Responsivo */
@media screen and (max-width: 576px) {
  .hero__blob {
    width: 260px;
    height: 260px;
  }
  .hero__image {
    width: 220px;
    height: 220px;
  }
}
