html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

/* NAVBAR */
.navbar {
    background: transparent;
    transition: 0.3s;
}

/* HERO */
.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* OVERLAY */
.overlay {
    height: 100%;
    width: 100%;
}

/* BANNER CENTRAL */
.banner-full {
    width: 100%;
    max-width: 1000px;
    height: auto;
}

/* CONTROLES DO SLIDE */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0,0,0,0.2);
    border-radius: 50%;
    padding: 20px;
}

/* CORREÇÃO DE SCROLL */
section {
    scroll-margin-top: 100px;
}


.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}
.card:hover {
    transform: translateY(-5px);
}

.card h4 {
    font-weight: bold;
}

.badge {
    font-size: 0.8rem;
    padding: 6px 10px;
}

img.rounded-circle {
    border: 2px solid #B01300;
    transition: 0.3s;
}

.card:hover img.rounded-circle {
    transform: scale(1.05);
}




/* MENU PADRÃO */
.nav-link {
    color: #666;
    transition: 0.3s;
}

/* MENU ATIVO NORMAL */
.nav-link.active {
    color: #000 !important;
    border-bottom: 3px solid #B01300;
}
.nav-link:hover i {
	color: #B01300 !important;
    transition: all 0.3s ease;
}


/* DROPDOWN ITEM ATIVO */
.dropdown-item.active {
    background: #B01300;
    color: #fff !important;
}

/* "MAIS" ATIVO */
.nav-item.dropdown .nav-link.active {
    color: #000 !important;
}




.nav-tabs {
    border-bottom: none;
}

.nav-tabs .nav-link {
    color: #B01300 !important;
    background: #fff;
    border: 1px solid #B01300;
    border-radius: 8px;
    margin: 0 5px;
    padding: 10px 20px;
    transition: 0.3s;
}

.nav-tabs .nav-link:hover {
    background: #F8AF3C;
    color: #000 !important;
	border: 1px solid #B01300;
}

.nav-tabs .nav-link.active {
    background: #B01300 !important;
    color: #fff !important;
	border: 1px solid #B01300;
}


#apresentacao p {
    text-align: justify;
}

#apresentacao h4, 
#apresentacao div ul li {
    text-align: justify;
}

.lote1 {
    background: #FCD79E;
    color: #000;
}

.lote2 {
    background: #FAC36D;
    color: #000;
}

.lote3 {
    background: #F8AF3C;
    color: #000;
}

h6.categoria {
  line-height: 1.2; 
  min-height: 2.4em; 
  margin: 0;
  vertical-align: top;
}

.btn i {
    font-size: 1.2rem;
}

.text-red { color: #B01300; }

.text-yellow { color: #F8AF3C; }

.btn-red {
    background: #B01300;
    color: #fff;
}
.btn-red:hover {
    background: #F8AF3C;
    color: #000;
}

#btnTopo {
    position: fixed;
    bottom: 30px;
    right: 10px;
    background: #B01300;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 20px;
    display: none;
    z-index: 999;
}

.text-center {
	text-align: center;
}

/* CAIXA DAS LOGOS */
.logo-box {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

/* TAMANHO MAIOR */
.logo-box.grande {
    padding: 30px;
}

/* IMAGEM */
.logo-box img {
    max-height: 70px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* IMAGEM MAIOR */
.logo-box.grande img {
    max-height: 120px;
}

/* HOVER */
.logo-box:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.logo-box:hover img {
    transform: scale(1.1);
}