/* Fontes Personalizadas */
@font-face {
  font-family: "BeigeCulture";
  src: url("../fontes/Beige Culture/BeigeCultureItalic.otf");
}

@font-face {
  font-family: "Visby";
  src: url("../fontes/Visby/VisbyRegular.otf");
}

/* Estilos Globais */
body {
  font-family: "Visby", sans-serif;
  background-color: #3f3f3f;
  color: #fff;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3 {
  font-family: "BeigeCulture", serif;
}

.container,
.container-xl {
  max-width: 1200px !important;
}

/* Inputs Personalizados */
.custom-input {
  background-color: #232323;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
}

.custom-input:focus {
  border: 2px solid #db8d26;
  box-shadow: 0 0 5px #db8d2680;
  color: #232323;
}

.custom-input::placeholder,
.custom-input:focus::placeholder {
  color: #fff;
  opacity: 1;
}

/* Layout de Componentes */
.custom-inline {
  display: flex;
  align-items: center;
  gap: 10px;
}

.custom-inline .numero {
  font-weight: bold;
  font-size: 40px;
}

.custom-inline .numero > span {
  color: #db8d26;
}

.custom-inline .texto-info {
  font-size: 20px;
  color: #fff;
}

.text-muted {
  color: #bbb !important;
}

.numero {
    font-size: 2.5rem;
    font-weight: bold;
    font-family: 'Visby';
  }

/* Botões */
button.btn-warning {
  background-color: #db8d26;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
}

button.btn-warning:hover {
  background-color: #db8d26;
}

/* Botões */
a.btn-warning {
    background-color: #db8d26;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
  }
  
  a.btn-warning:hover {
    background-color: #db8d26;
  }

/* Seções */
#topo,
#info,
#depoimentos,
#info-livro {
  padding: 30px 0;
}

#topo h2 {
  font-size: 40px;
}

#topo p {
  font-size: 18px;
}

/* Blocos de Informações */
.info-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 20px;
}

.info-block .numero {
  font-size: 40px;
  font-weight: bold;
}

.info-block .texto-info {
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
  text-align: start;
  padding-left: 10px;
}

.texto-info {
    font-size: 1rem;
    line-height: 1.5;
}

.texto-info .bold {
  font-weight: bold;
}

.numero > span {
  color: #db8d26;
}

/* Formulário */
#formulario {
  background-color: #3f3f3f;
  color: #fff;
}

#formulario h2 {
  font-family: "BeigeCulture", serif;
  font-size: 52px;
}

#formulario p {
  font-size: 20px;
  font-weight: 500;
  color: #dbdbdb;
}


/* Card */

.card {
  background: transparent;
  border: 1px solid rgb(219, 141, 38);
  color: #fff;
}

.blockquote-footer {
  color: #fff;
}

/* Footer */
.social-icon {
  width: 40px;
  height: 40px;
  margin: 0 10px;
}

footer {
  color: #fff;
}

/* Navbar */

.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(219,141,38,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Texto com Barra Lateral */
.text-with-bar {
  position: relative;
  padding-left: 20px;
  margin-bottom: 40px;
  font-size: 20px;
  line-height: 1.5;
}

.text-with-bar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background-color: #db8d26;
}

.texto-sobre {
  background-image: url("../img/preis.png"); /* Caminho para a imagem */
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  padding: 20px; /* Espaçamento interno */
  height: 500px; /* Ajusta dinamicamente à altura do conteúdo */
}

.texto-sobre h1 {
    font-size: 80px;
}

.texto-sobre p {
    font-size: 20px;
}

/* Media Queries */
@media (max-width: 768px) {
  .info-block {
    flex-direction: column;
    text-align: center;
    margin-bottom: 40px;
  }

  .info-block .texto-info {
    padding-left: 0;
  }

  .social-icon {
    margin: 5px;
  }

  #topo img {
    max-width: 65%;
    height: auto;
  }

  #topo .col-md-6 img{
    max-width: 90%;
  }

  #info-livro .text-with-bar {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .info-block .numero {
    font-size: 30px;
  }

  .info-block .texto-info {
    font-size: 12px;
  }

  #formulario h2 {
    font-size: 24px;
  }

  #formulario p {
    font-size: 14px;
  }
}
