@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&family=Oswald:wght@700&display=swap');

html, body {
    height: 100%;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    display: flex;
    flex-direction: column;
}

.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease-in-out;
    background-color: transparent;
    font-family: 'Roboto', sans-serif;
}

.navbar.navbar-scrolled {
    background-color: #2c3e50;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 1px;
    transition: color 0.2s;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5); /* Sombra no texto */
}

.navbar-brand:hover {
    color: #c0c0c0;
}

.nav-link {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    margin-left: 15px;
    margin-right: 15px;
    transition: color 0.2s;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease-in-out;
}

.nav-link:hover::after {
    width: 100%;
}

.container.my-5 {
    flex-grow: 1;
}

.jumbotron-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.pexels.com/photos/1036856/pexels-photo-1036856.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
    background-size: cover;
    background-position: center;
    color: white;
}

.btn-primary {
    background-color: #2c3e50;
    border-color: #2c3e50;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: #34495e;
    border-color: #34495e;
}

.card {
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.card-title {
    color: #2c3e50;
}

img {
    border-radius: 4px;
}

footer.bg-dark {
    background-color: #2c3e50 !important;
}

