/* =========================
GERAL
========================= */

body{
    font-family: "Open Sans", sans-serif;
    margin:0;
    padding:0;
}

.section{
    padding:80px 0;
}

.section-title{
    font-weight:700;
    margin-bottom:20px;
    color:#1f2f55;
}

/* =========================
MENU
========================= */

.navbar {
    background: transparent !important;
    position: absolute;
    width: 100%;
    z-index: 1050;
    transition: 0.3s;
}

.navbar a {
    color: #fff !important;
    font-weight: 500;
}

.navbar a:hover {
    color: #f26522 !important;
}

.navbar.scrolled {
    background: #1f2f55 !important;
    position: fixed;
}

.navbar-toggler-icon {
    filter: invert(1);
}

/* =========================
HERO / BANNER
========================= */

.hero{
    color:#fff;
    padding:0;
    position:relative;
}

.hero h1{
    font-size:38px;
    font-weight:700;
    line-height:1.2;
}

.hero p{
    font-size:18px;
    margin:20px 0;
}

.bg-title{
    font-size: 2.5em;
    background: url("../img/bg-titulo.png") bottom left no-repeat;
    font-weight: bold;
    padding: 0 0 14px 0;
}

.bg-title-center{
    font-size: 2.5em;
    background: url("../img/bg-titulo.png") bottom center no-repeat;
    font-weight: bold;
    padding: 0 0 14px 0;
}

.bg-title-white{
    font-size: 2.5em;
    background: url("../img/bg-titulo-branco.png") bottom center no-repeat;
    font-weight: bold;
    padding: 0 0 14px 0;
    color: #1f2a4e;
}

.btn-orange{
    background:#f26522;
    color:#fff;
    border:none;
    padding:12px 28px;
    border-radius:6px;
    font-weight:600;
    transition:0.3s;
}

.btn-orange:hover{
    background:#d65318;
}

/* =========================
EMPRESA
========================= */

#empresa p{
    color:#555;
    line-height:1.7;
}

/* =========================
QUALIDADE
========================= */

.qualidade{
    background: url("../img/bg-qualidade.png") #16294b;
    color:#fff;
}

.qualidade .section-title{
    color:#fff;
}

.qualidade p{
    line-height:1.7;
}

/* =========================
SERVIÇOS
========================= */

.service-card{
    background:#fff;
    border-radius:12px;
    padding:30px 25px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
    transition:0.3s;
    height:100%;
}

.service-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.service-icon{
    font-size:42px;
    margin-bottom:15px;
    color:#1f2f55;
}

.service-card h5{
    font-size:16px;
    font-weight:600;
    color:#333;
}

/* =========================
OWL CAROUSEL
========================= */

.owl-carousel .owl-stage{
    display:flex;
}

.owl-carousel .owl-item{
    display:flex;
}

.owl-nav{
    margin-top:25px;
    text-align:center;
}

.carousel-arrow{
    font-size:28px;
    color:#1f2f55;
    padding:6px 16px;
    border:1px solid #ddd;
    border-radius:6px;
    background:#fff;
    transition:0.3s;
}

.carousel-arrow:hover{
    background:#f26522;
    color:#fff;
    border-color:#f26522;
}

/* =========================
CONTATO
========================= */

.contato-box{
    background: url("../img/bg-contato.png") #f26522;
    color:#fff;
    padding:50px 30px;
    border-radius:12px;
}

.contato-box h3{
    font-weight:700;
    margin-bottom:10px;
}

.contato-item{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    font-size:16px;
    font-weight:500;
}

.contato-icon{
    font-size:20px;
}

/* =========================
FOOTER
========================= */

footer{
  background:#16294b;
  color:#fff;
  padding:20px;
  font-size:14px;
  line-height: 1.65em;
}
footer a{
  text-decoration: none;
  float: right;
}
footer img{
  margin: 0 0 0 10px;
}
footer a img:hover {
    opacity: 0.5;
    transition: opacity 0.3s ease; /* Suaviza a transiÃ§Ã£o */
}

/* =========================
BOTÃO WHATSAPP
========================= */

.whatsapp{
    position:fixed;
    bottom:20px;
    right:20px;
    background:#25d366;
    color:#fff;
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    text-decoration:none;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
    z-index:999;
    transition:0.3s;
}

.whatsapp:hover{
    transform:scale(1.1);
}

.img-animada {
    opacity: 0;
    transform: translateY(20px) scale(1.03);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

.img-animada.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.navbar.scrolled {
    background: #1f2f55 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    transition: background 0.3s ease, padding 0.3s ease;
}

/* =========================
RESPONSIVIDADE
========================= */

@media (max-width:991px){

    .hero{
        text-align:center;
    }

    .hero h1{
        font-size:30px;
    }

    .section{
        padding:60px 0;
    }
    .navbar .collapse.show {
        background: #fff;
        padding: 10px 0;
    }

    .navbar .collapse.show .nav-link {
        color: #000 !important;
    }

    .navbar .collapse.show .navbar-brand {
        color: #000 !important;
    }

}

@media (max-width:576px){

    .hero h1{
        font-size:26px;
    }

    .service-card{
        padding:25px;
    }

}