﻿:root {
    --imo-red: #BB3337;
    --imo-dark: #333333;
    --imo-light-bg: #F1F1F1;
    --imo-blue: #0033FF;
}

body {
    font-family: 'Segoe UI', Calibri, Arial, sans-serif;
    color: var(--imo-dark);
    background-color: #fafafa;
}

.navbar-custom {
    border-bottom: 4px solid var(--imo-red);
    background-color: var(--imo-light-bg);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.hero-banner {
    background-image: url('images/home_predio2.png');
    background-repeat: repeat-x;
    background-size: contain;
    opacity: 0.9;
    min-height: 100px;
}

.section-padding {
    padding: 60px 0;
}

.feature-card {
    background-color: #EDF8FE;
    border-radius: 12px;
    border: 1px solid #d0e7f9;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

    .feature-card:hover {
        transform: translateY(-5px);
    }

.icon-box i {
    color: var(--imo-red);
    font-size: 24px;
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.stat-box {
    text-align: center;
    padding: 20px;
}

    .stat-box i {
        color: #0dcaf0;
        margin-bottom: 15px;
    }

.dropdown-menu {
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366; /* Verde oficial do WhatsApp */
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3); /* Sombra elegante */
    z-index: 1000; /* Garante que fique por cima de tudo */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease; /* Animação suave */
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: #FFF;
    transform: scale(1.1); /* Aumenta um pouquinho o botão */
}

@media (max-width: 767px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }
}
