::-webkit-scrollbar {
  display: none;
}

@font-face {
  font-family: "Montserrat";
  src: url("../assets/fonts/Montserrat.ttf");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

img, a {
  -webkit-user-drag: none;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f5f5f5;
  overflow-x: hidden;
}

.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #da743d, #e8ab4e);
  text-align: center;
  position: relative;
}

.orderSection {
  padding: 80px 20px;
  background-color: #e8ab4e;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 50vh;
}

.order-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 600px;
  gap: 20px;
}

.order-message h2 {
  font-size: 2rem;
  color: #ffffff;
}

.order-message p {
  font-size: 1.2rem;
  color: #ffffff;
  line-height: 1.6;
}

.order-button {
  padding: 15px 30px;
  background-color: #da743d;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.order-button:hover {
  background-color: #8e3200;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.aboutAuthor {
  min-height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  background: #e8ab4e;
  text-align: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  gap: 50px;
  padding: 100px 20px;
  z-index: 1;
  flex-wrap: wrap;
}

.aboutAuthor .hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.aboutAuthor h1 {
  max-width: 800px;
  padding: 20px;
  font-size: 2rem;
  line-height: 1.8;
  color: #ffffff;
  text-align: center;
  transition: transform 0.3s ease;
}

.aboutAuthor p {
  max-width: 800px;
  padding: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ffffff;
  text-align: center;
  transition: transform 0.3s ease;
}

.aboutAuthor p:hover {
  transform: translateY(-5px);
}

.aboutBook {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #e8ab4e;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 100px 20px;
  z-index: 1;
  background-image: url('../assets/img/fundo.png');
  background-size: 100%;
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
}

.aboutAuthor .hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.content-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
}

.aboutBook h1 {
  max-width: 800px;
  padding: 20px;
  font-size: 2rem;
  line-height: 1.8;
  color: #ffffff;
  text-align: center;
  transition: transform 0.3s ease;
}

.aboutBook p {
  max-width: 800px;
  padding: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ffffff;
  text-align: justify;
  transition: transform 0.3s ease;
}

.aboutBook p:hover {
  transform: translateY(-5px);
}

.hero-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.hero-logo {
  position: absolute;
  top: 50px;
  width: 800px;
  max-width: 80%;
  z-index: 1;
  opacity: 0.6;
  animation: fadeInLogo 2s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

.hero-image {
  width: 1200px;
  transform: translateY(100px);
  overflow: hidden;
  z-index: 2;
  animation: fadeIn 2s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(255, 170, 0, 0);
  backdrop-filter: blur(10px);
  z-index: 10;
  transform: translateY(-100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  pointer-events: none;
  transition: transform 0.5s ease;
}

.navbar.show {
  transform: translateY(0);
  pointer-events: auto;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 25px;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  width: 100%;
  padding: 0;
  margin: 0 auto;
}

.nav-links li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  display: inline-block;
  transition: transform 0.3s ease;
}

.nav-links li a:hover {
  transform: scale(1.1);
}

.imgNomeMauricio {
    width: 700px;
    height: auto;
}

.fotoMauricio {
    width: 400px;
    height: auto;
    border-radius: 10px;
}

.aboutAuthor p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
    text-align: justify;
}

.site-footer {
  background-color: #da743d;
  color: #ffffff;
  padding: 60px 20px 30px;
  font-family: 'Montserrat', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-about,
.footer-contact,
.footer-social {
  flex: 1 1 250px;
}

.footer-about h3,
.footer-contact h3,
.footer-social h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.footer-about p,
.footer-contact p,
.footer-social p,
.footer-social a {
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
  text-decoration: none;
}

.footer-social a {
  display: inline-block;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: #f5f5f5;
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #fefefe;
}

.footerP {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.footer-bottom {
    position: relative; /* referencia para o footer-image */
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #fefefe;
    padding: 10px 20px; /* evita colisão com bordas */
}

.footer-bottom .footer-image {
    position: absolute;
    bottom: 10px;
    right: 20px;
    width: 200px; /* reduz tamanho em celulares */
    height: auto;
}

.poweredBy {
    width: 200px;
    height: auto;
}

.order-image img { width: 500px; height: auto; display: block; }

#orderMethod {
    display: block;
    width: 240px;
    margin: 20px auto;
    padding: 12px 15px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    background-color: #da743d;
    border: 2px solid #ffffff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-align: center;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D'10'%20height%3D'6'%20viewBox%3D'0%200%2010%206'%20xmlns%3D'http://www.w3.org/2000/svg'%3E%3Cpath%20d%3D'M0%200l5%206%205-6z'%20fill%3D'white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 10px 6px;
}

#orderMethod:hover {
    background-color: #c55f2c;
}

#orderMethod:focus {
    outline: none;
    border-color: #a1481f;
}

@keyframes fadeInWBS {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes fadeInLogo {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(125px);
    opacity: 1;
  }
}