/* Hero Section */
.hero-section {
  position: relative;
  height: 85vh;
  width: 100%;
  overflow: hidden;
}

.hero-background {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("../imgs/heroimg\ \(2\).jpeg");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  z-index: 0;
}
@media (max-width: 640px) {
  .hero-section {
    height: 70vh;
  }

  .hero-background {
    background-image: url("../imgs/hero-mobile2.jpeg");
    object-fit: contain;

    max-height: 70vh;
    max-width: 100%;
  }
}

.hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: fixed;
  inset: 0;
  z-index: 0;
  height: 100%;
  width: 100%;

  pointer-events: none;
}

.hero-text-container {
  padding-left: 1rem;
  padding-right: 1rem;

  margin: 10rem 2rem 0 2rem;

  max-width: 650px;
}

@media (min-width: 768px) {
  .hero-content {
    display: flex;
    align-items: center;
  }
  .hero-text-container {
    padding-left: 3rem;
    padding-right: 3rem;

    margin: 0;
  }
}

.hero-title {
  font-size: 1.875rem;
  font-family: "Playfair Display", serif;
  color: white;
  line-height: 1.2;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

#second_title_span {
  color: var(--confeitudo-red);
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }

  #second_title_span {
    color: var(--confeitudo-red);
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-curves {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 33.333333%;
  height: 33.333333%;
  pointer-events: none;
  z-index: 0;
}

.curves-svg {
  width: 100%;
  height: 100%;
  color: var(--confeitudo-red);
  opacity: 0.9;
}

.hero-bottom-line {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0.5rem;
  background-color: var(--confeitudo-red);
  z-index: 0;
}
/* Content Wrapper */
.content-wrapper {
  position: relative;
  z-index: 10;
  background-color: white;
}
