/* Reset e estilos base */
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

body {
   font-family: 'Inter', sans-serif;
   line-height: 1.6;
   color: #333;
   background-color: #f9f9f9;
   padding: 20px;
}

#container {
   max-width: 1000px;
   margin: 0 auto;
   background-color: white;
   border-radius: 10px;
   box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
   padding: 30px;
}

/* Estilo do cabeçalho */
#nome h1 {
   color: #2c3e50;
   text-align: center;
   margin-bottom: 10px;
   font-size: 2.5rem;
   font-weight: 600;
}

#local {
   text-align: center;
   color: #7f8c8d;
   margin-bottom: 40px;
   font-size: 1.2rem;
}

/* Estilo das seções */
#lista {
   list-style: none;
}

#lista li {
   margin-bottom: 40px;
   padding-bottom: 30px;
   border-bottom: 1px solid #eee;
}

#lista li:last-child {
   border-bottom: none;
}

h3 {
   color: #3498db;
   margin-bottom: 15px;
   font-size: 1.5rem;
   position: relative;
   padding-left: 15px;
}

h3::before {
   content: '';
   position: absolute;
   left: 0;
   top: 5px;
   height: 20px;
   width: 5px;
   background-color: #3498db;
   border-radius: 3px;
}

/* Estilo do texto */
p {
   margin-bottom: 15px;
   text-align: justify;
   color: #555;
}

/* Estilo das imagens */
#fotominha {
   border-radius: 8px;
   margin: 10px;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
   transition: transform 0.3s ease;
   object-fit: cover;
}

#fotominha:hover {
   transform: scale(1.03);
}

#fototrab {
   border-radius: 8px;
   margin-right: 20px;
   margin-bottom: 10px;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Layout responsivo para imagens */
@media (max-width: 768px) {
   #fotominha {
      width: 100%;
      height: auto;
      margin: 10px 0;
   }

   #fototrab {
      float: none;
      margin: 0 0 15px 0;
      width: 100%;
      height: auto;
   }
}

/* Efeitos e detalhes */
em {
   font-style: italic;
   color: #e74c3c;
}

/* Animação suave para as seções */
#lista li {
   opacity: 0;
   transform: translateY(20px);
   animation: fadeInUp 0.6s forwards;
}

@keyframes fadeInUp {
   to {
      opacity: 1;
      transform: translateY(0);
   }
}

/* Atrasos para a animação em cascata */
#lista li:nth-child(1) {
   animation-delay: 0.1s;
}

#lista li:nth-child(2) {
   animation-delay: 0.2s;
}

#lista li:nth-child(3) {
   animation-delay: 0.3s;
}

#lista li:nth-child(4) {
   animation-delay: 0.4s;
}

#lista li:nth-child(5) {
   animation-delay: 0.5s;
}

#lista li:nth-child(6) {
   animation-delay: 0.6s;
}

/* Botão de voltar ao topo (opcional) */
.back-to-top {
   position: fixed;
   bottom: 20px;
   right: 20px;
   background-color: #3498db;
   color: white;
   width: 50px;
   height: 50px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   text-decoration: none;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
   opacity: 0;
   transition: opacity 0.3s;
}

.back-to-top.visible {
   opacity: 1;
}