﻿/* NAVBAR */
.navbar-custom {
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* TÍTULO */
.navbar-brand-custom {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(to right, #059669, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* LINKS */
.nav-link-custom {
    color: #374151;
    font-weight: 500;
    transition: color 0.2s ease-in-out;
}

    .nav-link-custom:hover {
        color: #059669;
    }

/* BOTÓN */
.btn-custom {
    background: linear-gradient(to right, #10b981, #059669);
    color: #ffffff;
    font-weight: 600;
    padding: 0.6rem 1.4rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
    transition: all 0.2s ease-in-out;
}

    .btn-custom:hover {
        box-shadow: 0 6px 18px rgba(16, 185, 129, 0.5);
        color: #ffffff;
    }
