/* ==================================================
   TINOAGRO – HOME (Scoped + Bootstrap-safe)
================================================== */

.tino-home {
    background-color: #f4f6f9;
    min-height: 100vh;
    padding-bottom: 40px;
}

    /* Card */
    .tino-home .home-card {
        background: #ffffff;
        border: 1px solid #e3e7ee;
        border-radius: 16px;
        padding: 24px;
        transition: box-shadow .25s ease;
    }

        .tino-home .home-card:hover {
            box-shadow: 0 16px 40px rgba(0,0,0,.06);
        }

    /* Títulos */
    .tino-home .home-title {
        font-weight: 600;
        color: #1f2937;
        letter-spacing: .3px;
    }

    /* Inputs */
    .tino-home .form-label {
        font-weight: 500;
        color: #374151;
    }

    .tino-home .form-control {
        height: 48px;
        border-radius: 12px;
        border: 1px solid #e3e7ee;
        font-size: 15px;
    }

        .tino-home .form-control:focus {
            border-color: #0d6efd;
            box-shadow: 0 0 0 .2rem rgba(13,110,253,.15);
        }

    /* Botão */
    .tino-home .btn-primary {
        height: 48px;
        border-radius: 12px;
        font-weight: 500;
    }

    /* Lista */
    .tino-home .list-group-item {
        border: none;
        border-bottom: 1px solid #e3e7ee;
        padding: 12px 6px;
        font-size: 15px;
    }

        .tino-home .list-group-item:last-child {
            border-bottom: none;
        }

        .tino-home .list-group-item strong {
            color: #6c757d;
            font-weight: 500;
        }

    /* Alertas */
    .tino-home .alert {
        border-radius: 12px;
        font-size: 14px;
    }

/* Responsivo */
@media (max-width: 768px) {
    .tino-home .home-actions {
        gap: 12px;
    }
}
