@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap');

/* =================== RESET BÁSICO =================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =================== ESTRUTURA APP (SEM ROLAGEM) =================== */
html, body {
  height: 100vh;
  height: 100dvh; /* Altura real para mobile */
  overflow: hidden; /* Trava a rolagem global */
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: radial-gradient(circle at center, #1a1a1a 0%, #0d0d0d 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
}

/* =================== Cabeçalho =================== */
header {
  background-color: #141414;
  color: #fff;
  padding: 0.8rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  z-index: 1000;
  flex-shrink: 0; 
  border-bottom: 2px solid #b58c38;
  width: 100%;
  box-sizing: border-box;
  height: auto;
}

/* Área do logo unificada para alinhamento perfeito */
.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

header h1, .logo-area h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  font-style: italic;
  color: var(--primary-color, #dfa629);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.8);
}

.logo-icon {
  width: 75px;
  height: 75px;
  object-fit: contain;
  margin: 0; 
  filter: drop-shadow(0 0 4px rgba(223, 166, 41, 0.4));
}

/* =================== Responsividade Mobile =================== */
@media (max-width: 768px) {
  header {
    padding: 0.6rem 1rem;
    flex-direction: column; /* Empilha os elementos em telas menores para centralizar */
    gap: 12px;
  }

  .logo-area {
    justify-content: center;
    width: 100%;
  }

  header h1, .logo-area h1 {
    font-size: 1.5rem; /* Tamanho ajustado para maior visibilidade */
    gap: 8px;
  }

  .logo-icon {
    width: 65px; /* Tamanho aumentado de 50px para 65px */
    height: 65px; /* Tamanho aumentado de 50px para 65px */
  }

  header nav {
    justify-content: center;
    width: 100%;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  header h1, .logo-area h1 {
    font-size: 1.3rem; /* Tamanho ajustado para maior visibilidade */
    gap: 6px;
  }

  .logo-icon {
    width: 55px; /* Tamanho aumentado de 40px para 55px */
    height: 55px; /* Tamanho aumentado de 40px para 55px */
  }

  header nav a {
    font-size: 0.8rem;
  }
}

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #dfa629;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #dfa629;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

.btn-header {
  background-color: #dfa629;
  color: #0d0d0d;
  padding: 10px 22px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(223, 166, 41, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-header:hover {
  background-color: #c48c22;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(223, 166, 41, 0.5);
}

/* =================== CONTEÚDO PRINCIPAL =================== */
main {
  flex: 1; /* Ocupa todo o espaço entre o header e o footer */
  display: flex;
  flex-direction: column;
  overflow: hidden; /* Garante que o conteúdo não force rolagem */
}

/* =================== BANNER E IMAGEM =================== */
.banner {
  flex: 1;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  /* Gradiente radial centralizado muito leve para criar um ponto de foco sem escurecer */
  background: radial-gradient(circle at center, rgba(223, 166, 41, 0.05) 0%, transparent 65%),
              linear-gradient(rgba(13, 13, 13, 0.35), rgba(13, 13, 13, 0.65));
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  /* Brilho aumentado para revelar mais detalhes da imagem de fundo */
  filter: brightness(0.65) saturate(1.15) contrast(1.05);
  z-index: 1;
  transition: filter 0.5s ease;
}

/* =================== BANNER CONTENT (Vidro suave e refinado) =================== */
.banner-content {
  position: relative;
  color: white;
  text-align: center;
  z-index: 10;
  padding: 42px 56px;
  /* Fundo mais translúcido para integrar melhor com a imagem de fundo */
  background: rgba(16, 15, 14, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(181, 140, 56, 0.4);
  border-radius: 28px;
  max-width: 65%;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.75),
              0 0 12px rgba(223, 166, 41, 0.08);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.banner-content h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 4.5rem;
  margin-bottom: 18px;
  color: #dfa629;
  text-shadow: 2px 3px 10px rgba(0, 0, 0, 0.95),
               0 0 8px rgba(223, 166, 41, 0.25);
  line-height: 1.15;
  letter-spacing: 0.5px;
}

.banner-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: #e6e6e6;
  line-height: 1.55;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
  max-width: 85%;
}

.banner-content button {
  padding: 14px 38px;
  font-size: 1.1rem;
  background: linear-gradient(135deg, #dfa629 0%, #b58c38 100%);
  color: #0d0d0d;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  letter-spacing: 0.5px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(223, 166, 41, 0.3),
              0 2px 4px rgba(0, 0, 0, 0.2);
}

.banner-content button:hover {
  background: linear-gradient(135deg, #c48c22 0%, #946f1e 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 22px rgba(223, 166, 41, 0.45);
}

.banner-content button:active {
  transform: translateY(1px) scale(0.99);
  box-shadow: 0 4px 10px rgba(223, 166, 41, 0.25);
}

/* Animação Suave */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =================== RESPONSIVIDADE =================== */
@media (max-width: 768px) {
  .banner-content {
    max-width: 90%;
    padding: 24px 18px;
  }

  .banner-content h2 {
    font-size: 2.7rem;
    margin-bottom: 12px;
  }

  .banner-content p {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }

  .banner-content button {
    padding: 10px 22px;
    font-size: 0.88rem;
  }
}

@media (max-width: 480px) {
  .banner-content h2 {
    font-size: 2.3rem;
  }
}
/* =================== FOOTER =================== */
footer {
  background-color: #141414;
  color: #dfa629;
  text-align: center;
  padding: 1.1rem;
  font-size: 0.95rem;
  border-top: 4px solid #b58c38;
  flex-shrink: 0; /* Garante que o footer não suma */
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.8);
}

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

  nav {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }
}