@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    font-family: Arial, sans-serif;
    width: 100vw;
    height: auto;
    overflow-x: hidden; /* Evita overflow horizontal */
    background-color: rgb(247, 247, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

:root {
  --color-light-black: #000000;
  --color-light-fosco: #333;
  --color-light-branco: white; /* Corrigido o nome da variável */
  --color-light-red: rgb(182, 0, 0);
  --color-light-red-claro: rgba(182, 0, 0, 0.808);
  --color-light-grey: rgb(196, 196, 196);
  --color-light-black-transparent: rgba(0, 0, 0, 0);
  --colo-light-grey-black: #858585;
}


/* Target the scrollbar track */
::-webkit-scrollbar {
  background: #1a1b1f;
  width: 10px; /* width of the scrollbar */
}

/* Target the scrollbar thumb (the draggable part) */
::-webkit-scrollbar-thumb {
  background: var(--color-light-red);
  border-radius: 5px; /* rounded corners for the thumb */
  cursor: pointer;
}

/* Target the scrollbar track when the thumb is being hovered */
::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-light-red-claro); /* color of the thumb on hover */
}

/* Target the scrollbar track when the scrollbar is being hovered */
::-webkit-scrollbar-track:hover {
  background-color: #000000; /* color of the track on hover */
}

h1 {
    color: #333;
    font-size: 2.8rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
}
p {
    margin: 10px 0;
    color: #333;
    font-size: 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    margin-bottom: 50px;
}

#assist{
    background-color:transparent;
    color: rgb(43, 43, 43);
    font-size: 1.3em;
    font-weight: 700;
    padding: 20px 100px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    margin-bottom: 50px;
    border: 2px solid rgb(41, 41, 41);
}

#assist:hover{
  border: 2px solid  rgb(182, 0, 0);
}

#button-footer{
  display: none;
}

#button-footer:hover{
  border: 1px solid var(--color-light-red);
  color: var(--color-light-red);
}


.container{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    text-align: start;
    grid-column: 1;
    padding-left: 5rem;
    gap: 1rem;
}


.container-Pai{
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  width: 100%;
  height: calc(100vh + 80px);
  align-items: center;
  justify-content: center;
  padding-top: 5%;
}

.separeted{
  width: 100%;
  height: 80%;
  color: black;
  grid-column: 2;
  background-color: rgb(223, 223, 223);
  display: flex;
  align-items: center;
  justify-content: center;
}

.separeted p{
  background-color: rgb(247, 247, 247);
  height: 100px;
  width: 100px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container-iframe{
  width: 100%;
  height: 100%;
  padding: 1rem;
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container-iframe iframe{
  width: 80%;
  height: 80%;
  border-radius: 3px;
  border-radius: 20px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.719);
}

#header {
  width: 98%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(0, 0, 0, 0.781);
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.349);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 80px;
  padding: 10px 50px 10px;
  z-index: 3;
  transition: background-color 0.3s, padding 0.3s;
  top: 10px;
  left: 1%;
  z-index: 10;
  position: fixed;
}

#header .svg {
  position: relative;
  width: 43px;
  height: 43px;
  background: none;
  padding: 3px;
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px solid black;
}

#header .svg:hover {
  background-color: #c4c4c475;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3px;
}

  
  /* Estilos para Header */
  #title {
    font-size: 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    margin: 0;
    padding: 0;
    color: rgb(48, 48, 48);
  }
  
  .menu-icon {
    width: 50px;
    height: 50px;
    cursor: pointer;
  }
  
  /* SVG para menu e fechar */
  .menu-svg, .close-svg {
    display: none;
    cursor: pointer;
    z-index: 3;
  }
  
  .menu-svg.open, .close-svg.close {
    display: none;
  }
  
  footer {
    padding: 40px;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center; /* Centraliza o conteúdo */
    margin-top: 100px;
}

.blackum{
    color: var(--color-light-branco);
}

.black{
    color: var(--color-light-fosco);
    fill: var(--color-light-black);
}

.black:hover{
    border-bottom: 1px solid var(--color-light-red);
    color: var(--color-light-red);
}

.footer-content {
    display: flex;
    align-items: start;
    justify-content: center;
    height: auto;
    padding-top: 20px;
    border-top: 1px solid var(--color-light-grey);
    width: 100%; /* Define a largura da borda como 80% */
    gap: 2rem;
}

h4{
    font-size: clamp(2.3em, 1em + 2vw, 1em);
    color: var(--color-light-fosco);
    font-family: "Poppins";
    margin-bottom: 20px;
    font-weight: 200;
}

.social-links{
    width: 30%;
    display: grid;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    list-style: none;
    hyphens: auto;
    word-spacing: normal;
    letter-spacing: normal;
    word-break: break-word;
    overflow-wrap: break-word;
    -webkit-hyphens: auto;
}

.social-links a {
    color: var(--color-light-fosco);
    text-decoration: none;
    font-weight: 200;
    font-size: clamp(1.6em, 1em + 2vw, 1em);
    font-family: "Poppins";
}


.social-links #whats:hover {
    color: var(--color-light-red); /* cor ao passar o mouse */
}

@media only screen and (max-width: 1280px) {
h1 {
  color: #333;
  font-size: 2rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 15px;

}

}


@media only screen and (max-width: 800px) {

#title {
  font-size: 1.2rem;
}


footer {
  padding: 40px; /* Aumenta o padding */
}

.footer-content {
  margin: 0 auto;
  display: flex;
  flex-direction: column; /* Muda a direção para coluna */
  align-items: center; /* Centraliza os itens */
  height: 100%;
  border-top: 1px solid var(--color-light-grey);
  width: 98%; /* Define a largura da borda como 80% */
  padding-top: 20px;
}

.social-links {
  margin-bottom: 20px; /* Adiciona espaço entre as seções */
  width: 90%;
}

h4 {
  font-size: 1.7rem; /* Reduz o tamanho do título */
}

.container-Pai{
  grid-template-columns: 1fr;
}

.container{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding-left: 0;
}

.container-iframe{
  display: none;
}

.separeted{
  display: none;
}

#button-footer{
  background-color: rgb(247, 247, 247);
  border: 1px solid var(--color-light-red);
  color: var(--color-light-red);
  cursor: pointer;
  border-radius: 50px;
  align-items: center;
  display: flex;
  justify-content: center;
  width: 60px;
  height: 60px;
  z-index: 999999;
}

.lineSeparete{
  background-color: #c4c4c4;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1px;
  margin-top: 2rem;
}

h1 {
  color: #333;
  font-size: 2.3rem;
  margin-bottom: 15px;

}
#header{
  padding: 10px 20px 10px;
}

p {
  margin: 10px 0;
  color: #333;
  font-size: 1.3rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  margin-bottom: 50px;
}


}
