@charset "utf-8";

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}

button {
  border: none;
  cursor: pointer;
}

/* Rolagem vertical com animação/velocidade */
html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  font-family: "Times New Roman", Times, serif;
  margin: 0;
  padding: 0;

  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

/*cabealho*/

ul {
  margin: 0px;
  padding: 0px;
}

a {
  color: black;
  text-decoration: none;
  font-family: sans-serif;
}

a:hover {
  background: rgba(0, 0, 0, 0.05);
}

#logo {
  font-size: 1.5rem;
  font-weight: bold;
}

#header {
  box-sizing: border-box;
  height: 75px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background: #d8d8d8;
}

#barTop {
  background-color: #343434;
  height: 40px;
  width: 100%;
  display: flex;
  align-items: center;
}

#barTop div {
  margin: auto;
  width: 77%;
  display: flex;
  justify-content: end;
  color: white;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
}

#menu {
  display: flex;
  list-style: none;
  gap: 0.5rem;
}

#menu a {
  display: block;
  padding: 0.5rem;
}

#btn-mobile {
  display: none;
}

#ImgLink a img {
  height: 30px;
  width: 30px;
  object-fit: cover;
}

#ImgLink a {
  padding: 0.5rem;
}

/*Destaque foto e link do whats */

.destaque {
  background-image: url(../imagens/destaque.jpg);
  height: 75vh;
  background-attachment: fixed;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  align-content: center;
  text-align: center;
}

.destaque h1 {
  color: #343434;
  width: 50%;
  font-family: "Poppins", sans-serif;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  margin: 2rem;
  padding: 1rem;
  border-radius: 1rem 0 1rem 0;
}

.destaque > button {
  background: #b7aea5;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  /* border-radius: 5px 5px 5px 5px; */
  /* border: 2px solid #343434; */
  padding: 10px;
  text-decoration: none;
  color: #343434;
  font-size: 15px;
  font-weight: bold;
  width: 150px;
  height: 50px;
  transition: filter 0.3s ease-in;
}

.destaque > button:hover {
  filter: brightness(0.8);
}

/*quantidade de produtos*/

#blocos {
  width: 100%;
  padding: 64px 64px 0 64px;
  text-align: center;
  display: flex;
  justify-content: space-around;
}

/*Quadrado da quantidade de produtos */

#blocos > div {
  width: 360px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  height: 200px;
  background: #ffffff;
}

#blocos > div + div {
  margin-left: 1rem;
}

/*Textos dos blocos*/

#blocos > div > p {
  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

#blocos > div > p > span {
  display: block;
}

#blocos > div > p > span {
  display: block;
  font-family: "Poppins";
  font-weight: 250;
  font-size: 32px;
  line-height: 60px;
  text-align: center;
}

#blocos > div > p > span:nth-child(2) {
  font-family: "Poppins";
  font-weight: 600;
  font-size: 70px;
  line-height: 50px;
  text-align: center;
  color: #686868ce;
}

#blocos > div > p > span:nth-child(3) {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 20px;
  text-align: center;
  color: #343434;
}

/*Titulos*/

article h2 {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Roboto";
  font-style: normal;
}

/*Ambientes*/

#ambientes {
  position: relative;
  background-image: url(../imagens/cortina-tecido8.jpg);
  height: 70vh;
  background-attachment: fixed;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2rem;
}

#ambientes::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

#ambientes > p {
  font-family: "Poppins";
  text-align: center;
  color: black;
  font-size: 18px;
  margin: auto;
  width: 60%;
  padding: 10px;
  position: relative;
  z-index: 2;
}

#ambientes > ul {
  position: relative;
  z-index: 2;
  width: 50%;
  font-family: "Poppins";
  font-size: 16px;
  font-weight: 700;
  padding-top: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  list-style: none;
  text-align: center;
}

#ambientes > table tr td {
  text-align: center;
}

#DestaqueProdutos {
  margin-bottom: 50px;
  width: 100%;
  padding: 0 64px 0 64px;
}

#CardsProdutos {
  display: flex;
  justify-content: space-around;
}

.card {
  padding: 10px;
  background: #ffffff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 0px 0px 8px 8px;
}

.card + .card {
  margin-left: 1rem;
}

.card-img-top {
  width: 100%;
}

#TituloCard {
  font-family: "Roboto";
  font-weight: 600;
  padding: 10px;
  text-align: center;
  font-style: normal;
  font-size: 16px;
}

#BotaoCard {
  font-family: "Roboto";
  font-weight: 600;
  background: #d8d8d8;
  padding: 10px;
  text-decoration: none;
  color: #343434;
  border-radius: 4px;
  display: flex;
  justify-content: center;
}

/*Perguntas Frequentes*/

#perguntas {
 display: flex;
 width: 90%;
 margin: auto;
 margin-bottom: 10px;
}

#PaginaPerguntas {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
    width: 50%;
  }

#PaginaPerguntas h1 {
  font-family: "Roboto";
}

#PaginaPerguntas p {
  font-family:"Poppins";
  font-size: 20px;
  width: 80%;
  color: #00000062;
}

#PaginaPerguntas button {
  background-color: #d8d8d8;
  border-radius: 10px;
  padding: 10px 15px;
}

#PaginaPerguntas button:hover {
  background-color: #343434;
  color: white;
}

#PerguntasRespostas {
  border-bottom: 5px;
  width: 50%;
  font-family:"Poppins";
}

.accordion {
  background-color: #00000020;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
  margin-bottom: 10px;
  border-radius: 1rem 1rem 1rem;
}

.active, .accordion:hover {
  background-color: #3434348c;
  color: #fff; 
}

.panel {
  padding: 0 18px;
  display: none;
  background-color: white;
  overflow: hidden;
  font-size: 15px;
}

.accordion:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #777;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}


/*Contato*/

#QuemSomos {
  width: 75%;
  background-color: #d8d8d88f;
  margin: auto;
  font-family: "Roboto";
  font-style: normal;
  padding: 50px;
  padding-bottom: 10rem;
}

#QuemSomos h1 {
  font-style: normal;
  font-weight: 300;
  font-size: 32px;
  padding: 10px;
}

#QuemSomos p {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  padding-bottom: 5px;

  color: #000000;
}

/*Rodapé*/
footer {
  background-color: #343434;
  text-align: center;
  color: white;
  padding: 5vh;
  text-decoration: none;
  font-family: "Poppins";
  font-size: 15px;
}

/*Tilulos dos Produtos*/

#TituloProdutos {
  text-align: center;
  padding: 25px;
  font-family: "Poppins";
}

/*Cortinas Persianas Toldos*/

#CortinasPersianasToldos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  width: 85%;
  margin: auto;
  padding: 20px;
}

#CortinasPersianasToldos article {
  padding: 22px;
}

#tituloCPT {
  text-align: center;
  padding: 25px;
  font-family: "Roboto";
  font-style: normal;
  color: #343434;
  font-size: 32px;
}

/*Páginas dos produtos*/

#AjusteDePaginas {
  font-family: "Roboto";
  margin: auto;
  width: 74%;
  padding: 30px;
}

#MainFotos {
  width: 70%;
  margin: auto;
  padding: 10px;
  text-align: center;
}

#MainFotos a img {
  height: 250px;
  width: 250px;
  padding: 10px;
  object-fit: cover;
}

/*Formulario*/

#contato {
  background: #d8d8d88f;
  margin: auto;
  width: 75%;
  padding: 10px;
}

#Formulario {
  width: 70%;
  margin: auto;
  padding: 20px;
}

#TextoForm {
  display: flex;
  justify-content: center;
}

#TextoForm p {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 19px;
  width: 98%;

  color: #343434;
}

/* Style inputs, select elements and textareas */
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical;
}

/* Style the label to display next to the inputs */
label {
  padding: 12px 12px 12px 0;
  display: inline-block;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 600;
}

/* Style the submit button */
input[type="submit"] {
  background-color: #b8b8b8;
  color: rgb(0, 0, 0);
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
}

/* Style the container */
.container {
  border-radius: 5px;
  padding: 20px;
}

/* Floating column for labels: 25% width */
.col-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
}

/* Floating column for inputs: 75% width */
.col-75 {
  float: left;
  width: 75%;
  margin-top: 6px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/*Botão das páginas*/

#Orcamento {
  margin: auto;
  width: 50%;
  text-align: center;
  padding: 50px;
}

#Orcamento a {
  background-color: #d8d8d8;
  font-family: "Roboto";
  font-size: 16px;
  width: 130px;
  height: 50px;
  left: 705px;
  top: 927px;
  border-radius: 4px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 5px 5px 5px 5px;
  padding: 10px;
  text-decoration: none;
  color: #343434;
  border: 2px;
}

/* Media Queries:
Regras que só serão aplicadas quando
o site for visualizado em determinados tamanhos
de tela */

/* 1º Breakpoint:
Telas com largura à partir de 1000px */
@media screen and (max-width: 1000px) {
  /*Cabeçalho de cima*/
  /*Cabeçalho de baixo*/
  #header {
    justify-content: space-between;
  }
  #menu {
    display: block;
    position: absolute;
    width: 100%;
    top: 115px;
    right: 0px;
    background: #343434cc;
    transition: 0.6s;
    z-index: 1000;
    height: 0px;
    visibility: hidden;
    overflow-y: hidden;
  }
  #ImgLink {
    display: none;
  }
  #nav.active #menu {
    height: calc(100vh - 70px);
    visibility: visible;
    overflow-y: auto;
  }
  #menu a {
    padding: 1rem 0;
    margin: 0 1rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    color: white;
  }
  #btn-mobile {
    display: flex;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border: none;
    background: none;
    cursor: pointer;
    gap: 0.5rem;
  }
  #hamburger {
    border-top: 2px solid;
    width: 20px;
  }
  #hamburger::after,
  #hamburger::before {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    margin-top: 5px;
    transition: 0.3s;
    position: relative;
  }
  #nav.active #hamburger {
    border-top-color: transparent;
  }
  #nav.active #hamburger::before {
    transform: rotate(135deg);
  }
  #nav.active #hamburger::after {
    transform: rotate(-135deg);
    top: -7px;
  }

  #barTop div {
    width: 92%;
  }

  /*Ambientes*/
  #FundoAmbientes nav p {
    width: 80%;
    font-size: 20px;
  }
  #AjusteTabela table {
    width: 80%;
    padding-left: 70px;
    font-size: 15px;
  }

  /*Destaques dos Produtos*/

  #DestaqueProdutos {
    margin-bottom: 30px;
  }

  #CardsProdutos {
    flex-direction: column;
    align-items: center;
  }
  #CardsProdutos .card + .card {
    margin-top: 1rem;
    margin-left: 0;
  }

  /*Quem Somos*/
  #QuemSomos p {
    font-size: 20px;
  }

  /*Perguntas Frequentes*/

#perguntas {
  display: flex;
  flex-direction: column;
  width: 88%;
 }

 #perguntas p {
    width: 90%;
 }

 #PaginaPerguntas {
    display: flex;
    width: 100%;
 }

 #PaginaPerguntas button {
    display: none;
 }

 #PerguntasRespostas {
    width: 100%;
 }

}

/* 2º Breakpoint:
Telas com largura à partir de 790px */
@media screen and (max-width: 790px) {
  /*Destaque do site*/
  .destaque h1 {
    font-size: 15px;
  }
  /*Quem Somos*/
  #QuemSomos p {
    font-size: 15px;
  }
  #TextoForm p {
      font-size: 15px;
  }
}

/* 3º Breakpoint:
Telas com largura à partir de 730px */
@media screen and (max-width: 730px) {
  /*Quantidade de produtos*/
  #blocos {
    flex-direction: column;
    align-items: center;
  }
  #blocos > div + div {
    margin-left: 0rem;
    margin-top: 1rem;
  }

  /*ambientes*/
#ambientes p {
    font-size: 15px;
    width: 90%;
}

#ambientes ul li {
    padding: 1px;
}

  /*formulario*/
  .col-25,
  .col-75,
  input[type="submit"] {
    width: 100%;
    margin-top: 0;
  }

  /*Fundo do contato, Quem somos e Ajuste dos Produtos*/
  #QuemSomos,
  #contato,
  #AjusteDePaginas {
    width: 100%;
  }

  p {
    font-size: 14px;
  }

}

/* 4º Breakpoint:
Telas com largura à partir de 500px */
@media screen and (max-width: 500px) {
  /*Destaque do site*/
  .destaque h1 {
    width: 90%;
    font-size: 14px;
    margin: 0;
    margin-bottom: 2rem;
  }

  #blocos {
    flex-direction: column;
  }

  #blocos > div {
    width: 100%;
    height: 200px;
  }

  #blocos > div + div {
    margin-left: 0;
    margin-top: 1rem;
  }

  #ambientes {
    height: 70vh;
  }

  #ambientes > p {
    width: 100%;
  }
}

/* 4º Breakpoint:
Telas com largura à partir de 397px */
@media screen and (max-width: 397px) {
}
