:root {
  --primary: #1b6a9e;
}

body {
  padding: 0;
  margin: 0;
  background: #e6e6e6;
  font-family: 'Gabarito', sans-serif;
}

a {
  text-decoration: none;
  color: black;
}

.container {
  max-width: 1280px;
  padding: 40px 32px;
  margin: auto;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

header p {
  margin: 0;
}

.hero {
  background: linear-gradient(to bottom,  #2984c2 0%,#124c73 100%);
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
  margin-bottom: 42px;
}


.logo {
  width: 200px;
  height: auto;
}

.estadio {
  transform: scale(140%) translateX(-58px);
  border-radius: 12px;
  filter: drop-shadow(0px 0px 19px #1c6ea4);
}

h1 {
  color: var(--primary);
  font-size: 52px;
  margin: 32px auto 60px;
  text-align: center;
  line-height: 1;
}

h2 {
  color: white;
  margin: 0;
  font-size: 72px;
  max-width: 440px;
}

h3 {
  text-transform: uppercase;
  margin: 20px 0 4px;
  color: white;
  opacity: 0.9;
  letter-spacing: 1px;
  font-size: 14px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 20px;
}

h5 {
  font-family: 'Gabarito', sans-serif;
  font-size: 20px;
  margin: 0px;
}

.photos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.photos img {
  width: 100%;
  height: auto;
}

footer .container {
  border-top: 1px solid rgb(202, 202, 202);
}

footer p {
  margin: 0;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  color: rgb(41, 41, 41);
}

.contact p {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact span {
  font-size: 16px;
}


@media (max-width: 1180px) {
  .hero .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
  }

  h2 {
    max-width: 100%;
  }
  
  .estadio {
    transform: scale(140%) translateX(0);
    border-radius: 12px;
    filter: drop-shadow(0px 0px 19px #1c6ea4);
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
  }

  .contact {
    text-align: center;
    align-items: center;
  }

  .grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .photos {
    flex-direction: column;
  }

  .photos div {
    width: 100%;
  }

  h1 {
    font-size: 36px;
    text-align: left;
  }

  h2 {
    font-size: 52px;
    line-height: 1;
    margin-top: 8px;
  }
}