 .hero-header {
    min-height: 50vh;
    background: url("../images/background.jpg") center / cover no-repeat;
}

.footer-link {
    color: rgba(255,255,255,.7);
    text-decoration: none;
    transition: color .25s ease;
}

.footer-link:hover {
    color: #f39c12;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all .25s ease;
}

.social-icon:hover {
    background: #f39c12;
    color: #000;
}


/* ===============================
   STATS FLUTUANTE
   =============================== */

.stats-hover .stat-box {
    position: relative;
    cursor: pointer;
}

.stats-hover .stat-box .full {
    display: none;
    font-size: 0.8rem;
}

.stats-hover .stat-box:hover .short {
    display: none;
}

.stats-hover .stat-box:hover .full {
    display: block;
}


/* ===============================
   SERVIÇOS – PREMIUM
   =============================== */
.service-card{
    height:360px;
    background-size:cover;
    background-position:center;
    border-radius:12px;
    overflow:hidden;
}

.service-overlay{
    height:100%;
    background:rgba(0,0,0,.65);
    color:#fff;
    padding:24px;

    display:flex;
    flex-direction:column;
    align-items:center; /* centraliza horizontalmente */
}

.service-overlay > i{
    font-size:32px;
    color:#f4b400;
    margin-bottom:10px;
}

.service-overlay h5{
    margin-bottom:12px;
    text-align:center; /* centraliza o título */
}

.service-overlay ul{
    padding:0;
    margin:0;
}

.service-overlay li{
    list-style:none;
    font-size:14px;
    margin-bottom:6px;
}

.service-overlay li i{
    color:#f4b400;
    margin-right:6px;
}