#home {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: calc(100vh + 70px);
  background: url("../../public/assets/images/header_tabuas.jfif") no-repeat
    center center;
  background-size: cover;
  margin-top: 0;
}

#cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 5%;
}

#cta .cta-title {
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 4rem;
  color: #fff;
}

#cta .cta-description {
  width: 75%;
  font-family: "Lora", sans-serif;
  font-size: 1.5rem;
  color: #fff;
  font-weight: 200;
  margin-top: 1%;
}

@media screen and (max-width: 850px) {
  #cta .cta-title {
    width: auto;
    font-size: 3.2rem;
    text-align: start;
  }

  #cta .cta-description {
    width: auto;
    padding-right: 40%;
    margin-top: 5%;
    font-size: 1.25rem;
    text-align: start;
  }
}

@media screen and (max-width: 400px) {
  #cta .cta-title {
    width: auto;
    font-size: 2.9rem;
    text-align: start;
  }

  #cta .cta-description {
    width: auto;
    padding-right: 40%;
    margin-top: 5%;
    font-weight: 300;
    font-size: 1.05rem;
    text-align: start;
  }
}

/* aqui  */
img {
  max-width: 100%;
  display: block;
}

* {
  backface-visibility: hidden;
  box-sizing: border-box;
}

p {
  margin: 15px 0;
  color: #777;
}

a {
  color: #777;
  text-decoration: none;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 16px;
}

.panel {
  border: 1px solid #e5e5e5;
  margin: 50px 0;
  background: #fff;
  box-shadow: 0 5px 10px #ddd;
  padding: 15px;
  position: relative;
  overflow: auto;
}

.panel_img {
  width: 35%;
  height: 100%;
  float: left;
}

.panel_content {
  float: left;
  width: 65%;
  padding: 50px;
}

.panel_top {
  display: block;
  margin-bottom: 30px;
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: 50px;
  line-height: 55px;
  margin-left: -8.5%;
  margin-bottom: 50px;
}

.gallery_btn {
  float: right;
  font-size: 16px;
  color: blueviolet;
  text-align: right;
  display: inline-block;
  transition: 300ms;
  position: relative;
  padding: 5px 10px;
}

.gallery_btn:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

/* Modernização do layout */
.modern-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modern-panel {
  display: flex;
  gap: 20px;
  align-items: center;
  background: linear-gradient(135deg, #ffffff, #f9f9f9);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 40px;
  overflow: hidden;
}

.hamburger {
  display: none; /* Ocultar no layout principal */
}

.modern-panel-img img {
  max-width: 100%; /* Não ultrapassar a largura do container */
  max-height: 400px; /* Define uma altura máxima */
  width: auto; /* Ajusta proporcionalmente */
  height: auto; /* Mantém a proporção */
  border-radius: 16px; /* Adiciona bordas arredondadas */
  object-fit: cover; /* Garante que a imagem se ajuste ao espaço */
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1); /* Sombra suave */
}

.modern-panel-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.modern-panel-content h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 10px;
}

.modern-panel-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.modern-cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.modern-btn {
  padding: 12px 24px;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s, box-shadow 0.3s;
}

.modern-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

.modern-btn-secondary {
  padding: 12px 24px;
  font-size: 1rem;
  color: #ff7e5f;
  background: transparent;
  border: 2px solid #ff7e5f;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s, box-shadow 0.3s;
}

.modern-btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .modern-panel {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .modern-panel-img img {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .modern-btn,
  .modern-btn-secondary {
    width: 100%;
  }
}

.hamburger {
  position: absolute;
  top: 0;
  right: 0;
  margin: 20px;
  cursor: pointer;
}

.menu_icon {
  width: 35px;
  cursor: pointer;
  display: block;
}

.menu_icon span {
  float: left;
  width: 100%;
  background: #ddd;
  height: 4px;
  margin: 3.5px 0;
}

#cta_buttons {
  display: flex;
  margin-top: 2%;
}

#cta_buttons a {
  text-decoration: none;
  color: #1d1d1d;
}

#phone_button {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 26px;
  margin-top: 40%;
  background-color: #fff;
  padding: 8px 14px;
  font-weight: 500;
  box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

#phone_button:hover {
  box-shadow: 0px 0px 12px 8px rgba(226, 223, 223, 0.1);
}

.social-media-buttons {
  margin-top: 2%;
}

#about_us {
  background-color: var(--color-primary-1);
}

#about_us .texts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

#transform {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
}

#transform img {
  width: 45%;
  border-radius: 26px;
}

#transform .texts {
  width: 45%;
}

#transform .description {
  width: 60%;
}

#transform .btn-default {
  margin-top: 20%;
}
@media (max-width: 768px) {
  .panel {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .panel_img img {
    max-width: 100%;
  }

  .panel_content {
    gap: 10px;
    padding: 0;
  }

  .panel_content p {
    font-size: 14px;
  }

  .panel_top a {
    font-size: 16px;
  }

  .gallery_btn {
    padding: 8px 16px;
    font-size: 16px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .panel {
    padding: 15px;
  }

  .panel_content p {
    font-size: 12px;
  }

  .panel_top a {
    font-size: 14px;
  }

  .gallery_btn {
    font-size: 14px;
    padding: 6px 12px;
  }
}

@media screen and (max-width: 768px) {
  #transform {
    flex-direction: column;
    gap: 40px;
  }

  #transform img {
    width: 75%;
  }

  #transform .texts {
    width: auto;
  }

  #transform .description {
    width: auto;
  }

  #transform .btn-default {
    margin-top: 10%;
  }
}

#how-it-works {
  background-color: #f9f9f9; /* Cor de fundo suave */
  padding: 50px 20px;
  text-align: center;
}

.info-container {
  max-width: 1200px;
  margin: 0 auto;
}

.info-container h2 {
  font-size: 2rem;
  color: #61400d; /* Cor destaque */
  margin-bottom: 30px;
}

.info-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.info-step {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  flex: 1 1 30%; /* Tamanho responsivo */
  max-width: 300px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.info-step i {
  font-size: 2.5rem;
  color: #61400d;
  margin-bottom: 15px;
}

.info-step h3 {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 10px;
}

.info-step p {
  font-size: 0.9rem;
  color: #666;
}

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

  .info-step {
    max-width: 100%;
  }
}

.info-button {
  margin-top: 30px;
}

.btn-large {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  background-color: #61400d; /* Cor de destaque */
  color: #fff;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-large:hover {
  background-color: #814514;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .btn-large {
    font-size: 1rem;
    padding: 12px 20px;
  }
}

.carousel-container {
  position: relative;
  overflow: hidden;
  width: 90%; /* Largura do carrossel */
  max-width: 1200px; /* Largura máxima */
  margin: 0 auto; /* Centraliza o carrossel */
  border-radius: 10px; /* Bordas arredondadas */
}

#carousel-section .title {
  text-align: center;
  width: auto;
  padding-bottom: 4%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 50%;
  box-sizing: border-box;
  padding: 10px;
}

.carousel-image {
  width: 100%;
  height: 500px; /* Altura padrão para as imagens */
  overflow: hidden; /* Esconde partes que excedem o container */
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ajusta a imagem para preencher o espaço sem distorção */
  border-radius: 10px; /* Opcional: arredonda as imagens */
}
.carousel-controls {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.carousel-control {
  background-color: transparent;
  border: none;
  color: var(--color-brown-1);
  font-size: 2rem;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  margin: 0 5px;
}

@media screen and (max-width: 800px) {
  .carousel-slide {
    min-width: 100%;
  }
}

@media screen and (max-width: 400px) {
  .carousel-control {
    font-size: 1.5rem;
    padding: 5px;
  }
}

#moledo_stone {
  width: 100%;
  display: flex;
  justify-content: space-between;
  background-color: var(--color-primary-1);
}

#moledo_stone .text-and-img {
  width: 45%;
}

#moledo_stone .text-and-img img {
  width: 90%;
  margin-top: 4%;
}

#moledo_stone .informations img {
  width: 6%;
  height: auto;
}

#moledo_stone .title {
  width: 90%;
}

#moledo_stone .informations {
  display: flex;
  flex-direction: column;
  gap: 37px;
  width: 50%;
}

@media screen and (max-width: 800px) {
  #moledo_stone {
    flex-direction: column;
    gap: 40px;
  }

  #moledo_stone .text-and-img {
    width: auto;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 40px;
  }

  #moledo_stone .text-and-img img {
    width: 75%;
  }

  #moledo_stone .text-and-img .title {
    width: auto;
  }

  #moledo_stone .informations {
    width: auto;
  }

  #moledo_stone .informations img {
    width: 8%;
  }
}

#perfect_stone {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
}

#perfect_stone .texts {
  width: 40%;
}

#perfect_stone .description {
  margin-top: 9%;
  margin-bottom: 12%;
}

#perfect_stone img {
  width: 50%;
}

@media screen and (max-width: 800px) {
  #perfect_stone {
    flex-direction: column-reverse;
    gap: 40px;
  }

  #perfect_stone .texts {
    width: auto;
  }

  #perfect_stone img {
    width: 75%;
  }

  #perfect_stone .description {
    margin-top: 4%;
    margin-bottom: 10%;
  }
}

#types_stones {
  width: 100%;
  background-color: var(--color-primary-1);
}

#stones {
  list-style: none;
}

#types_stones #stones {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

#types_stones a {
  font-size: 1.2rem;
  text-decoration: none;
  font-weight: 500;
  color: black;
  letter-spacing: 1.5px;
  transition: color 0.5s ease;
  transition: font-size 0.5s ease;
}

#types_stones a:hover {
  color: var(--color-brown-1);
  font-size: 1.3rem;
  text-decoration: underline;
}

@media screen and (max-width: 800px) {
  #types_stones #stones .stone-line {
    display: none;
  }

  #types_stones #stones {
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-direction: column;
  }

  #types_stones a {
    font-size: 1.2rem;
    letter-spacing: 1.05px;
  }

  #types_stones a:hover {
    font-size: 1.25rem;
  }
}
