:root {
  --font-grande: 'Arial', sans-serif;
}

.certificado-detalhe {
  background: #fff;
  padding: 6rem 0;
  min-height: 100vh;
  position: relative;
}

.certificado-detalhe .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.certificado-detalhe h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: #333;
  font-family: var(--font-grande);
  text-align: center;
}

.certificado-detalhe p {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 3rem;
  text-align: center;
}

.certificado-detalhe img {
  max-width: 80%;
  display: block;
  margin: 2rem auto;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-download {
  display: block;
  width: fit-content;
  margin: 2rem auto;
  padding: 1rem 2rem;
  background: #007bff;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  text-align: center;
}

.btn-download:hover {
  background: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-voltar {
  position: fixed;
  top: 2rem;
  left: 2rem;
  padding: 0.75rem 1.5rem;
  background: #f8f9fa;
  color: #333;
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
  font-size: 1rem;
  z-index: 100;
}

.btn-voltar:hover {
  background: #e9ecef;
  border-color: #ccc;
  transform: translateY(-1px);
}

/* Media Queries */
@media (max-width: 992px) {
  .certificado-detalhe {
    padding: 5rem 0;
  }
  
  .certificado-detalhe h1 {
    font-size: 2.5rem;
  }
  
  .certificado-detalhe p {
    font-size: 1.15rem;
  }
  
  .certificado-detalhe img {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .certificado-detalhe {
    padding: 4rem 0;
  }
  
  .certificado-detalhe h1 {
    font-size: 2rem;
  }
  
  .certificado-detalhe p {
    font-size: 1.1rem;
  }
  
  .btn-voltar {
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
  }
  
  .certificado-detalhe img {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .certificado-detalhe {
    padding: 3.5rem 0;
  }
  
  .certificado-detalhe .container {
    padding: 0 1.5rem;
  }
  
  .certificado-detalhe h1 {
    font-size: 1.8rem;
  }
  
  .btn-download {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}


