body {
    font-family: 'Segoe UI', sans-serif;
    color: #333;
}

.navbar {
    background: rgba(15, 76, 129, 0.9);
    backdrop-filter: blur(5px);
}


.navbar-brand img {
    height: 80px;
    /* o 80px */
    max-height: none;
}


.navbar-nav .nav-link {
    color: #fff;
    font-weight: 500;
}

.navbar-nav .nav-link:hover {
    color: #ddd;
}

.valor-card {
    background: linear-gradient(180deg, #ffffff, #f8f9fa);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.valor-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

.valor-card i {
    transition: color 0.3s ease, transform 0.3s ease;
}

.valor-card:hover i {
    color: #0f4c81;
    transform: scale(1.1);
}

.card-body::before {
    content: "\f10d";
    /* FontAwesome icon: quote-left */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 2rem;
    color: #0f4c81;
    display: block;
    margin-bottom: 10px;
}

.navbar .nav-link.active {
    font-weight: 700;
    color: #ffd54d !important;
    /* dorado visible */
    position: relative;
}

.navbar .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 3px;
    background: #ffd54d;
    border-radius: 2px;
    margin: 0 auto;
}

.dropdown-menu .dropdown-item.active {
    font-weight: 700;
    color: #0f4c81 !important;
    background: #e6f0fa !important;
}




.cta-section {
    background-color: #0f4c81;
    color: #fff;
    text-align: center;
    padding: 2rem 1rem;
}

.cta-section h3 {
    font-weight: 600;
}

.counter {
    transition: transform 0.3s ease, color 0.3s ease;
}

.counter:hover {
    transform: scale(1.1);
    color: #d1e7ff;
}


footer {
    background: #4d4d4d;
    color: #fff;
    padding: 2rem 0;
}

footer p,
footer a {
    color: #f8f9fa;
}

footer a:hover {
    color: #d1e7ff;
    text-decoration: underline;
}