
body{
    font-family: Arial, sans-serif;
    background:#f8f8f8;
}
.slide a{
	text-decoration: none;
}
.navbar{
    background:#efefe8;
    height:75px;
    border-bottom:1px solid #ddd;
}

.navbar-nav{
    gap:40px;
}

.nav-link{
    color:#333;
    font-size:20px;
    font-weight:500;
}

.nav-link:hover{
    color:#0c8f3e;
}

.hero{
    height:320px;
    background:#333;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero h1{
    color:#fff;
    font-size:80px;
    font-weight:300;
}

.hero video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* preenche toda a área sem distorcer */
    display: block;
}
.dados-section{
    background:#f8f8f8;
    padding:70px 0;
}

.card-dado{
    background:#fff;
    border:none;
    border-radius:18px;
    box-shadow:0 0 18px rgba(0,0,0,.12);
    text-align:center;
    padding:35px 20px;
    height:220px;
    transition:.3s;
}

.card-dado:hover{
    transform:translateY(-5px);
}

.card-dado img{
    height:85px;
    margin-bottom:20px;
}

.card-dado h3{
    font-size:22px;
    font-weight:700;
    color:#333;
    line-height:1.1;
}

.carousel-control-prev,
.carousel-control-next{
    width:80px;
    opacity:1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    display:none;
}

.arrow-custom{
    font-size:80px;
    color:#11a63d;
    line-height:1;
}

.carousel-indicators{
    bottom:-60px;
}

.carousel-indicators [data-bs-target]{
    width:19.2px;
	height:0px!important;
    border-radius:50%;
    background:#888;
}

.carousel-indicators .active{
    background:#555;
}

.logo{
    height:50px;
}