:root {
    --bs-primary-rgb: 44, 62, 80;
    --bs-secondary-rgb: 236, 240, 241;
    --bs-dark-rgb: 35, 45, 57;
    --font-headings: 'Poppins', sans-serif;
    --font-body: 'Lato', sans-serif;
}

body {
    font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6, .navbar-brand, .btn {
    font-family: var(--font-headings);
    font-weight: 700;
}

.hero {
    background-color: rgb(var(--bs-dark-rgb));
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border: 5px solid rgba(255, 255, 255, 0.2);
}

.section-title {
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: rgb(var(--bs-primary-rgb));
}

.service-icon {
    font-size: 3rem;
    color: rgb(var(--bs-primary-rgb));
}

.badge-logo img {
    max-width: 120px;
    transition: all 0.3s ease;
}

.badge-logo img:hover {
    transform: scale(1.05);
}

.badge-item {
    margin-bottom: 2rem;
}

.badge-logo img, .badge-logo {
    max-width: 80px;
    max-height: 80px;
    width: auto;
    height: auto;
    margin: 0 auto;
    display: block;
}

@media (max-width: 576px) {
    .hero {
        padding: 50px 0;
    }
    .hero img {
        width: 120px;
        height: 120px;
    }
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 24px;
    }
    .badge-logo img, .badge-logo {
        max-width: 60px;
        max-height: 60px;
    }
    .badge-item {
        margin-bottom: 1rem;
    }
    .service-icon {
        font-size: 2rem;
    }
    .card-title {
        font-size: 1.1rem;
    }
    .card-text {
        font-size: 0.95rem;
    }
    .navbar-brand span {
        font-size: 1.1rem;
    }
    .footer {
        font-size: 0.95rem;
    }
}

/* Navbar link color y viñeta/icono */
.navbar-dark .navbar-nav .nav-link {
    color: #ffc107 !important; /* Amarillo Bootstrap para destacar */
    font-weight: 600;
    position: relative;
    padding-left: 1.8em;
    transition: color 0.2s;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #fff200 !important; /* Más claro al pasar el mouse */
}

.navbar-dark .navbar-nav .nav-link::before {
    content: "\f058"; /* FontAwesome check-circle */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0.5em;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1em;
    color: #ffc107;
    opacity: 0.8;
    transition: color 0.2s;
}

.navbar-dark .navbar-nav .nav-link:hover::before,
.navbar-dark .navbar-nav .nav-link.active::before {
    color: #fff200;
    opacity: 1;
}