* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #fddb3a;
  --bg-secondary: #41444b;
  --bg-default: #52575d;
}

.header-rakara {
  background: var(--bg-secondary);
  color: #fff;
  padding-block: 0.6rem;
}

.header-rakara .container {
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
}

.header-rakara .container .logo span {
  color: var(--bg-primary);
}

.header-rakara .container nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.header-rakara .container nav ul li a {
  color: #fff;
  text-decoration: none;
}

/* BANNER */

.slider {
  width: 90% !important;
}

#banner {
  background-position: center;
  background-size: cover;
  height: 25vh;

  display: flex;
  justify-content: center;
  align-items: center;

  width: 100% !important;
  margin: 1rem auto;

  border-radius: 0.5rem;
}

#banner .title {
  height: 100%;
  width: 90%;
  margin: 0 auto;
  color: #fff;

  display: flex;
  justify-content: center;
  align-items: center;
}

#banner .title h1 {
  font-size: 1.3rem;
  text-transform: uppercase;
  font-weight: 600;
}

#banner .title span {
  color: var(--bg-primary);
}

/* MISSÃO */
#about {
  padding-block: 2.5rem;
}

#about .container .title {
  margin-bottom: 2rem;
}

#about .container .items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

#about .container .items .item {
  height: 45vh;
  max-width: 100% !important;
  border-radius: 0.5em;

  padding: 1rem;
  color: #fff;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

#about .container .items .item:nth-child(1) {
  background-image: linear-gradient(#000000d0, #ffffff6b),
    url(../image/rakara/1.svg);
}
#about .container .items .item:nth-child(2) {
  background-image: linear-gradient(#000000d0, #ffffff6b),
    url(../image/rakara/2.svg);
}
#about .container .items .item:nth-child(3) {
  background-image: linear-gradient(#000000d0, #ffffff6b),
    url(../image/rakara/3.svg);
}
#about .container .items .item:nth-child(4) {
  background-image: linear-gradient(#000000d0, #ffffff6b),
    url(../image/rakara/4.svg);
}

#about .container .items .item h3 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

#about .container .items .item p {
  font-size: 0.7rem;
}

/* SERVICES */

#sobreNos {
  padding-block: 4rem;
  background: #f4f4f4;
}

#sobreNos .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

#sobreNos .container .item {
  background: #fff;
  padding: 1rem;

  border-radius: 0.5rem;
}

#sobreNos .container .item a {
  display: flex;
  gap: 1rem !important;
  margin: 0.5rem auto;

  font-size: 0.85rem;
  text-decoration: none;
  color: var(--bg-primary);
}

#sobreNos .container .item h3 {
  font-size: 4rem;
  margin-bottom: 0.5rem;
}

#sobreNos .container .item:nth-child(1) {
  background: none;
}

#sobreNos .container .item:nth-child(1) h3 {
  font-size: 2.3rem;
}

#sobreNos .container .item h4 {
  font-size: 1.5rem;
  color: var(--bg-default);
}

#sobreNos .container .item p {
  margin-top: 0.5rem;
}

/* BANNER */
.banner-section {
  background: var(--bg-default);
  height: 35vh;

  text-align: center;
}

.banner-section .container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;

  color: #fff;
}
/* SERVICES */
#services {
  padding-block: 4rem;
}

#services .container .title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  margin-bottom: 3rem;
}

#services .container .title h3 {
  color: var(--bg-primary);
  font-size: 0.8rem;
}

#services .container .services-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

#services .container .services-items .item-secundario .banner-service {
  background-image: url(../image/rakara/services.svg);
  background-size: cover;
  height: 55vh;

  border-radius: 0.5rem;
}

#services .container .services-items .item-primario .items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

#services .container .services-items .item-primario .items .item {
  background: #f3f3f3;
  border-radius: 0.5rem;

  padding: 1rem;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}

#services .container .services-items .item-primario .items .item p {
  font-size: 0.875rem;
}

/* CONTACTOS */
#contactos {
  margin-block: 4rem;
}

#contactos .container iframe {
  width: 100%;
  height: 30vh;

  border-radius: 0.5rem;
}

footer {
  background: var(--bg-secondary);
}

footer .container .footer-items {
  justify-content: center;
  align-items: center;

  text-align: center;
}

footer .copyright {
  padding-block: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

footer .copyright .container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-rakara .lang {
  display: none;
}

@media (width> 1024px) {
  .header-rakara {
    height: 12vh;
  }

  .header-rakara .lang {
    background: var(--bg-primary);
    display: flex;
    color: #000 !important;
  }

  .header-rakara .container {
    display: flex;
    justify-content: space-between;
    width: 75% !important;

    height: 100%;
    align-items: center;
  }

  .header-rakara .container nav {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 1rem;
  }

  .header-rakara .container nav .tradutor {
    margin-bottom: -0.3rem;
  }

  .header-rakara .container nav ul {
    gap: 2rem;
  }

  .slider {
    width: 75% !important;
  }

  #banner {
    height: 60vh;
    width: 100% !important;
    background-position: center;
    background-size: cover !important;
    background-repeat: no-repeat;
    margin-top: 2rem;

    border-radius: 0.5rem !important;
  }

  #banner .title {
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  #banner .title h1 {
    font-size: 2.5rem;
    width: 600px;
  }

  #about .container .items {
    grid-template-columns: repeat(4, 1fr);
  }

  #about .container .items .item {
    height: 42vh;
  }

  /* SOBRE NOS */
  #sobreNos .container {
    grid-template-columns: repeat(3, 1fr);
  }

  #sobreNos .container .item h3 {
    font-size: 3rem;
  }

  #sobreNos .container .item h4 {
    font-size: 1.2rem !important;
  }

  /* SERVICES  */
  #services .container .services-items {
    grid-template-columns: 1fr 30% 1fr;
  }

  #services .container .services-items .item-secundario .banner-service {
    margin-top: 0.4rem;
  }

  /* CONTACTOS */
  #contactos .container iframe {
    height: 50vh;
  }
}
