body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f4f4;
}

html {
	scroll-behavior: smooth;
}

.honeypot {
    position: absolute;
    left: -9999px;
    top: -9999px;
}

#btnSideBar {
    color:white;
    border:none;
    background-color:#2c3e50;
}

form textarea:focus {
	outline: none;
	border-color: #3498db;
	box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
}

form input:focus {
	outline: none;
	border-color: #3498db;
	box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
}

select:focus {
	outline: none;
	border-color: #3498db;
	box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
}

.podtec-banner {
    background-image: 
    url('../img/podtec.jpg'); /* Substitua pelo caminho da sua imagem */
    background-size: cover;
    background-position: center;
    height: 400px;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.podtec-banner::before {
    content: "";
     position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(0,0,0,0.6), rgba(0,0,0,0.4));
    z-index: 1;
}

.podtec-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.podtec-banner h2 span {
    text-shadow: 1px 1px 2px #000;
}

.podtec-banner .btn {
    font-weight: bold;
    transition: transform 0.2s ease;
}

.podtec-banner .btn:hover {
    transform: scale(1.05);
}

#toast {
  visibility: hidden;
  min-width: 250px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  font-family: sans-serif;
}

#toast.show {
  visibility: visible;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@keyframes fadein {
  from { bottom: 0; opacity: 0; }
  to { bottom: 30px; opacity: 1; }
}

@keyframes fadeout {
  from { bottom: 30px; opacity: 1; }
  to { bottom: 0; opacity: 0; }
}

.breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 8px 16px;
  background-color: #f5f5f5;
  border-radius: 4px;
}

.breadcrumb li {
  margin-right: 8px;
}

.breadcrumb li::after {
  content: ">";
  margin-left: 8px;
}

.breadcrumb li:last-child::after {
  content: "";
}

.breadcrumb li a,
.breadcrumb-link {
  text-decoration: none;
  color: #007bff;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  margin-right: 0px!important;
}

.breadcrumb li a:hover,
.breadcrumb-link:hover {
  text-decoration: underline;
}

.breadcrumb li.active {
  color: #555;
  font-weight: bold;
}

.btn-toggle {
  display: block;
  margin: 20px auto;
  padding: 10px 15px;
  background-color: SteelBlue;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.btn-toggle:hover {
  background-color: lightBlue;
}
