@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Faculty+Glyphic&display=swap');


:root{
--fonte1: verdana, Geneva, Tahoma, Sans-serif;
--fonte2: font-family: "Faculty Glyphic", sans-serif;
--fonte3: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

*{
    padding: 0px;
    margin: 0px;
    font-size: 1em;
    box-sizing: border-box;
}

html, body{
    font-family: 'Libre Baskerville', serif;
    background-color: #cec2a5;      
    min-height: 100vh;    
    padding: 80px 20px;
    font-size: clamp(1.2rem, 3vw, 2rem);
    line-height: 1.8;

}

h1, h2 {
  font-family: 'Cinzel', serif;
}

.hero {
    position: relative;
    height: 50vh;
    background: url('img/papel-textura.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #2b1b12;
}

.hero h1::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  background: #5a3e2b;
  margin: 20px auto;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 244, 214, 0.75);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  font-family: 'Cinzel', serif;
}

header{
    background-color: black;
    color: white;
    text-align: center;
    background: black;
    padding: 80px 20px;
}

header h1{
              padding: 50px;
              font-variant: small-caps;
              font-weight: var(--fonte2);
              font-size: 7vw;
              margin-bottom: 10px;
              letter-spacing: 2px;
}

header p{
              padding-bottom: 50px;
              font-size: clamp(1rem, 2vw, 1.3rem);}

a{
              color: white;
              text-decoration: none;
              font-weight: bold;
}
a:hover{
text-decoration: underline;
}

section{
     padding-top: 10vh;
      padding-bottom: 10vh;
     line-height: 2em;
     padding-left: 30px;
    font-family: var(--fonte3);
    font-size: 3.5vw;
    border-radius: 12px;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
     line-height: 1.8;
      padding: 60px 10%
}




section p {
    padding-bottom: 2em;
}

section.normal{
    background-color: white;
    color: black;    
    font-size:70%;
    line-height: 1.8;
     background: #fff8e7;
    padding: 40px;
    margin: 40px auto;
    width: 100%;
    border-left: 6px solid #5a3e2b;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    line-height: 1.8;
}


section.imagem{
              background-color: rgba(0, 0, 0, 0.233);
              color: white;
              box-shadow: inset 6px 6px 13px 0px rgba(0, 0, 0, 0.329);
              background-size: cover;
              background-attachment: fixed;
}

section#img01{ 
              background-image: url('./imagens/background001.jpg');
              background-position: right center;
}

section#img02{
              background-image: url('./imagens/background002.jpg');
              background-position: right center;
}

section.imagem p{
              background: rgba(0, 0, 0, 0.315);
              padding: 30px;
              border-radius: 12px;
              max-width: 600px;
              width: 90%;
              color: white;
              font-size: clamp(1rem, 2vw, 1.3rem);
              line-height: 1.6;
}
.footer {
  background: #3e2723;
  color: #f4ecd8;
  text-align: center;
  padding: 25px 10px;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.footer strong {
  color: #ffffff;
  font-weight: 600;
}

.footer a {
  color: #d7b98e;
  text-decoration: none;
  transition: 0.3s;
}

.footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

@media (max-width: 768px) {
    .imagem {
        background-attachment: scroll;
    }
}