:root {
  /* Fontes */
  --fonte-titulo: "Cormorant Garamond", serif;
  --fonte-subtitulo: "Poppins", sans-serif;
  --cor-fundo: #f8f9fa;
  --cor-primeira: #d97706; /* Laranja sofisticado */
  --cor-segunda: #ffffff;
  --cor-texto: #333;
  --sombra-card: rgba(0, 0, 0, 0.1);
  --blur: 20px;
  /* Cores do Banner - Paleta de Laranja Limpa */
  --cor-fundo-base: #fefbf7;
  --cor-texto-principal: #5d4037;
  --cor-texto-enfase: #4e342e;
}

/* ===== ESTRUTURA PRINCIPAL OTIMIZADA ===== */
.banner-header {
  background-image:
        /* Camada 3 (topo): Brilho central */ radial-gradient(
      ellipse at 50% 40%,
      rgba(255, 167, 38, 0.18) 0%,
      transparent 75%
    ),
    /* Camada 2: Brilhos nos cantos */
      radial-gradient(
        ellipse at 80% 20%,
        rgba(216, 61, 5, 0.2) 0%,
        transparent 40%
      ),
    radial-gradient(
      ellipse at 20% 80%,
      rgba(232, 78, 6, 0.25) 0%,
      transparent 40%
    );

  /* Camada 1 (base): A cor de fundo sólida */
  background-color: var(--cor-fundo-base);

  color: var(--cor-texto-principal);
  text-align: center;
  padding: 3rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative; /* Necessário para o z-index do conteúdo */
}

.logo-circular,
.banner-content {
  z-index: 2;
  position: relative;
}

.logo-circular {
  width: 180px;
  height: 180px;
  margin-bottom: 1rem;
}

.logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.banner-content {
  margin-top: -1rem;
}

/* ===== TEXTOS OTIMIZADOS ===== */
.banner-content {
  margin-top: -1.5rem; /* ALTERADO: Aumentado o valor negativo de -0.2rem para -1.5rem para aproximar o texto */
  z-index: 2;
  position: relative;
  /* Otimização de texto */
  text-rendering: optimizeSpeed; /* Prioriza velocidade sobre qualidade */
}

.banner-content h1 {
  font-family: var(--fonte-titulo);
  font-size: 2.4rem;
  line-height: 1.3;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--cor-texto-principal);
}

.banner-content h2 {
  font-family: var(--fonte-titulo);
  font-size: 1.4rem;
  line-height: 1.3;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--cor-texto-principal);
}

.tagline {
   font-family: var(--fonte-subtitulo);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.5;
    color: var(--cor-texto-principal);
}

.tagline-emphasis {
   font-weight: 600;
    display: block;
    margin-top: 0.3rem;
    font-style: italic;
    color: var(--cor-texto-enfase);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  z-index: 9999;
  backdrop-filter: blur(10px);
}

.cookie-banner-text {
  flex: 1;
  font-size: 15px;
  color: #333;
}

.cookie-banner-text a {
  color: #e16619;
  text-decoration: underline;
  font-weight: 500;
}

.cookie-banner-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-banner-buttons button {
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(90deg, #f4974f, #e16619);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.cookie-banner-buttons button:hover {
  background: linear-gradient(90deg, #e67e22, #d35400);
}

/* Desktop */
@media (min-width: 769px) {
  .banner-header {
    padding-top: 3.5rem;
    padding-bottom: 2.5rem;
  }

  .logo-circular {
    width: 240px;
    height: 240px;
    margin-bottom: 1rem;
  }

  .banner-content {
    margin-top: -1.8rem; /* ALTERADO: Ajustado de -0.3rem para -1.8rem */
  }
}
/* Tablet e Mobile */
@media (max-width: 768px) {
  .banner-header {
    padding-top: 4rem; /* Reduzido de 5.5rem para 4rem */
    padding-bottom: 2rem;
  }

  .logo-circular {
    width: 160px;
    height: 160px;
    margin-bottom: 0.8rem;
  }

  .banner-content {
    margin-top: -1.2rem; 
  }

  .banner-content h1 {
    font-size: 2.2rem; 
  }
}
/* Mobile pequeno */
@media (max-width: 480px) {
  .banner-header {
    padding-top: 4rem; 
    padding-bottom: 1.5rem;
  }

  .logo-circular {
    width: 140px;
    height: 140px;
    margin-bottom: 0.6rem;
  }

  .banner-content h1 {
    font-size: 1.6rem;
  }

  .tagline {
    font-size: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .banner-header,
  .logo-image,
  .banner-content * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 16px;
    bottom: 10px;
    left: 10px;
    right: 10px;
  }

  .cookie-banner-text {
    font-size: 14px;
  }

  .cookie-banner-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-banner-buttons button {
    width: 100%;
    font-size: 15px;
    padding: 12px;
  }
}
