/* Custom Styles */
body {
    padding-top: 56px;
}

header {
    background: #007bff;
    background: linear-gradient(90deg, #007bff 0%, #0056b3 100%);
}

.btn-primary {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-primary:hover {
    background-color: #004494;
    border-color: #004494;
}

section {
    padding: 60px 0;
}

#galeria img {
    transition: transform 0.3s ease;
}

#galeria img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.video-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* Proporção 16:9 (9 / 16 = 0.5625) */
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}