/* Paleta de cores para Zélia Bordados */
:root {
  --bg-soft: #F4F5F0; /* Branco Algodão / Tecido */
  --text-dark: #2F4F2F; /* Verde Musgo Escuro (Texto principal) */
  --accent-primary: #3F6B3A; /* Verde Folha Bordado */
  --accent-secondary: #C9A441; /* Dourado Artesanal */
  --text-muted: #5A6F5A; /* Verde Acinzentado */
  --border-color: rgba(63, 107, 58, 0.25); /* Verde Suave Translúcido */
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Baskerville', serif; /* Fonte mais elegante/clássica */
}

body {
  color: var(--text-dark);
  line-height: 1.5;
  min-height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

/* === SPLASH SCREEN (INDEX) === */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-soft) 0%, var(--accent-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

#splash-screen.fade-out {
    opacity: 0;
}

#splash-logo img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 5px solid var(--accent-primary);
    animation: pulse 1.5s infinite;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Fundo da tela - Mantenha a imagem de bordado/tecido e o filtro suave */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Sugestão: Use uma imagem de fundo de tecido ou bordado de fita */
  background-image: url("../imgs/background-inicio.webp"); 
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  filter: blur(2px) brightness(0.7); /* Filtro mais suave */
  z-index: -1;
}

#container {
  width: 380px; /* Levemente mais largo */
  height: 90%;
  max-height: 99vh;
  background: var(--bg-soft);
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  padding: 10px;
  text-align: center;
  /* Scroll se o conteúdo for grande */
  overflow-y: auto; 
}

#profile {
  padding: 10px 0 20px 0;
}

#profile img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 12px;
}

#profile h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

#profile p {
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--text-muted);
}

nav {
  width: 100%;
  margin-top: 20px;
}

nav .menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px; /* Espaçamento maior entre botões */
  padding: 0;
}

nav .menu li {
  width: 100%;
}

/* NOVO ESTILO DOS BOTÕES - Mais artesanal e elegante */
nav .menu a {
  display: block;
  width: 100%;
  text-decoration: none;
  background: #fff; /* Fundo branco para destacar */
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 10px 20px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  line-height: 1; /* Alinha o texto na vertical */
}

/* Conteúdo do botão para alinhar ícone e texto */
nav .menu .btn-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

nav .menu .btn-content i {
  font-size: 1.25em;
  color: var(--accent-primary); /* Ícone Verde Folha */
  transition: color 0.3s ease;
}

/* Efeito Hover */
nav .menu a:hover {
  background: var(--accent-secondary); /* Rosa Chá no hover */
  color: #fff;
  border-color: var(--accent-secondary);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

nav .menu a:hover .btn-content i {
  color: #fff; /* Ícone Branco no hover */
}

/* FIM DO NOVO ESTILO */

/* Estilo para a seção de Destaque/Prazo */
.destaque-info {
  margin: 25px auto 15px auto;
  padding: 15px;
  text-align: center;
  background: var(--bg-soft);
  border: 1px dashed var(--accent-primary); /* Borda tracejada artesanal */
  border-radius: 12px;
  color: var(--text-muted);
}

.destaque-info h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.destaque-info p {
  font-size: 0.9rem;
  margin: 4px 0;
}

footer {
  text-align: center;
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

footer a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
}

/* Media Query de Responsividade */
@media (max-width: 450px) {
  #container {
    padding: 18px;
    width: 90vw;
    margin: 20px;
    border-radius: 12px;
  }

  #profile img {
    width: 90px;
    height: 90px;
    margin-bottom: 8px;
    border-width: 3px;
  }

  #profile h2 {
    font-size: 1.3rem;
  }
  
  nav .menu a {
    font-size: 1rem;
    padding: 12px 10px;
  }
}