/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #F3E5D8;
  color: #3B2A25;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  padding: 0 40px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  z-index: 1000;
}

header .logo img {
  height: 70px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav a {
  text-decoration: none;
  color: #3B2A25;
  font-weight: 500;
}

nav a:hover,
nav a.active {
  color: #6B4F3A;
}

/* BANNER COM PROFUNDIDADE */
.banner {
  height: 60vh;
  padding-top: 70px;

  position: relative;

  background:
    linear-gradient(rgba(243,229,216,0.8), rgba(243,229,216,0.95)),
    url('../imgs/banner-cafe.png') no-repeat center center;

  background-size: cover;
  background-attachment: fixed;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* BLUR SUAVE */
.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(2px);
}

/* TEXTO DO BANNER */
.banner-content {
  position: relative;
  z-index: 1;

  transform: translateY(-10px);
  animation: fadeUp 0.8s ease;
}

.banner-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3em;
  margin-bottom: 10px;
}

.banner-content p {
  color: #6B4F3A;
  font-size: 1.1em;
}

/* SEÇÃO SOBRE */
.sobre {
  padding: 80px 20px;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* TÍTULOS */
.sobre h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2em;
  margin-bottom: 20px;
}

/* TEXTOS */
.sobre p {
  margin-bottom: 30px;
  line-height: 1.7;
  color: #5a3f33;
}

/* LISTA */
.sobre ul {
  list-style: none;
  margin-top: 20px;
}

.sobre ul li {
  margin: 12px 0;
  font-size: 1em;
}

/* CARD STYLE (detalhe premium) */
.sobre .container {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  padding: 40px;
  border-radius: 20px;

  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

/* FOOTER */
footer {
  margin-top: 60px;
  height: 50px;

  display: flex;
  justify-content: center;
  align-items: center;

  background-color: #3B2A25;
  color: #fff;
  font-size: 0.9em;
}

/* ANIMAÇÃO */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(-10px);
  }
}

/* RESPONSIVO */
@media (max-width: 768px) {

  nav ul {
    flex-direction: column;
  }

  .banner-content h1 {
    font-size: 2em;
  }

  .sobre .container {
    padding: 25px;
  }
}