* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Lato", sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: #ffffff;
  background-color: #4a0042;
}

.container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero {
  flex: 1;
  background: linear-gradient(135deg, #d80068 0%, #4a0042 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
  text-align: center;
}
.hero__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}
.hero__brand {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.hero__logo-img {
  max-width: 320px;
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.hero__message h2 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 4px;
  margin-bottom: 0.5rem;
}
.hero__message p {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 6px;
  opacity: 0.9;
}

.footer {
  background-color: #ffffff;
  color: #2b2b2b;
  padding: 2.5rem 0;
}
.footer__container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer__container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
@media (min-width: 768px) {
  .footer__col--right {
    margin-left: auto;
    text-align: left;
  }
}
.footer__title {
  color: #d80068;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
}
.footer__content--grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 480px) {
  .footer__content--grid {
    grid-template-columns: 1fr 1fr;
  }
}
.footer__item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.95rem;
}
.footer__item strong {
  color: #2b2b2b;
  font-weight: 700;
}
.footer__item span {
  color: #666666;
}
.footer__item a {
  color: #666666;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__item a:hover {
  color: #d80068;
}
