:root {
  --ge-color-white: #ffffff;
  --ge-color-black: #000000;
  --ge-bg-white: var(--ge-color-white);
  --ge-bg-black: var(--ge-color-black);
  --ge-text-white: var(--ge-color-white);
  --ge-text-black: var(--ge-color-black);
  --ge-btn-border-color: var(--ge-color-black);
  --ge-hero-title-size: 2.7rem;
}

@media screen and (min-width: 996px) {
  :root {
    --ge-hero-title-size: 60px;
  }
}
.ge-container {
  width: 100%;
  max-width: 1312px;
  padding-inline: 12px;
  margin-inline: auto;
}

.ge-icon-28 {
  width: 28px;
  height: 28px;
}

.ge-btn {
  text-align: center;
  padding: 10px 14px;
  border-radius: 9999px;
}

.ge-btn--outline {
  border: 3px solid var(--ge-btn-border-color);
}

.ge-hero {
  overflow: hidden;
  position: relative;
  isolation: isolate;
  padding: 40px 20px;
}

.ge-hero_bg-section {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ge-hero_bg-section img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
}

.ge-hero_bg-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(to bottom, rgba(47, 8, 27, 0.6) 30%, rgba(142, 33, 87, 0.3) 100%);
}

.ge-hero .ge-container {
  position: relative;
  padding-inline: 0;
  z-index: 2;
}

.ge-hero__title,
.ge-hero__description {
  color: var(--ge-text-white);
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
}

.ge-hero .ge-hero__title {
  font-size: var(--ge-hero-title-size);
  margin-top: 0;
}

.ge-hero__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.ge-hero__icon svg {
  fill: #ffffff;
}

.ge-hero__icon--line {
  --color:#4CAF50;
  background-color: var(--color);
}

.ge-hero__icon--phone {
  --color:#1A56DB;
  background-color: var(--color);
}

.ge-hero__icon--instagram {
  --color:#CC2E72;
  background-color: var(--color);
}

.ge-hero__btn {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  gap: 4px;
  font-weight: 600;
  background-color: var(--ge-bg-white);
  transition: all 0.4s ease;
}
.ge-hero__btn:hover {
  transition: all 0.4s ease;
  transform: translatey(-7px);
}

.ge-hero__btn--line {
  --color:#2d7e30;
  color: var(--color);
  border-color: var(--color);
}

.ge-hero__btn--phone {
  --color:#1A56DB;
  color: var(--color);
  border-color: var(--color);
}

.ge-hero__btn--instagram {
  --color:#CC2E72;
  color: var(--color);
  border-color: var(--color);
}

.ge-hero__btn-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media screen and (min-width: 768px) {
  .ge-hero {
    min-height: 500px;
    display: flex;
    align-items: flex-end;
  }
  .ge-hero__description {
    font-size: 24px;
    max-width: 900px;
  }
  .ge-hero__btn-group {
    flex-direction: row;
  }
  .ge-hero__btn {
    width: auto;
  }
}
@media screen and (min-width: 996px) {
  .ge-hero .ge-hero__title {
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 1200px) {
  .ge-hero_bg-section::before {
    background-image: linear-gradient(to right, rgba(47, 8, 27, 0.4) 40%, rgba(142, 33, 87, 0.2) 90%);
  }
}