/* The Seasons - Light */
@font-face {
  font-family: 'The Seasons';
  src: url('../fonts/the-seasons-light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* The Seasons - Light Italic */
@font-face {
  font-family: 'The Seasons';
  src: url('../fonts/the-seasons-light-italic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

/* The Seasons - Regular */
@font-face {
  font-family: 'The Seasons';
  src: url('../fonts/the-seasons-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* The Seasons - Regular Italic */
@font-face {
  font-family: 'The Seasons';
  src: url('../fonts/the-seasons-regular-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* The Seasons - Bold */
@font-face {
  font-family: 'The Seasons';
  src: url('../fonts/the-seasons-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* The Seasons - Bold Italic */
@font-face {
  font-family: 'The Seasons';
  src: url('../fonts/the-seasons-bold-italic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* Filson Pro - Regular */
@font-face {
  font-family: 'Filson Pro';
  src: url('../fonts/filson-pro-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


/* Paleta */
:root {
  --bg-light: #EFEFE2;
  --bg-medium: #D6D7CB;
  --primary: #B0BACB;
  --accent-dark: #848B66;
  --red-dark: #C1412E;
  --red-medium: #D65B4B;
  --orange: #E77A4C;
}

/* Reset e base */
body {
  margin: 0;
  font-family: 'Filson Pro', sans-serif;
  background-color: var(--bg-light);
  color: #333;
  line-height: 1.6;
}

section {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
}

h2 {
  font-family: 'The Seasons', sans-serif;
  font-size: 3em;
  font-weight: normal;
}

/* Header fixo com logo */
.cover {
  max-width: 100%;
  background-color: var(--accent-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 0;
}

.cover .icon-container {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.3s ease;
  font-size: 1.5em;
  color: var(--bg-light);
}

.cover .icon-container a {
  color: var(--bg-light);
  text-decoration: none;  
}

.logo {
  height: 150px;
}

.header {
  position: fixed;
  top: -100px;
  width: 100%;
  background-color: var(--accent-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  height: 80px;
  transition: all 0.3s ease;
}

.header.scrolled {
  top: 0;
}

.header .logo {
  height: 60px;
}

/* Citação + botão */
.quote-section {
  text-align: center;
  max-width: 800px;
  padding-top: 100px;
  font-family: 'The Seasons', serif;
  font-style: normal;
  color: var(--accent-dark);
}

.quote {
  font-size: 2.8em;
  margin-bottom: 0.2em;
  line-height:1.4em;
}

.quote-sym {
  font-size: 7em;
  line-height: 0.1em;
  margin-bottom: 0;
}


.quote-author {
  font-size: 1.5em;
  line-height: 1em;
  margin-bottom: 100px;
}

.cta-button {
  padding: 12px 24px;
  background-color: var(--red-dark);
  color: #fff;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1em;
  cursor: pointer;
}

/* Quem sou */
.about-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  max-width: 300px;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
}

/* Sessão FAQ */
.faq-section {
  padding: 60px 20px;
  background-color: #EFEFE2;
}

.faq-section h2 {
  text-align: center;
}

.faq-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 20px;
}

.faq-question {
  width: 30%;
  font-family: 'The Seasons', serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #C1412E;
}

.faq-answer {
  width: 70%;
  font-family: 'Filson Pro', sans-serif;
  font-size: 1rem;
  color: #333;
  position: relative;
  padding-bottom: 20px;
}

.faq-answer a {
  color: #333;
}

.faq-answer p:first-child {
  margin-top: 0;
}

.divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #D6D7CB;
}


/* Contato */
.contact-section {
  text-align: center;
  background-color: var(--accent-dark);
  font-family: 'The Seasons', sans-serif;
  font-size: 1.3em;
  font-weight: normal;
  color: var(--bg-light);
}

.contact-section a {
  margin-left: 10px;
  color: var(--bg-light);
  text-decoration: none;
}

.contact-section label {
  line-height: 2.5em;
}

@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    text-align: center;
  }

  .cover .logo {
    height: 100px;
  }

  .header {
    height: 70px;
  }

  .header .logo {
    height: 60px;
  }

  .quote-section {
    padding-bottom: 0;
    padding-top: 0;
  }

  .quote {
    font-size: 2.3em;
  }

  .quote-sym {
    margin: 200px 0 20px;
  }

  .quote-author {
    font-size: 1.4em;
    margin-bottom: 100px;
  }

  .faq-item {
    flex-direction: column;
  }
  
  .faq-question, 
  .faq-answer {
    width: 100%;
  }

}