
/* NAVBAR */
body {
    font-family: "Noto Sans", sans-serif;
    margin-top: 8rem; /**/
}

.navbar-brand img {
    height: 60px;
}

.navbar-custom {
    background-color: #FF6840;
    padding: 20px;
}
/*Corrección enlaces del Navbar */
#info-donante {
    scroll-margin-top: 120px;
}
#info-solicitante {
    scroll-margin-top: 120px;
}
#info-proyecto {
    scroll-margin-top: 120px;
}

/* Estilos modernos para los elementos li */
.modern-nav-list .nav-item {
    margin: 0 15px;
    position: relative;
    transition: all 0.3s ease;
}

    .modern-nav-list .nav-item:hover {
        transform: translateY(-2px);
    }

.modern-nav-list .nav-link {
    color: black;
    font-size: 1rem;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    position: relative;
    transition: all 0.3s ease;
}

    .modern-nav-list .nav-link:hover {
        color: white !important;
    }

/* Estilos para los números modernos */
.nav-number {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-right: 12px;
    color: black;
    position: relative;
    transition: all 0.3s ease;
}

.modern-nav-list .nav-link:hover .nav-number {
    color: white;
    transform: scale(1.1);
}

/* Efecto de subrayado al hover */
.modern-nav-list .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}

.modern-nav-list .nav-link:hover::after {
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .modern-nav-list .nav-link {
        padding: 8px 0;
        justify-content: flex-start;
    }

    .modern-nav-list .nav-item {
        margin: 5px 0;
    }
}
/*TITULOS FORMULARIO*/
.titulo-formulario {
    margin-top: 40px;
    padding: 60px 20px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #333;
    font-family: 'Noto Sans', sans-serif;
}

.titulo-seccion {
    font-weight: 1000;
    font-size: 1.15rem;
}

/* INFO-DONATE */
.fondoGris {
    background-color: #e9ecef;
    font-weight: 400;
}

section {
    margin-bottom: 3rem;
}

/*#info-solicitante {
    padding-top: 110px;
}
*/


/* PERSONALIZACIÓN DE FORMULARIO */
.custom-label {
    font-weight: 600;
    margin-left: 10px;
}

.custom-input {
    padding: 12px 16px;
    border-radius: 16px;
    border: 1px solid #ccc;
    appearance: none;
}

select option {
    background-color: #FFF0EC;
    color: black;
    padding: 10px;
}

.error-message {
    color: red;
    font-size: 0.9em;
    display: none;
}

/* CONTENEDOR GENERAL */
#tabla-electrodomesticos-container {
    margin-top: 20px;
    border-radius: 12px;
    padding: 20px;
    background-color: #f9f9f9;
}

/* FORMULARIO DE CADA PRODUCTO */
#tabla-electrodomesticos-container .card {
        border-radius: 12px;
        border: 1px solid #dee2e6;
        background-color: #fff;
}

/* TABLA DE PRODUCTOS AGREGADOS */
table.table {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

table thead.table-secondary {
    background-color: #6c757d;
    color: white;
}

table th,
table td {
    text-align: center;
    vertical-align: middle;
    font-size: 14px;
    padding: 10px;
}


/* BOTÓN + AGREGAR */
#agregar-producto {
    height: 38px;
    font-size: 14px;
}

/* ICONOS ACCIÓN EN TABLA */
.btn-custom {
    margin: 4px;
    width: 36px;
    height: 36px;
    font-size: 14px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

/* INPUTS OCULTOS PERSONALIZADOS */
.d-none {
    display: none !important;
}


/* BOTÓN ENVIAR */
.custom-btn-submit {
    background-color: #1A1A1A;
    width: 200px;
    height: 60px;
    border-radius: 32px;
    color: white;
    border: none;
    margin-top: 40px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-btn-submit:hover {
    background-color: #333333;
    color: white;
}

/* FOOTER */
footer {
    background-color: #f8f9fa;
}

/* ICONOS */
a .fab, a .fa-brands {
    color: #000;
    transition: color 0.3s ease;
    font-size: 1.1rem;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
}

a .fa-youtube  {
     font-size: 1.3rem;
     height: 1.1rem;
     line-height: 1.1rem;
}

a .fab:hover, a .fa-brands:hover {
    color: #FF6840;
}

.texto-rojo-suave {
    font-weight: 300;
    color: red;
}

