body {
    color: #797979;
    background: #0F172B;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

h1,
h2, 
h3, 
h4,
h5,
p, 
h6 {
    color: #ffffff;
}

img{

    width: 100%;
}

a {
    color: #313131;
    transition: .3s;
}

iframe{
    width: 100%;
}

/********** Template CSS **********/
:root {
    --primary: #FEA116;
    --light: #F1F8FF;
    --dark: #0F172B;
}

.btn-warning {
    background-color: #FEA116;
    border: none;
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
}

.banner h2 {
    font-size: 24px;
    margin-top: 20px;
}

.banner p {
    font-size: 16px;
    line-height: 1.6;
    color: #F1F8FF;
}

.banner-logos .mb-4 {
  height: 40px; /* Espaçamento acima da logo encontro-gerdau */
}

.capa-img {
  width: 100%;
  height: 400px; /* aumentada de 300 para 450px */
  object-fit: cover;
  filter: brightness(0.4);
}

.top-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-logos {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: 5px;
  transform: translate(-50%, -50%);
}

.logo-encontro {
    max-width: 430px; /* valor maior para destacar a marca */
    width: 100%;
    margin-top: 5px;
}

.logo-delmaipo {
  max-width: 140px;
  width: 100%;
}

.btn-warning {
  background-color: #FEA116;
  border: none;
  color: #000;
  font-weight: bold;
  text-transform: uppercase;
}


.marcas img{
margin-top: 5px;
margin-bottom: -5px; 
width: 100%;   
animation: none;
}



/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}


/*** Navbar ***/
.navbar-dark img{
    margin-left: 70px;
    margin-top: 10px;
    
}


@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
    }

    .navbar-dark .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, .1)
    }

    .navbar-dark .navbar-nav .nav-link,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
    }

    .navbar-dark .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
        background: transparent !important;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: var(--dark) !important;
    }
}


/*** Hero Header ***/
.hero-header {
    background: linear-gradient(rgba(15, 23, 43, .9), rgba(15, 23, 43, .9)), url(../img/bg-hero.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.img-fluid {
    animation: imgRotate 90000ms linear infinite;
}

@keyframes imgRotate { 
    100% { 
        transform: rotate(360deg); 
    } 
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}








