:root {
  --azul-suave: #c7d7e8;
  --azul-medio: #527ea3;
  --azul-escuro: #1a334d;
  --cinza-claro: #f5f5f5;
  --branco: #ffffff;
  --azul-escuro: #0a1a3c;
  --azul-claro: #1e3a8a;

  --azul-surface: rgb(29, 83, 121);
  --azul-logo: rgb(16, 63, 97);
  --azul-fundo: rgb(10, 53, 90);

  --elevation: 0px 12px 15px rgba(6, 6, 6, .3);
  --elevation2: 0 4px 12px rgba(0, 0, 0, 0.7);
  --elevation3: 0 4px 8px rgba(0, 0, 0, 0.3);

  --gp: linear-gradient(45deg, var(--azul-surface)0%, var(--azul-logo)30%, var(--azul-fundo));
}

* {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  background-color: black;
}

a p {
  word-break: keep-all;
  text-overflow: ellipsis;  
  white-space: nowrap;
}

body {
  position: relative;
  background: linear-gradient(white, var(--cinza-claro));
  background-repeat: no-repeat;
  background-size: cover;
  overflow-y: scroll;
  overflow-x: hidden;
}

.lng {
  position: absolute;
  top: 4px;
  right: 4px;
}

.h-c {
  position: relative;

  z-index: 0;
  width: 100%;
  height: 600px;
}

.n-c {
  position: relative;
  z-index: 0;
  width: 100%;
}


.bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 22;
  filter: blur(0.01rem) brightness(1.2);
}

.mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 30;
}

.header {
  display: flex;
  flex-direction: column;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

main {
  min-height: calc(100vh - 224px);
}

.navbar-c{
  position: absolute;
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* Navbar */
.navbar {
  
  padding: 10px 60px;
  max-height: 100px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--branco);
  background: linear-gradient(rgba(9, 9, 9, .9), rgba(9, 9, 9, .6));
  z-index: 100;

  font-weight: 400;
  text-shadow: 0px 4px 6px black;
  color: whitesmoke !important;
  font-size: 1.4rem !important;
  -webkit-user-select: none;
  user-select: none;
}

.nav-d {
  height: 2px;
  width: 75%;
  justify-self: center;
  align-self: center;
  background: linear-gradient(90deg, transparent, rgba(245, 228, 145, 1), transparent);
  z-index: 100;
}

.logo {
  height: 80px;
  width: 156px;
  object-fit: cover;
  filter: drop-shadow(0px 4px 6px black);
}

.nav-links {

  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--branco);
  font-weight: 500;
  text-shadow: 0px 1px 4px black;
  transition: 0.3s;
  cursor: pointer;
}

.nav-links a:hover {
  color: white;
  text-shadow: 0px 1px 4px rgba(245, 228, 145, 1);
}

.lang-p {
  align-items: center;
  position: relative;
  z-index: 102;
  cursor: pointer;
  background-color: transparent;
}

.lang-p img {
  border-radius: 4px;
  background-color: transparent;
  border: 1px solid transparent;
}

.lang-c {
  width: 32px;
  display: flex;
  align-content: center;
  border-radius: 8px;
  align-items: center;
  justify-content: space-between;
  transition: all .3s ease;
}

.lg-i-sh{
  height: 74px !important;  
}

.lg-c-op{
  opacity: .6;
}

.lang-i {
  display: block;
  width: 100%;
  height: 0px;
  margin: 0px;
  position: absolute;
  border-radius: 8px;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2);
  transition: all .6s ease;
  overflow: hidden;
}

.lang-i div {
  margin-top: 4px;
  max-height: 200px;
  z-index: 104;
  transition: all .6s ease;
}

.lang-p img:hover {
  border: 1px solid lightgrey;
}

.hero {
  color: var(--branco);
  text-align: center;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10%;
  padding-top: 100px;
  z-index: 80;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}



.bg-r {
  background: url('/assets/4.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}

.btn {
  background-color: var(--azul-medio);
  color: var(--branco);
  padding: 12px 28px;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn:hover {
  background-color: var(--azul-escuro);
}



/* Sobre */
section {
  padding: 100px 40px;
  text-align: center;
}

.promo,
.lp {
  background: linear-gradient(120deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, .6));
}

.promo .itens {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.promo span {
  color: rgb(219, 143, 0);
  text-shadow: 0px 1px 2px yellow;
  font-size: 1.7rem;
}

.promo h2 {
  font-size: 1.6rem;
  color: #444;
}

.promo p {
  max-width: 800px;
  margin: 20px auto;
  color: #444;
  line-height: 2.0;
  font-size: 1.3rem;
}

.qs {
  padding: 100px 80px;
}

.cg {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
}

.c-q {
  max-width: 290px;
  min-width: 270px;
  min-height: 200px;
  max-height: 200px;
  background: linear-gradient(120deg, rgb(250, 250, 252), rgb(252, 252, 255));
  border-radius: 8px;
  transition: 0.3s;
  padding: 4px;
  /* color: black; */
  box-shadow: var(--elevation);
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
}


.c-q:hover {
  border: 1px solid rgba(255, 174, 0, .6);
  box-shadow: 0 4px 8px rgba(255, 174, 0, .3);
}

.c-q h3 {
  /* color: whitesmoke; */
  text-shadow: 0px 1px 2px rgba(3, 3, 3, .4);
  margin-bottom: 10px;
  font-weight: 400;
  margin-top: 32px;
}

.c-q p {
  text-shadow: 0px 1px 2px rgba(3, 3, 3, .1);
  margin-top: 32px;
}

/* Pedras */
.lp-g {
  display: grid;
  grid-template-columns: auto;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-top: 40px;
}

.pc {
  width: 840px;
  padding: 22px;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  border-top-left-radius: 18px;
  border-bottom-right-radius: 18px;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(255, 255, 255, .01), rgba(255, 255, 255, 1), rgba(255, 255, 255, .1));
  box-shadow: var(--elevation);
  transition: 0.3s;
  cursor: pointer;
}

.pc .imgs {
  min-width: 374px;
  min-height: 374px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  position: relative;
}

.pb {
  min-width: 374px;
  display: flex;
  align-items: center;
  padding: 22px;
}

.pc img {
  width: 180px;
  height: 180px;
  aspect-ratio: 4/4;
  object-fit: cover;
  transition: all .6s ease-in-out;
  box-shadow: var(--elevation3);
  border-radius: 8px;
}

.pc img:hover {
  transform: translateY(-1px);
}

.pc h2 {
  padding: 15px;
  font-weight: 500;
  color: var(--azul-escuro);
}

.pd {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  color: #333;
  font-weight: 400;
  text-align: left;
  line-height: 2.4rem;
  font-size: 1.4rem;
}

.pd span {
  text-shadow: 0px 1px 2px rgba(3, 3, 3, .4);
}

footer {
  background: var(--gp);
  color: var(--branco);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.9rem;
  min-height: 224px;
}

footer a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  text-shadow: 0px 1px 2px rgba(10, 10, 120, .6);
}

footer .f-c {
  display: flex;
  width: 90%;

  justify-content: space-between;
  align-items: center;
  margin: 32px 0px;
  justify-self: center;
}

footer .contact {
  display: flex;
  flex-direction: column;
}

footer .logo {
  height: 80px;
  width: 156px;
  object-fit: cover;
  filter: drop-shadow(0px 2px 4px rgba(6,6,6,.6));
}

footer .f-d {
  height: 2px;
  width: 75%;
  justify-self: center;
  align-self: center;
  background: linear-gradient(90deg, transparent, rgba(140, 140, 140, .6), transparent);
  z-index: 100;
  margin: 12px 0px;
}

footer .cc{
  display: flex;
  gap: 32px;
}

.mgt {
  margin-top: 32px;
}

.cta-t {
  text-align: center;
  font-size: 1.4rem;
}

footer p {
  color: white;
  font-weight: 500;
  text-shadow: 0px 1px 2px rgba(10, 10, 120, .6);
}

.cta-c {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.wpp-a {
  display: flex;
  filter: drop-shadow(0px 2px 4px lightgreen);
  text-decoration: none;
  gap: 12px;
  padding: 8px 4px;
  border-radius: 8px;
  align-items: end;
  justify-content: end;
}

.wpp-a p {
  color: rgb(0, 250, 00);
  margin: 0;
  padding: 0;
}

.wpp-a img {
  max-width: 42px;
  max-height: 42px;
  margin-bottom: 8px;
}

.on-s {
  opacity: 0;
}

.on-ss {
  opacity: 0;
}

.en-an {
  opacity: 1;
  animation: en-an-k 1s ease;
}

.en-an-s {
  opacity: 1;
  animation: en-an-s 1s ease-in-out;
}

/*page */
.page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 132px 0px;
}

.page h1{
  padding: 15px;
  font-weight: 500;
  color: var(--azul-escuro);
}


.att-h{
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 32px;
}

.att-h h2{
  font-weight: 400;
  line-height: 2.4rem;
}



.t-c{
  display: flex;
  flex-direction: column;
  gap: 132px;
  align-items: center;
  justify-content: center;
  max-width: 860px;
  text-align: center;
  text-shadow: 0px 1px 2px rgba(3, 3, 3, .4);
}

.page-card{
  display: flex;
  flex-direction: column;
  margin: 32px;
  justify-self: center;
  align-items: center;
  max-width: 1100px;
  border-radius: 8px;
  padding: 32px;
  /* box-shadow: var(--elevation); */
  background: radial-gradient(circle rgba(255,255,255,.6)50%, rgb(255,255,255,1));
  gap: 132px;
  text-align: center;
  color: #333;
  font-weight: 400;
  font-size: 1.4rem;
}

.page-card h1 {
  color: #333;
  font-weight: 500;
  text-shadow: 0px 1px 2px rgba(3, 3, 3, .4);
}

.page-card a {
  text-decoration: none;
  color: #333;
}

.cc-p{
  background: url('/assets/contact.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}

@keyframes en-an-k {
  0% {
    opacity: 0;
    transform: translateY(45px);
  }

  100% {
    opacity: 1;
    transform: translate(0);

  }
}

@keyframes en-an-s {
  0% {
    opacity: 0;
    transform: translateY(45px) scale(0.8);
  }

  100% {
    opacity: 1;
    transform: translate(0) scale(1.0);

  }
}

@media screen and (max-width: 950px) {
  .c-q {
    max-width: 270px;
    min-width: 240px;
    min-height: 180px;
    max-height: 180px;
  }

  .c-q h3 {
    margin-bottom: 10px;
    margin-top: 18px;
  }

  .c-q p {
    margin-top: 18px;
  }

  .pc {
    width: 760px;
  }
}

@media screen and (max-width: 850px) {
  .c-q {
    max-width: 240px;
    min-width: 220px;
    min-height: 160px;
    max-height: 140px;
  }

  .c-q h3 {
    margin-bottom: 6px;
    margin-top: 14px;
  }

  .c-q p {
    margin-top: 14px;
  }

  .pc {
    width: 560px;
  }

  .pb {
    flex-direction: column;
    gap: 22px;
  }

  .pc .imgs {
    min-width: 294px;
    min-height: 140px;
    flex-wrap: nowrap;
  }

  .pc img {
    width: 140px;
    height: 140px;
  }
}

@media screen and (max-width: 780px) {

  .pc {
    max-height: 505px;
    height: 500px;
  }

  .c-q {
    max-width: 200px;
    min-width: 180px;
    min-height: 140px;
    max-height: 120px;
  }

  .c-q h3 {
    margin-bottom: 4px;
    margin-top: 8px;
  }

  .c-q p {
    margin-top: 8px;
    font-size: .8rem;
  }

  .cc {
    flex-direction: column;
  }
}

@media screen and (max-width: 650px) {


  .cg {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .c-q {
    max-width: 260px;
    min-width: 240px;
    min-height: 180px;
    max-height: 140px;
  }

  .c-q h3 {
    margin-bottom: 15px;
    margin-top: 22px;
  }

  .c-q p {
    margin-top: 22px;
    font-size: 1.0rem;
  }

  .pc {
    max-width: 400px;
    min-height: 400px;
    max-height: 400px;
    align-items: center;
    justify-content: center;
    padding: 12px;
  }

  .pb {
    flex-direction: column;
    gap: 12px;
    max-width: 330px;
    padding: 4px;
  }

  .pc .imgs {
    min-width: 300px;
    min-height: 100px;
    flex-wrap: nowrap;
  }

  .pc img {
    width: 100px;
    height: 100px;
  }

  .att-h p {
  color: #444;
  font-size: 1.3rem;
  line-height: 2.0rem;
}

.att-h h1{
  font-size: 2.5rem;
}
}

@media screen and (max-width: 550px) {

  .navbar {
    flex-direction: column;
    max-height: 200px;
    gap: 22px;
  }

  .logo {
    height: 100px;
    width: 176px;

  }

  .f-c{
    flex-direction: column;
    gap: 32px;
  }

  .f-c h3 {
    font-size: 1.4rem;
  }

  .f-c p, footer p {
    font-size: 1rem;
  }

  .page-card h1{
    font-size: 2.2rem;
  }

  .page-card h2{
    font-size: 1.8rem;
  }

  .page-card p , a{
    font-size: 1.2rem;
  }  

}

@media screen and (max-width:430px) {
  .pc {
    max-width: 360px;
    min-height: 400px;
    max-height: 400px;
    align-items: center;
    justify-content: center;
    padding: 12px;
  }

  .pb {
    flex-direction: column;
    gap: 12px;
    max-width: 320px;
    padding: 4px;
  }

  .pd {
    max-width: 310px;
  }

  .pc .imgs {
    max-width: 306px;
    min-height: 100px;
    flex-wrap: nowrap;
  }

  .pc img {
    width: 92px;
    height: 92px;
  }
}